16 lines
559 B
TypeScript
16 lines
559 B
TypeScript
import { Box, Typography } from "@mui/material";
|
||
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
||
import InfoIcon from "../../../assets/icons/InfoIcon";
|
||
|
||
export default function SettingPageOptions() {
|
||
return (
|
||
<Box sx={{ display: "flex", flexDirection: "column", padding: "20px" }}>
|
||
<Typography>Настройки вопроса</Typography>
|
||
<Box sx={{ display: "flex", alignItems: "center" }}>
|
||
<CustomCheckbox label={"Внутреннее название вопроса"} />
|
||
<InfoIcon />
|
||
</Box>
|
||
</Box>
|
||
);
|
||
}
|