From 900bfa8187a6d044fbd7bcd33810d6060a6955fd Mon Sep 17 00:00:00 2001 From: JeeminYi Date: Fri, 24 Jan 2025 23:53:14 +0900 Subject: [PATCH] =?UTF-8?q?style:=20stroke=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?=EC=8B=9C=EB=8F=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/Icon.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/common/Icon.tsx b/src/components/common/Icon.tsx index 2931f2bc..9ea83184 100644 --- a/src/components/common/Icon.tsx +++ b/src/components/common/Icon.tsx @@ -57,6 +57,10 @@ const StyledIconWrapper = styled.div<{ width: 100%; height: 100%; + path { + stroke: 'none'; + } + ${({ theme, color }) => color && `color: ${getColorMap(theme)[color]};`} ${({ stroke }) => stroke && `stroke: ${stroke};`} }