import * as React from 'react'; import Select, { SelectStaticProps } from '@mui/joy/Select'; import Option from '@mui/joy/Option'; import IconButton from '@mui/joy/IconButton'; import CloseRounded from '@mui/icons-material/CloseRounded'; export default function SelectClearable() { const [value, setValue] = React.useState('dog'); const action: SelectStaticProps['action'] = React.useRef(null); return ( ); }