import { ChevronDown } from "lucide-react"; interface Option { value: string; label: string; description?: string; } interface SettingsSelectProps { id?: string; value: string; onChange: (value: string) => void; options: Option[]; disabled?: boolean; } export function SettingsSelect({ id, value, onChange, options, disabled }: SettingsSelectProps) { return (