// ** React Imports import { SyntheticEvent, useState } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import Tab from '@mui/material/Tab' import TabPanel from '@mui/lab/TabPanel' import TabContext from '@mui/lab/TabContext' import { styled } from '@mui/material/styles' import Typography from '@mui/material/Typography' import MuiTabList, { TabListProps } from '@mui/lab/TabList' // Styled TabList component const TabList = styled(MuiTabList)(({ theme }) => ({ minWidth: 110, borderRight: 0, '& .MuiTabs-indicator': { display: 'none' }, '& .Mui-selected': { backgroundColor: theme.palette.primary.main, color: `${theme.palette.common.white} !important` }, '& .MuiTab-root': { minHeight: 38, minWidth: 110, borderRadius: 8, margin: theme.spacing(1, 0), paddingTop: theme.spacing(2), paddingBottom: theme.spacing(2) } })) const TabsCustomizedVertical = () => { // ** State const [value, setValue] = useState('1') const handleChange = (event: SyntheticEvent, newValue: string) => { setValue(newValue) } return ( Cake apple pie chupa chups biscuit liquorice tootsie roll liquorice sugar plum. Cotton candy wafer wafer jelly cake caramels brownie gummies. Chocolate bar carrot cake candy canes sesame snaps. Cupcake pie gummi bears jujubes candy canes. Chupa chups sesame snaps halvah. Danish tiramisu jujubes cupcake chocolate bar cake cheesecake chupa chups. Macaroon ice cream tootsie roll carrot cake gummi bears. ) } export default TabsCustomizedVertical