import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; 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 = ( theme.palette.common.white, stroke: (theme) => theme.palette.divider, strokeWidth: 1, }} points="0,100 50,00, 100,100" /> ); export default function SlideTransitions() { const [checked, setChecked] = React.useState(false); const handleChange = () => { setChecked((prev) => !prev); }; return ( <> Slide Transitions } label="Show" /> {icon} ); }