frontPanel/src/pages/Questions/PageOptions/SettingPageOptions.tsx

41 lines
981 B
TypeScript
Raw Normal View History

import { Box, Typography, useMediaQuery, useTheme } from "@mui/material";
2023-10-03 14:03:57 +00:00
import type { QuizQuestionPage } from "../../../model/questionTypes/page";
2023-09-08 13:42:52 +00:00
type SettingPageOptionsProps = {
2023-12-31 02:53:25 +00:00
question: QuizQuestionPage;
2023-09-08 13:42:52 +00:00
};
2023-10-06 19:28:30 +00:00
export default function SettingPageOptions({
2023-12-31 02:53:25 +00:00
question,
2023-10-06 19:28:30 +00:00
}: SettingPageOptionsProps) {
2023-12-31 02:53:25 +00:00
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down(790));
2023-12-31 02:53:25 +00:00
return (
<Box
sx={{
boxSizing: "border-box",
pt: isMobile ? "25px" : "20px",
pb: isMobile ? "25px" : "20px",
pl: "20px",
pr: "20px",
display: "flex",
flexDirection: "column",
gap: "14px",
width: isMobile ? "auto" : "100%",
}}
>
<Typography
sx={{
height: isMobile ? "18px" : "auto",
fontWeight: "500",
fontSize: "18px",
color: " #4D4D4D",
}}
>
Настройки вопроса
</Typography>
</Box>
);
2023-09-06 13:56:59 +00:00
}