Files
chinese-family-tree-2/components/ui/skeleton.tsx
T
freedakgmail 43c8389705 0.0.0.1
2025-11-22 19:52:55 +08:00

14 lines
276 B
TypeScript

import { cn } from '@/lib/utils'
function Skeleton({ className, ...props }: React.ComponentProps<'div'>) {
return (
<div
data-slot="skeleton"
className={cn('bg-accent animate-pulse rounded-md', className)}
{...props}
/>
)
}
export { Skeleton }