58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
![]() |
import {Box, Typography, Link, useTheme} from "@mui/material";
|
|||
|
import React from "react";
|
|||
|
import EnterIcon from "../../../components/icons/questionsPage/enterIcon";
|
|||
|
import ButtonsOptions from "../ButtonsOptions";
|
|||
|
import ResponseSettings from "./responseSettings";
|
|||
|
import HelpAnswerOptions from "./helpAnswerOptions";
|
|||
|
import UploadImage from "./UploadImage";
|
|||
|
import SwitchAnswerOptions from "./switchAnswerOptions";
|
|||
|
|
|||
|
|
|||
|
export default function AnswerOptions() {
|
|||
|
const theme = useTheme();
|
|||
|
const [switchState, setSwitchState] = React.useState('setting');
|
|||
|
return (
|
|||
|
<>
|
|||
|
<Box sx={{ padding: '20px'}}>
|
|||
|
<Typography
|
|||
|
sx={{
|
|||
|
padding: '0 0 33px 80px',
|
|||
|
fontWeight: 400,
|
|||
|
fontSize: '18px',
|
|||
|
lineHeight: '21.33px',
|
|||
|
color: theme.palette.grey2.main
|
|||
|
}}
|
|||
|
>
|
|||
|
Добавьте ответ
|
|||
|
</Typography>
|
|||
|
<Box sx={{ display: 'flex', alignItems: 'center', gap: '10px'}}>
|
|||
|
<Link
|
|||
|
component="button"
|
|||
|
variant="body2"
|
|||
|
sx={{color: theme.palette.brightPurple.main}}
|
|||
|
// onClick={() => {
|
|||
|
// console.info("I'm a button.");
|
|||
|
// }}
|
|||
|
>
|
|||
|
Добавьте ответ
|
|||
|
</Link>
|
|||
|
<Typography
|
|||
|
sx={{
|
|||
|
fontWeight: 400,
|
|||
|
fontSize: '18px',
|
|||
|
lineHeight: '21.33px',
|
|||
|
color: theme.palette.grey2.main
|
|||
|
}}
|
|||
|
>или нажмите Enter</Typography>
|
|||
|
<EnterIcon/>
|
|||
|
</Box>
|
|||
|
</Box>
|
|||
|
<ButtonsOptions />
|
|||
|
<SwitchAnswerOptions switchState={switchState}/>
|
|||
|
{/**/}
|
|||
|
{/*<ResponseSettings/>*/}
|
|||
|
{/*<HelpAnswerOptions/>*/}
|
|||
|
{/*<UploadImage/>*/}
|
|||
|
</>
|
|||
|
)
|
|||
|
}
|