import * as React from 'react'; import Box from '@mui/material/Box'; import Switch from '@mui/material/Switch'; import Paper from '@mui/material/Paper'; import Slide from '@mui/material/Slide'; import FormControlLabel from '@mui/material/FormControlLabel'; const icon = ( ({ fill: theme.palette.common.white, stroke: theme.palette.divider, strokeWidth: 1, })} /> ); export default function SlideFromContainer() { const [checked, setChecked] = React.useState(false); const containerRef = React.useRef(null); const handleChange = () => { setChecked((prev) => !prev); }; return ( } label="Show from target" /> {icon} ); }