Looking to create an icon button that resembles this design: https://i.sstatic.net/QCyZO.png
My current progress is as follows: https://i.sstatic.net/NXfm0.png
Below is the code snippet I have been working on:
import { SvgIcon, IconButton } from '@material-ui/core';
import {ReactComponent as homemadePlayIcon} from "./play-icon.svg"
<IconButton onClick={this.playIconButtonClick} disableRipple={true} style={{color: "rgb(0,0,0,0)", width: '35px', height: '35px', backgroundColor: '#f5f5f5', boxShadow: &q...
Is there a way to align the icon in the center of the button?
Appreciate your help, James