{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "demo-primitives-button",
  "title": "Button Demo",
  "description": "Demo showing a button.",
  "registryDependencies": [
    "@azemmur/primitives-button"
  ],
  "files": [
    {
      "path": "registry/demo/components/primitives/button/index.tsx",
      "content": "import { Button } from '@/components/azemmur/components/primitives/button';\n\ninterface ButtonDemoProps {\n  hoverScale: number;\n  tapScale: number;\n}\n\nexport default function ButtonDemo({ hoverScale, tapScale }: ButtonDemoProps) {\n  return (\n    <Button\n      key={`${hoverScale}-${tapScale}`}\n      hoverScale={hoverScale}\n      tapScale={tapScale}\n      className=\"bg-primary text-primary-foreground text-sm font-medium px-4 py-2 h-10\"\n    >\n      Button\n    </Button>\n  );\n}\n",
      "type": "registry:ui",
      "target": "components/demo/components/primitives/button.tsx"
    }
  ],
  "meta": {
    "demoProps": {
      "Button": {
        "hoverScale": {
          "value": 1.05,
          "min": 0,
          "max": 2,
          "step": 0.05
        },
        "tapScale": {
          "value": 0.95,
          "min": 0,
          "max": 2,
          "step": 0.05
        }
      }
    }
  },
  "type": "registry:ui"
}