import { useState, useCallback } from 'react'; // @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import ButtonBase from '@mui/material/ButtonBase'; // import SvgColor from '../../svg-color'; // ---------------------------------------------------------------------- export default function FullScreenOption() { const [fullscreen, setFullscreen] = useState(false); const onToggleFullScreen = useCallback(() => { if (!document.fullscreenElement) { document.documentElement.requestFullscreen(); setFullscreen(true); } else if (document.exitFullscreen) { document.exitFullscreen(); setFullscreen(false); } }, []); return ( `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`, ...(fullscreen && { color: 'text.primary', }), '& .svg-color': { background: (theme) => `linear-gradient(135deg, ${theme.palette.grey[500]} 0%, ${theme.palette.grey[600]} 100%)`, ...(fullscreen && { background: (theme) => `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`, }), }, }} > {fullscreen ? 'Exit Fullscreen' : 'Fullscreen'} ); }