File size: 264 Bytes
009c95b
78ebb49
 
 
 
 
 
 
009c95b
78ebb49
 
009c95b
78ebb49
 
009c95b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { cn } from '@/lib/utils';

function Skeleton({
  className,
  ...props
}: React.HTMLAttributes<HTMLDivElement>) {
  return (
    <div
      className={cn('animate-pulse rounded-md bg-muted', className)}
      {...props}
    />
  );
}

export { Skeleton };