import {Box, FormControl, FormControlLabel, Radio, RadioGroup, Typography, useTheme} from "@mui/material"; import CustomCheckbox from "@ui_kit/CustomCheckbox"; import InfoIcon from "../../../assets/icons/InfoIcon"; import * as React from "react"; export default function SettingEmoji() { const [value, setValue] = React.useState('1'); const handleChangeRadio = (event: React.ChangeEvent) => { setValue((event.target as HTMLInputElement).value); }; const theme = useTheme() return ( Настройки ответов } label="Односточное" /> } label="Многострочное" /> } label="Только числа" /> Настройки вопросов ); };