Is there a way to position an icon in the corner of a Material UI button in React?
Currently, I have the icon next to the title but I would like to move it to the lower right corner of the button. Any suggestions on how to achieve this? Thank you!
export default function CardButton() {
return (
<Button
variant="contained"
style={{
height: 220,
width: 275,
margin: '1vh',
}}
color="secondary"
>
<Typography variant="button" style={{fontSize:'24px'}}>title</Typography>
<AddIcon/>
</Button>
)
}