{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton",
  "title": "Skeleton",
  "description": "Shimmer effect placeholder preview.",
  "files": [
    {
      "path": "registry/new-york/ui/skeleton.tsx",
      "content": "import * as React from \"react\";\nimport { cn } from \"@/lib/utils\";\n\nconst Skeleton = React.forwardRef<HTMLDivElement, React.ComponentProps<\"div\">>(\n  function Skeleton({ className, ...props }, ref) {\n    return (\n      <div\n        aria-hidden=\"true\"\n        className={cn(\n          \"animate-pulse rounded-xl bg-accent motion-reduce:animate-none\",\n          className\n        )}\n        data-slot=\"skeleton\"\n        ref={ref}\n        {...props}\n      />\n    );\n  }\n);\n\nexport { Skeleton };\n",
      "type": "registry:ui"
    }
  ],
  "docs": "https://ui.shadcn.com/docs/components/skeleton?utm_source=hextaui&utm_medium=referral&utm_campaign=component-docs&ref=hextaui.com",
  "categories": [
    "component"
  ],
  "type": "registry:ui"
}