{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"ui-skeleton","type":"registry:component","title":"Skeleton","description":"Loading placeholder primitive for async content states.","version":"1.0.0","status":"ga","files":[{"path":"src/components/ui/skeleton.tsx","type":"registry:component","content":"import { cn } from '@/lib/utils'\n\nfunction Skeleton({ className, ...props }: React.ComponentProps<'div'>) {\n  return <div data-slot='skeleton' className={cn('bg-accent animate-pulse rounded-md', className)} {...props} />\n}\n\nexport { Skeleton }\n"}]}