Add 'strokeWidth' prop to Icon

This commit is contained in:
Justin 2022-04-12 09:50:39 -04:00 committed by Alex Gleason
parent fd6ae83fe7
commit afec2ad9ea
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import React from 'react';
import SvgIcon from './svg-icon'; import SvgIcon from './svg-icon';
interface IIcon { interface IIcon extends Pick<React.SVGAttributes<SVGAElement>, 'strokeWidth'> {
className?: string, className?: string,
count?: number, count?: number,
alt?: string, alt?: string,