Components
Loading preview...
Native select in shadcn/ui style
npx shadcn@latest add https://21st.dev/r/originui/select-nativeimport { Label } from "@/components/ui/label";
import { SelectNative } from "@/components/ui/select-native";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="space-y-2 min-w-[300px]">
<Label htmlFor={id}>Select with option groups (native)</Label>
<SelectNative id={id}>
<optgroup label="Frontend">
<option value="1">React</option>
<option value="2">Vue</option>
<option value="3">Angular</option>
</optgroup>
<optgroup label="Backend">
<option value="4">Node.js</option>
<option value="5">Python</option>
<option value="6">Java</option>
</optgroup>
</SelectNative>
</div>
);
}
export { Component };