import { Box, Typography, FormControl, InputLabel, Select, MenuItem, OutlinedInput, } from '@mui/material'; import CheckCircleIcon from '@mui/icons-material/CheckCircle'; import TextFieldsIcon from '@mui/icons-material/TextFields'; interface FontControlProps { id: string; label: string; options: readonly string[]; value: string; onChange: (font: string) => void; } export function FontControl({ id, label, options, value, onChange }: Readonly) { return ( {label} ); }