{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "avatar-11",
  "title": "Avatar Status",
  "description": "Avatar with status indicator component",
  "registryDependencies": [
    "avatar"
  ],
  "files": [
    {
      "path": "src/components/customized/avatar/avatar-11.tsx",
      "content": "import { Avatar, AvatarFallback, AvatarImage } from \"@/registry/ui/avatar\";\n\nexport default function AvatarWithStatusDemo() {\n  return (\n    <div className=\"flex items-center gap-3\">\n      {/* Online */}\n      <div className=\"relative\">\n        <Avatar>\n          <AvatarImage alt=\"@shadcn\" src=\"https://github.com/shadcn.png\" />\n          <AvatarFallback>CN</AvatarFallback>\n        </Avatar>\n        <div className=\"absolute right-0 bottom-0 size-2 rounded-full bg-green-500 ring-2 ring-background\" />\n      </div>\n\n      {/* DND */}\n      <div className=\"relative\">\n        <Avatar>\n          <AvatarImage alt=\"@shadcn\" src=\"https://github.com/shadcn.png\" />\n          <AvatarFallback>CN</AvatarFallback>\n        </Avatar>\n        <div className=\"absolute right-0 bottom-0 size-2 rounded-full bg-red-500 ring-2 ring-background\" />\n      </div>\n\n      {/* Busy */}\n      <div className=\"relative\">\n        <Avatar>\n          <AvatarImage alt=\"@shadcn\" src=\"https://github.com/shadcn.png\" />\n          <AvatarFallback>CN</AvatarFallback>\n        </Avatar>\n        <div className=\"absolute right-0 bottom-0 size-2 rounded-full bg-yellow-500 ring-2 ring-background\" />\n      </div>\n\n      {/* Offline */}\n      <div className=\"relative\">\n        <Avatar>\n          <AvatarImage alt=\"@shadcn\" src=\"https://github.com/shadcn.png\" />\n          <AvatarFallback>CN</AvatarFallback>\n        </Avatar>\n        <div className=\"absolute right-0 bottom-0 size-2 rounded-full border-2 border-muted-foreground bg-background ring-2 ring-background\" />\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}