Spaces:
Sleeping
Sleeping
| import * as React from 'react' | |
| import { cn } from '@/lib/cn' | |
| function Skeleton({ className, ...props }: React.ComponentProps<'div'>) { | |
| return ( | |
| <div | |
| className={cn('animate-pulse rounded-md bg-white/[0.02]', className)} | |
| {...props} | |
| /> | |
| ) | |
| } | |
| export { Skeleton } | |