Matrial UI ICon Button code example
Example: material ui icon button
// if this helped, don't forget to upvote so others can see
import React from 'react';
import LocationOnIcon from '@material-ui/icons/LocationOn';
import IconButton from '@material-ui/core/IconButton';
export default function ButtonWithIcon () {
return(
<IconButton>
<LocationOnIcon />
</IconButton>
)
}