Spaces:
Sleeping
Sleeping
File size: 2,055 Bytes
819bacd |
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
import { Button, Typography, useTheme } from "@mui/material";
import Grid from "@mui/material/Unstable_Grid2";
export default function ModelSelection() {
const theme = useTheme();
return (
<>
<Grid
container
mb={2}
alignItems={"center"}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
padding={2}
sx={{
backgroundColor: theme.palette.background.default,
}}
>
<Grid item sm={3}>
<Typography variant="h4">Select Model:</Typography>
</Grid>
<Grid
item
container
alignItems="center"
justifyContent={"center"}
sm={2.5}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
sx={{
backgroundColor: "white",
}}
>
<Button>
<Typography variant="h6" color="black">
Model 1
</Typography>
</Button>
</Grid>
<Grid
item
container
ml={2}
alignItems="center"
justifyContent={"center"}
sm={2.5}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
sx={{
backgroundColor: "white",
}}
>
<Button>
<Typography variant="h6" color="black">
Model 2
</Typography>
</Button>
</Grid>
<Grid
item
ml={2}
container
alignItems="center"
justifyContent={"center"}
sm={2.5}
border={1}
borderColor={theme.palette.border.default}
borderRadius={2}
sx={{
backgroundColor: "white",
}}
>
<Button>
<Typography variant="h6" color="black">
Model 3
</Typography>
</Button>
</Grid>
</Grid>
</>
);
}
|