diff --git a/src/components/ui/Skeleton.tsx b/src/components/ui/Skeleton.tsx new file mode 100644 index 0000000..06b3aab --- /dev/null +++ b/src/components/ui/Skeleton.tsx @@ -0,0 +1,15 @@ +import { cx } from '@/lib/utils'; + +function Skeleton({ + className, + ...props +}: React.HTMLAttributes) { + return ( +
+ ); +} + +export { Skeleton };