// ** MUI Imports import Grid from '@mui/material/Grid' import Typography from '@mui/material/Typography' // ** Custom Components Imports import CardSnippet from 'src/@core/components/card-snippet' // ** Demo Components Imports import TabsNav from 'src/views/components/tabs/TabsNav' import TabsIcon from 'src/views/components/tabs/TabsIcon' import TabsColor from 'src/views/components/tabs/TabsColor' import TabsSimple from 'src/views/components/tabs/TabsSimple' import TabsCentered from 'src/views/components/tabs/TabsCentered' import TabsVertical from 'src/views/components/tabs/TabsVertical' import TabsFullWidth from 'src/views/components/tabs/TabsFullWidth' import TabsCustomized from 'src/views/components/tabs/TabsCustomized' import TabsForcedScroll from 'src/views/components/tabs/TabsForcedScroll' import TabsCustomizedVertical from 'src/views/components/tabs/TabsCustomizedVertical' // ** Source code imports import * as source from 'src/views/components/tabs/TabsSourceCode' const Tabs = () => { return ( Tabs are managed with the help of a state. Use textColor='secondary' and indicatorColor='secondary' props with{' '} TabList component for secondary tabs. Use variant='fullWidth' prop with TabList component to have full width tabs. Use centered prop with TabList component to have tabs on center. Use icon prop with Tab component for icons in the tab. Use styled hook to customize your tabs. Use orientation='vertical' prop with TabList component to have vertical tabs. Use styled hook to customize your tabs. Use component prop to change the Tab component to the component of your choice. Use scrollButtons and variant='scrollable' props with TabList{' '} component to have forced scrollable tabs. ) } export default Tabs