added nped list functionality
This commit is contained in:
11
src/components/Skeleton/SkeletonBox.tsx
Normal file
11
src/components/Skeleton/SkeletonBox.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import { clsx } from "clsx";
|
||||
|
||||
type SkeletonBoxProps = {
|
||||
className: string;
|
||||
};
|
||||
|
||||
const SkeletonBox = ({ className }: SkeletonBoxProps) => {
|
||||
return <div className={clsx(...className)}></div>;
|
||||
};
|
||||
|
||||
export default SkeletonBox;
|
||||
Reference in New Issue
Block a user