Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 4x 4x 4x 6x 743x 344x 172x 743x | import { InputLabel, styled } from "@mui/material";
import Button from "components/Button";
import TextField from "components/TextField";
const StyledForm = styled("form")(({ theme }) => ({
display: "flex",
flexDirection: "column",
width: "100%",
[theme.breakpoints.up("md")]: {
alignItems: "flex-start",
},
}));
const StyledInputLabel = styled(InputLabel)(({ theme }) => ({
color: theme.palette.text.primary,
width: "100%",
fontSize: "0.875rem",
marginLeft: theme.spacing(0.5),
[theme.breakpoints.up("md")]: {
marginBottom: theme.spacing(1),
},
}));
const StyledTextField = styled(TextField)(({ theme }) => ({
marginBottom: theme.spacing(2),
marginTop: 0,
width: "100%",
"& .MuiInputBase-root": {
backgroundColor: theme.palette.common.white,
},
}));
const StyledButton = styled(Button)(({ theme }) => ({
color: theme.palette.secondary.contrastText,
fontWeight: 700,
marginTop: theme.spacing(2),
fontSize: "1.4rem",
[theme.breakpoints.up("md")]: {
borderRadius: theme.shape.borderRadius,
},
}));
export { StyledButton, StyledForm, StyledInputLabel, StyledTextField };
|