import type { FC } from 'react'; import styles from './Select.module.css'; export interface SelectProps { value?: string, onChange?: (value: string) => void, options: { value: string, label: string }[], name?: string, defaultValue?: string, } export const Select: FC = ({ value, onChange, options, name, defaultValue }) => { return ( ); };