From 77788ac675b58a57f8c49c19784c233e827c8189 Mon Sep 17 00:00:00 2001 From: nijuy Date: Mon, 22 Jul 2024 14:24:37 +0900 Subject: [PATCH] fix: `current` -> `currentColor` --- src/style/foundation/icons/icon.base.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style/foundation/icons/icon.base.tsx b/src/style/foundation/icons/icon.base.tsx index 361ff02..6901d7a 100644 --- a/src/style/foundation/icons/icon.base.tsx +++ b/src/style/foundation/icons/icon.base.tsx @@ -11,7 +11,7 @@ export const IconBase = forwardRef((props, ref) => { xmlns="http://www.w3.org/2000/svg" width={size ?? '24px'} height={size ?? '24px'} - fill={color ?? 'current'} + fill={color ?? 'currentColor'} {...rest} > {children}