Skip to content

Commit

Permalink
fix: current -> currentColor
Browse files Browse the repository at this point in the history
  • Loading branch information
nijuy committed Jul 22, 2024
1 parent b0724b7 commit 77788ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/style/foundation/icons/icon.base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const IconBase = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
xmlns="http://www.w3.org/2000/svg"
width={size ?? '24px'}
height={size ?? '24px'}
fill={color ?? 'current'}
fill={color ?? 'currentColor'}
{...rest}
>
{children}
Expand Down

0 comments on commit 77788ac

Please sign in to comment.