{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton",
  "title": "Skeleton",
  "description": "Use to show a placeholder while content is loading.",
  "dependencies": [
    "clsx",
    "tailwind-merge"
  ],
  "registryDependencies": [
    "https://optics.agusmayol.com.ar/r/utils.json"
  ],
  "files": [
    {
      "path": "registry/optics/skeleton.jsx",
      "content": "import { cn } from \"@/lib/utils\";\n\nfunction Skeleton({ className = \"\", ...props }) {\n\treturn (\n\t\t<div\n\t\t\tdata-slot=\"skeleton\"\n\t\t\tclassName={cn(\"bg-muted rounded-md animate-pulse\", className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nSkeleton.displayName = \"Skeleton\";\n\nexport { Skeleton };\n",
      "type": "registry:component",
      "target": "components/optics/skeleton.jsx"
    }
  ],
  "type": "registry:component"
}