import * as React from 'react'; import Box from '@mui/material/Box'; import Switch from '@mui/material/Switch'; import Paper from '@mui/material/Paper'; import Collapse from '@mui/material/Collapse'; import FormControlLabel from '@mui/material/FormControlLabel'; const icon = ( ({ fill: theme.palette.common.white, stroke: theme.palette.divider, strokeWidth: 1, })} /> ); export default function SimpleCollapse() { const [checked, setChecked] = React.useState(false); const handleChange = () => { setChecked((prev) => !prev); }; return ( } label="Show" /> :not(style)': { display: 'flex', justifyContent: 'space-around', height: 120, width: 250, }, }} >
{icon} {icon}
{icon} {icon}
); }