{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "demo-components-buttons-icon",
  "title": "Icon Button Demo",
  "description": "Demo showing an icon button.",
  "registryDependencies": [
    "@animate-ui/components-buttons-icon"
  ],
  "files": [
    {
      "path": "registry/demo/components/buttons/icon/index.tsx",
      "content": "import {\n  IconButton,\n  type IconButtonProps,\n} from '@/components/animate-ui/components/buttons/icon';\nimport { StarIcon } from 'lucide-react';\n\ninterface IconButtonDemoProps {\n  variant: IconButtonProps['variant'];\n  size: IconButtonProps['size'];\n}\n\nexport default function IconButtonDemo({ variant, size }: IconButtonDemoProps) {\n  return (\n    <IconButton variant={variant} size={size}>\n      <StarIcon />\n    </IconButton>\n  );\n}\n",
      "type": "registry:ui",
      "target": "components/animate-ui/demo/components/buttons/icon.tsx"
    }
  ],
  "meta": {
    "demoProps": {
      "IconButton": {
        "variant": {
          "value": "default",
          "options": {
            "default": "default",
            "accent": "accent",
            "outline": "outline",
            "ghost": "ghost"
          }
        },
        "size": {
          "value": "default",
          "options": {
            "default": "default",
            "sm": "sm",
            "lg": "lg"
          }
        }
      }
    }
  },
  "type": "registry:ui"
}