Jesus sucks
This commit is contained in:
22
backend/frontend/node_modules/react-bootstrap/esm/usePlaceholder.js
generated
vendored
Normal file
22
backend/frontend/node_modules/react-bootstrap/esm/usePlaceholder.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import classNames from 'classnames';
|
||||
import { useBootstrapPrefix } from './ThemeProvider';
|
||||
import { useCol } from './Col';
|
||||
export default function usePlaceholder({
|
||||
animation,
|
||||
bg,
|
||||
bsPrefix,
|
||||
size,
|
||||
...props
|
||||
}) {
|
||||
bsPrefix = useBootstrapPrefix(bsPrefix, 'placeholder');
|
||||
const [{
|
||||
className,
|
||||
...colProps
|
||||
}] = useCol(props);
|
||||
return {
|
||||
...colProps,
|
||||
className: classNames(className, animation ? `${bsPrefix}-${animation}` : bsPrefix, size && `${bsPrefix}-${size}`, bg && `bg-${bg}`)
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user