import Select, { ISelectProps } from '@/components/select'; import { GENDER_OPTIONS, GenderType } from '@/constants/material'; interface IProps extends Omit, 'options'> { value: GenderType; } function GenderSelect(props: IProps) { const { value: selectValue, onSelect } = props; return