Skip to content

Commit

Permalink
fix: use currentColor to pass props color for MinusIcon (#160)
Browse files Browse the repository at this point in the history
Co-authored-by: Leonardo Di Vittorio <leo@MacBook-Pro-de-Leonardo.local>
  • Loading branch information
div-Leo and Leonardo Di Vittorio committed Jul 21, 2021
1 parent a0c8550 commit a0dc014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icons/basic/MinusIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const MinusIcon: React.FC<Props> = ({ size = 'medium', ...props }: IconProps) =>
: get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
return (
<svg {...props} width={sizePx} height={sizePx} viewBox="0 0 20 20">
<path d="M15.833 10.833V9.167H4.167v1.666z" fill="#001E3E" fillRule="nonzero" />
<path d="M15.833 10.833V9.167H4.167v1.666z" fill="currentColor" fillRule="nonzero" />
</svg>
);
};
Expand Down

0 comments on commit a0dc014

Please sign in to comment.