2023-09-06 13:56:59 +00:00
|
|
|
|
import { Box, Typography } from "@mui/material";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
import CustomCheckbox from "@ui_kit/CustomCheckbox";
|
2023-05-03 19:21:00 +00:00
|
|
|
|
import InfoIcon from "../../../assets/icons/InfoIcon";
|
2023-03-31 15:48:49 +00:00
|
|
|
|
|
|
|
|
|
export default function SettingPageOptions() {
|
2023-09-06 13:56:59 +00:00
|
|
|
|
return (
|
|
|
|
|
<Box sx={{ display: "flex", flexDirection: "column", padding: "20px" }}>
|
|
|
|
|
<Typography>Настройки вопроса</Typography>
|
|
|
|
|
<Box sx={{ display: "flex", alignItems: "center" }}>
|
|
|
|
|
<CustomCheckbox label={"Внутреннее название вопроса"} />
|
|
|
|
|
<InfoIcon />
|
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|