jamulix-homepage/components/ui/skeleton.tsx

13 lines
276 B
TypeScript
Raw Permalink Normal View History

2026-04-24 17:12:51 +02:00
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 }