import * as React from 'react'; import { prefixer } from 'stylis'; import rtlPlugin from '@mui/stylis-plugin-rtl'; import { CacheProvider } from '@emotion/react'; import createCache from '@emotion/cache'; import { StyleSheetManager } from 'styled-components'; import { ThemeProvider, createTheme } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Tabs from '@mui/material/Tabs'; import Tab from '@mui/material/Tab'; // Create rtl cache const cacheRtl = createCache({ key: 'muirtl', stylisPlugins: [prefixer, rtlPlugin], }); export default function RTLVerticalTabs() { return ( ); }