{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "item1",
  "title": "Item",
  "description": "A versatile component for displaying content with media, title, description, and actions. Every item layout is usable in both Radix UI and Base UI based projects.",
  "files": [
    {
      "path": "contents/components/item/1/index.tsx",
      "content": "import { Button } from \"@/components/ui/button\";\nimport {\n  Item,\n  ItemActions,\n  ItemContent,\n  ItemDescription,\n  ItemTitle,\n} from \"@/components/ui/item\";\n\nexport default function ItemComponent() {\n  return (\n    <Item variant=\"outline\" className=\"w-full max-w-sm\">\n      <ItemContent>\n        <ItemTitle>Basic Item</ItemTitle>\n        <ItemDescription>\n          A simple item with title and description.\n        </ItemDescription>\n      </ItemContent>\n      <ItemActions>\n        <Button variant=\"outline\" size=\"sm\">\n          Action\n        </Button>\n      </ItemActions>\n    </Item>\n  );\n}\n",
      "type": "registry:component",
      "target": "components/item1.tsx"
    }
  ],
  "type": "registry:component"
}