36 lines
912 B
TypeScript
36 lines
912 B
TypeScript
![]() |
import { Box, Typography, useTheme } from "@mui/material";
|
|||
|
|
|||
|
import AddImage from "@icons/questionsPage/addImage";
|
|||
|
import AddVideofile from "@icons/questionsPage/addVideofile";
|
|||
|
|
|||
|
export default function ImageAndVideoButtons() {
|
|||
|
const theme = useTheme();
|
|||
|
return (
|
|||
|
<Box sx={{ display: "flex", alignItems: "center", gap: "12px", mt: "20px", mb: "20px" }}>
|
|||
|
<AddImage />
|
|||
|
<Typography
|
|||
|
sx={{
|
|||
|
fontWeight: 400,
|
|||
|
fontSize: "16px",
|
|||
|
lineHeight: "18.96px",
|
|||
|
color: theme.palette.grey2.main,
|
|||
|
}}
|
|||
|
>
|
|||
|
Изображение
|
|||
|
</Typography>
|
|||
|
<Typography> или</Typography>
|
|||
|
<AddVideofile />
|
|||
|
<Typography
|
|||
|
sx={{
|
|||
|
fontWeight: 400,
|
|||
|
fontSize: "16px",
|
|||
|
lineHeight: "18.96px",
|
|||
|
color: theme.palette.grey2.main,
|
|||
|
}}
|
|||
|
>
|
|||
|
Видео
|
|||
|
</Typography>
|
|||
|
</Box>
|
|||
|
);
|
|||
|
}
|