import { Box, Typography, FormControl, InputLabel, Select, MenuItem, OutlinedInput, } from '@mui/material'; import CheckCircleIcon from '@mui/icons-material/CheckCircle'; import StyleIcon from '@mui/icons-material/Style'; import type { Preset } from '@cdx-ui/styles'; import { PresetPreview } from '../components'; const PRESETS: { id: Preset; label: string; description: string }[] = [ { id: 'poise', label: 'Poise', description: 'Elegant and balanced', }, { id: 'prestige', label: 'Prestige', description: 'Professional and bold', }, { id: 'pulse', label: 'Pulse', description: 'Modern and friendly', }, ]; interface PresetControlProps { id?: string; label?: string; value: Preset; onChange: (preset: Preset) => void; } export function PresetControl({ id = 'preset-select', label = 'Preset', value, onChange, }: Readonly) { return ( {label} ); }