{
  "$schema": "https://blode.co/ui/schema/registry-item.json",
  "name": "skeleton",
  "title": "Skeleton",
  "author": "Matthew Blode",
  "description": "A placeholder animation that indicates content is loading.",
  "files": [
    {
      "path": "ui/skeleton.tsx",
      "content": "import type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nconst Skeleton = ({ className, ...props }: React.ComponentProps<\"div\">) => (\n  <div\n    className={cn(\"animate-pulse rounded-md bg-accent\", className)}\n    data-slot=\"skeleton\"\n    {...props}\n  />\n);\n\nexport { Skeleton };\n",
      "type": "registry:ui",
      "target": ""
    }
  ],
  "type": "registry:ui"
}
