{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "skeleton2",
  "title": "Skeleton",
  "description": "Use to show a placeholder while content is loading.",
  "files": [
    {
      "path": "contents/components/skeleton/2/index.tsx",
      "content": "import { Card, CardContent } from \"@/components/ui/card\";\nimport { Skeleton } from \"@/components/ui/skeleton\";\n\nexport default function SkeletonCard() {\n  return (\n    <Card className=\"max-w-sm w-full shadow-none\">\n      <CardContent className=\"space-y-6\">\n        <div className=\"flex items-center space-x-4\">\n          <Skeleton className=\"size-12 rounded-full\" />\n          <div className=\"grow space-y-2\">\n            <Skeleton className=\"h-4\" />\n            <Skeleton className=\"h-4 w-1/3\" />\n          </div>\n        </div>\n      </CardContent>\n    </Card>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/skeleton2.tsx"
    }
  ],
  "type": "registry:component"
}