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 auto-width (native)</Label>
<div className="w-fit">
<SelectNative id={id}>
<option value="1">React</option>
<option value="2">Next.js</option>
<option value="3">Astro</option>
<option value="4">Gatsby</option>
</SelectNative>
</div>
</div>
);
}
export { Component };