import { lazy, Suspense } from 'react'; import { useTheme } from '@mui/material/styles'; import { varAlpha } from 'src/theme/styles'; import { WalktourTooltip } from './walktour-tooltip'; // ---------------------------------------------------------------------- const Joyride = lazy(() => import('react-joyride').then((mod) => ({ default: mod.default }))); // ---------------------------------------------------------------------- export function Walktour({ locale, continuous = true, showProgress = true, scrollDuration = 500, showSkipButton = true, disableOverlayClose = true, ...other }) { const theme = useTheme(); const arrowStyles = { width: 20, height: 10, color: theme.vars.palette.background.paper, }; return ( ); }