62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
import React from "react";
|
|
import Card from "@mui/material/Card";
|
|
import { Typography } from "@mui/material";
|
|
import InputLabel from '@mui/material/InputLabel';
|
|
import MenuItem from '@mui/material/MenuItem';
|
|
import FormControl from '@mui/material/FormControl';
|
|
import Select from '@mui/material/Select';
|
|
|
|
export default function AutoWidth() {
|
|
|
|
const [age, setAge] = React.useState('');
|
|
|
|
const handleChange = (event) => {
|
|
setAge(event.target.value);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Card
|
|
sx={{
|
|
boxShadow: "none",
|
|
borderRadius: "10px",
|
|
p: "25px",
|
|
mb: "15px",
|
|
}}
|
|
>
|
|
<Typography
|
|
as="h3"
|
|
sx={{
|
|
fontSize: 18,
|
|
fontWeight: 500,
|
|
mb: '10px'
|
|
}}
|
|
>
|
|
Auto Width
|
|
</Typography>
|
|
|
|
<div>
|
|
<FormControl sx={{ minWidth: 80 }}>
|
|
<InputLabel id="demo-simple-select-autowidth-label">Age</InputLabel>
|
|
<Select
|
|
labelId="demo-simple-select-autowidth-label"
|
|
id="demo-simple-select-autowidth"
|
|
value={age}
|
|
onChange={handleChange}
|
|
autoWidth
|
|
label="Age"
|
|
>
|
|
<MenuItem value="">
|
|
<em>None</em>
|
|
</MenuItem>
|
|
<MenuItem value={10}>Twenty</MenuItem>
|
|
<MenuItem value={21}>Twenty one</MenuItem>
|
|
<MenuItem value={22}>Twenty one and a half</MenuItem>
|
|
</Select>
|
|
</FormControl>
|
|
</div>
|
|
</Card>
|
|
</>
|
|
);
|
|
}
|