File size: 319 Bytes
f0743f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { cn } from '~/utils';

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

export { Skeleton };