import * as React from 'react'; import { cn } from '@/lib/utils'; const Skeleton = React.forwardRef(({ className, variant = 'line', ...props }, ref) => { const variants = { line: 'h-4 w-full rounded-md', circle: 'h-10 w-10 rounded-full', card: 'h-24 w-full rounded-xl', button: 'h-9 w-24 rounded-md', input: 'h-9 w-full rounded-md', }; return (
); }); Skeleton.displayName = 'Skeleton'; export { Skeleton };