fix: styles

This commit is contained in:
IlyaDoronin 2023-09-06 16:56:59 +03:00
parent 4a58ef2bfc
commit 3ed4b0f9bc

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