{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "avatar-size-example",
  "title": "Avatar Size",
  "description": "avatar-size-example",
  "registryDependencies": [
    "https://intentui.com/r/avatar"
  ],
  "files": [
    {
      "path": "src/components/examples/media/avatar/avatar-size-example.tsx",
      "content": "import { Avatar } from '@/components/ui/avatar'\n\nconst sizes = ['sm', 'md', 'lg', 'xl'] as const\nexport default function AvatarSizeDemo() {\n  return (\n    <div className=\"flex items-end gap-4\">\n      {sizes.map((size) => (\n        <Avatar key={size} size={size} src=\"https://intentui.com/images/avatar/cobain.jpg\" />\n      ))}\n    </div>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/avatar-size-example/page.tsx"
    }
  ],
  "type": "registry:page"
}