// @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Stack from '@mui/material/Stack'; import ButtonBase from '@mui/material/ButtonBase'; // import Iconify from '../../iconify'; // ---------------------------------------------------------------------- type Props = { value: boolean; onChange: VoidFunction; }; export default function StretchOptions({ value, onChange }: Props) { return ( `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`, ...(value && { bgcolor: 'background.paper', color: (theme) => theme.palette.primary.main, boxShadow: (theme) => `-24px 8px 24px -4px ${alpha( theme.palette.mode === 'light' ? theme.palette.grey[500] : theme.palette.common.black, 0.08 )}`, }), }} > theme.transitions.create(['width']), ...(value && { width: 0.5, }), }} > `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`, }} /> `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`, }} /> ); }