The current MUI button supports size
prop values as the following
small
medium
large
Although this feature is handy, I find myself wishing I could specify the height and width using the style
prop to customize the size like
<Button
variant="contained"
size="large"
onClick={onDownloadButtonClick}
style={{
width: '30em',
height: '40em' // let's call it humonguous
}}
>
Download
</Button>
Is there a way to achieve this customization? Any suggestions are welcome!