{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton",
  "files": [
    {
      "path": "src/components/ui/skeleton/skeleton.astro",
      "content": "---\nimport type { HTMLAttributes } from \"astro/types\"\n\nimport { cn } from \"@/lib/utils\"\n\ntype Props = HTMLAttributes<\"div\">\n\nconst { class: className, ...props } = Astro.props\n---\n\n<div\n  data-slot=\"skeleton\"\n  class={cn(\"bg-muted animate-pulse rounded-md\", className)}\n  {...props}\n>\n</div>\n",
      "type": "registry:ui"
    },
    {
      "path": "src/components/ui/skeleton/index.ts",
      "content": "export { default as Skeleton } from \"./skeleton.astro\"\n",
      "type": "registry:ui"
    }
  ],
  "type": "registry:ui"
}