{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton",
  "type": "registry:ui",
  "dependencies": [],
  "registryDependencies": [],
  "files": [
    {
      "path": "ui/skeleton.tsx",
      "content": "import type { HTMLAttributes } from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nexport function Skeleton({ className, ...props }: HTMLAttributes<HTMLDivElement>) {\n  return (\n    <div data-slot=\"skeleton\" className={cn(\"animate-pulse rounded-md bg-muted\", className)} {...props} />\n  );\n}\n",
      "type": "registry:ui",
      "target": "components/ui/skeleton.tsx"
    }
  ]
}
