54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import Radio from '@mui/material/Radio';
|
|
import RadioGroup from '@mui/material/RadioGroup';
|
|
import FormControlLabel from '@mui/material/FormControlLabel';
|
|
import FormControl from '@mui/material/FormControl';
|
|
import FormLabel from '@mui/material/FormLabel';
|
|
|
|
export default function Direction() {
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Direction
|
|
</Typography>
|
|
|
|
<FormControl>
|
|
<FormLabel id="demo-row-radio-buttons-group-label">Gender</FormLabel>
|
|
<RadioGroup
|
|
row
|
|
aria-labelledby="demo-row-radio-buttons-group-label"
|
|
name="row-radio-buttons-group"
|
|
>
|
|
<FormControlLabel value="female" control={<Radio />} label="Female" />
|
|
<FormControlLabel value="male" control={<Radio />} label="Male" />
|
|
<FormControlLabel value="other" control={<Radio />} label="Other" />
|
|
<FormControlLabel
|
|
value="disabled"
|
|
disabled
|
|
control={<Radio />}
|
|
label="other"
|
|
/>
|
|
</RadioGroup>
|
|
</FormControl>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|