import * as React from "react"; import { Box, Typography, TextField, Checkbox, Button } from "@mui/material"; import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider'; import dayjs, { Dayjs } from 'dayjs'; import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; import { DesktopDatePicker } from '@mui/x-date-pickers/DesktopDatePicker'; import theme from "../../../../theme"; const Promocode: React.FC = () => { const [value1, setValue1] = React.useState(); const handleChange1 = (newValue: Dayjs | null) => { setValue1(newValue); }; const [value2, setValue2] = React.useState(); const handleChange2 = (newValue: Dayjs | null) => { setValue2(newValue); }; return ( ПРОМОКОД Название: GJ58HG6GG Условия: Работает, если заплатите 100500 денег Дата действия: С } InputProps={{ sx: { height: "40px", color: theme.palette.secondary.main, border: "1px solid", borderColor: theme.palette.secondary.main, "& .MuiSvgIcon-root": { color: theme.palette.secondary.main } } }} /> по } InputProps={{ sx: { height: "40px", color: theme.palette.secondary.main, border: "1px solid", borderColor: theme.palette.secondary.main, "& .MuiSvgIcon-root": { color: theme.palette.secondary.main } } }} /> Бессрочно ); } export default Promocode;