type SelectFieldProps = { value: string; onChange: (value: string) => void; options: { value: string; label: string }[]; className?: string; }; /** * SelectField - A dropdown styled consistently with input fields */ export default function SelectField({value, onChange, options, className = ''}: SelectFieldProps) { return ( ); }