{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "comp-18",
  "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-18.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 end select</Label>\n      <div className=\"flex rounded-md shadow-xs\">\n        <Input\n          className=\"-me-px rounded-e-none shadow-none focus-visible:z-10\"\n          id={id}\n          placeholder=\"google\"\n          type=\"text\"\n        />\n        <SelectNative className=\"w-fit rounded-s-none text-muted-foreground shadow-none hover:text-foreground\">\n          <option>.com</option>\n          <option>.org</option>\n          <option>.net</option>\n        </SelectNative>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "tags": [
      "input",
      "label",
      "select",
      "native select"
    ]
  }
}