mdi-react icon indicating copy to clipboard operation
mdi-react copied to clipboard

Prevent automatic icon resize

Open yanickrochon opened this issue 5 years ago • 0 comments

Following this question on StackOverflow, I found an error that should be fixed. The line here should change from :

<svg {...props} className={className} width={size} height={size} fill={color} viewBox="0 0 24 24">

to

<svg {...props} className={className} width={size} height={size} fill={color} viewBox="0 0 24 24" style={{ minWidth: size }}>

Perhaps even add maxWidth: size to prevent oversizing as well.

yanickrochon avatar Oct 23 '20 15:10 yanickrochon