// @mui import { alpha } from '@mui/material/styles'; import Box from '@mui/material/Box'; import ButtonBase from '@mui/material/ButtonBase'; // theme import { primaryPresets } from 'src/theme/options/presets'; // ---------------------------------------------------------------------- type PresetsOptionsProps = { value: string; onChange: (newValue: string) => void; }; export default function PresetsOptions({ value, onChange }: PresetsOptionsProps) { const options = primaryPresets.map((color) => ({ name: color.name, value: color.main, })); return ( {options.map((option) => { const selected = value === option.name; return ( onChange(option.name)} sx={{ height: 56, borderRadius: 1, border: (theme) => `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`, ...(selected && { borderColor: 'transparent', bgcolor: alpha(option.value, 0.08), }), }} > theme.transitions.create(['transform'], { duration: theme.transitions.duration.shorter, }), ...(selected && { transform: 'scale(2)', }), }} /> ); })} ); }