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 { Clock } from "lucide-react";
import { useId } from "react";
function Component() {
const id = useId();
return (
<div className="space-y-2 min-w-[300px]">
<Label htmlFor={id}>Select with icon (native)</Label>
<div className="group relative">
<SelectNative id={id} className="ps-9">
<option value="1">00:00 AM - 11:59 PM</option>
<option value="2">01:00 AM - 12:59 PM</option>
<option value="3">02:00 AM - 01:59 PM</option>
<option value="4">03:00 AM - 02:59 PM</option>
</SelectNative>
<div className="pointer-events-none absolute inset-y-0 start-0 flex items-center justify-center ps-3 text-muted-foreground/80 group-has-[[disabled]]:opacity-50">
<Clock size={16} strokeWidth={2} aria-hidden="true" />
</div>
</div>
</div>
);
}
export { Component };