File size: 283 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
// material icons isn't allowing us to override style properties with className/styleName
export const iconStyle: React.CSSProperties = {
width: '100%',
height: 'auto',
padding: '0',
color: '#aaa',
textAlign: 'center',
minWidth: 64,
minHeight: 64,
maxHeight: 256,
};
|