{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-16",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/input.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-16.tsx",
      "content": "import { useId } from \"react\";\n\nimport { Input } from \"@/registry/default/ui/input\";\nimport { Label } from \"@/registry/default/ui/label\";\n\nexport default function Component() {\n  const id = useId();\n  return (\n    <div className=\"*:not-first:mt-2\">\n      <Label htmlFor={id}>Input with inline start and end add-on</Label>\n      <div className=\"relative flex rounded-md shadow-xs\">\n        <span className=\"pointer-events-none absolute inset-y-0 start-0 flex items-center justify-center ps-3 text-muted-foreground text-sm\">\n          €\n        </span>\n        <Input\n          className=\"-me-px rounded-e-none ps-6 shadow-none\"\n          id={id}\n          placeholder=\"0.00\"\n          type=\"text\"\n        />\n        <span className=\"-z-10 inline-flex items-center rounded-e-md border border-input bg-background px-3 text-muted-foreground text-sm\">\n          EUR\n        </span>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "input",
      "label"
    ]
  }
}