{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton",
  "title": "Skeleton",
  "description": "The shadcn Skeleton component using Base UI and the Familis Nova theme.",
  "dependencies": [
    "cn@^0.3.0"
  ],
  "files": [
    {
      "path": "registry/familis/ui/skeleton.tsx",
      "content": "import { cn } from \"cn\"\n\nfunction Skeleton({ className, ...props }: React.ComponentProps<\"div\">) {\n  return (\n    <div\n      data-slot=\"skeleton\"\n      className={cn(\"animate-pulse rounded-md bg-muted\", className)}\n      {...props}\n    />\n  )\n}\n\nexport { Skeleton }\n",
      "type": "registry:ui"
    }
  ],
  "meta": {
    "base": "base",
    "storybookId": "ui-skeleton--default",
    "links": {
      "docs": "https://ui.shadcn.com/docs/components/base/skeleton",
      "examples": "https://ui.shadcn.com/code/apps/v4/registry/bases/base/examples/skeleton-example.tsx"
    }
  },
  "type": "registry:ui"
}