Basically, this is my Button right now

I want to make the Dummy Button text to appear below the icon, how do I do that?
Here is my code
<Button className={classes.dummyButton}>
<Image
src="/buttonImage1.webp"
alt="buttonimage1"
width={48}
height={48}
/>
<span>Dummy Button</span>
</Button>
Styles.js
dummyButton: {
backgroundColor: 'green',
},
>Solution :
I think you can put your image tag in another span and change its display to block.
Try this:
<Button className={classes.dummyButton}>
<span className={classes.mySpan}>
<Image
src="/buttonImage1.webp"
alt="buttonimage1"
width={48}
height={48}
/>
</span>
<div>Dummy Button</div>
</Button>
and your class styles should be like this:
.mySpan {
display: 'block'
}