/ components / ui / skeleton.tsx
skeleton.tsx
1  import { cn } from '@/lib/utils';
2  
3  function Skeleton({ className, ...props }: React.ComponentProps<'div'>) {
4    return <div data-slot="skeleton" className={cn('bg-accent animate-pulse rounded-md', className)} {...props} />;
5  }
6  
7  export { Skeleton };