import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "./ui/select"; type Item = { label: string; value: string; }; type Props = { options: Item[]; value: string; onChange: (selected: string) => void; placeholder?: string; className?: string; }; function DropdownWithOptions({ options, value, onChange, placeholder, className, }: Props) { return ( ); } export { DropdownWithOptions };