import { Typography } from '@mui/material' import ListItemButton from '@mui/material/ListItemButton' import { ReactElement, ReactNode } from 'react' import { makeStyles } from 'tss-react/mui' const useStyles = makeStyles()(theme => ({ header: { backgroundColor: '#F7F7F7', marginBottom: theme.spacing(0.25), }, typography: { color: '#242424', }, })) interface Props { children?: ReactNode | ReactNode[] } export default function ExpandableListItemNote({ children }: Props): ReactElement | null { const { classes } = useStyles() return ( {children} ) }