import React from 'react'; import InputLabel from '@mui/material/InputLabel'; import FormControl from '@mui/material/FormControl'; import Select from '@mui/material/Select'; export default function Component(props) { return ( {props.label} ); } Component.defaultProps = { variant: 'outlined', label: '', value: '', disabled: false, onChange: function (event) {}, };