{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-17",
  "type": "registry:component",
  "registryDependencies": [
    "https://coss.com/origin/r/input.json",
    "https://coss.com/origin/r/label.json",
    "https://coss.com/origin/r/select-native.json"
  ],
  "files": [
    {
      "path": "registry/default/components/comp-17.tsx",
      "content": "import { useId } from \"react\";\n\nimport { Input } from \"@/registry/default/ui/input\";\nimport { Label } from \"@/registry/default/ui/label\";\nimport { SelectNative } from \"@/registry/default/ui/select-native\";\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 select</Label>\n      <div className=\"flex rounded-md shadow-xs\">\n        <SelectNative className=\"w-fit rounded-e-none text-muted-foreground shadow-none hover:text-foreground\">\n          <option value=\"https://\">https://</option>\n          <option value=\"http://\">http://</option>\n          <option value=\"ftp://\">ftp://</option>\n          <option value=\"sftp://\">sftp://</option>\n          <option value=\"ws://\">ws://</option>\n          <option value=\"wss://\">wss://</option>\n        </SelectNative>\n        <Input\n          className=\"-ms-px rounded-s-none shadow-none focus-visible:z-10\"\n          id={id}\n          placeholder=\"192.168.1.1\"\n          type=\"text\"\n        />\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "input",
      "label",
      "select",
      "native select"
    ]
  }
}