import { makeStyles } from 'tss-react/mui'; export const useStyles = makeStyles()((theme) => ({ deleteIcon: { height: theme.spacing(1.5), width: theme.spacing(1.5) }, tag: { fontSize: theme.typography.caption.fontSize } })); export const useListboxStyles = makeStyles()((theme) => ({ dropdown: { background: theme.palette.background.paper, width: '100%' }, lisSubHeader: { alignItems: 'center', background: theme.palette.background.default, display: 'flex', justifyContent: 'space-between', padding: theme.spacing(0.5, 1, 0.5, 1.5), width: '100%' } }));