{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-14",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/input.json",
    "https://coss.com/origin/r/label.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-14.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 start add-on</Label>\n      <div className=\"flex rounded-md shadow-xs\">\n        <span className=\"-z-10 inline-flex items-center rounded-s-md border border-input bg-background px-3 text-muted-foreground text-sm\">\n          https://\n        </span>\n        <Input\n          className=\"-ms-px rounded-s-none shadow-none\"\n          id={id}\n          placeholder=\"google.com\"\n          type=\"text\"\n        />\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "input",
      "label"
    ]
  }
}