From 5210f928e81ecb39ddc6d8ad0a23ae798240a2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EB=AF=BC=EC=9A=B0?= Date: Thu, 28 Mar 2024 17:55:59 +0900 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20:=20#492=20-=20Icon=20?= =?UTF-8?q?=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=20=EB=82=B4=20=EA=B2=80?= =?UTF-8?q?=EC=83=89=20=EC=95=84=EC=9D=B4=EC=BD=98=20search=20=EC=A2=85?= =?UTF-8?q?=EB=A5=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Icon/Icon.tsx | 1 + src/types/IconName.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Icon/Icon.tsx b/src/components/Icon/Icon.tsx index 852f53e1..4b1303b5 100644 --- a/src/components/Icon/Icon.tsx +++ b/src/components/Icon/Icon.tsx @@ -40,6 +40,7 @@ const ICON_NAME_MAP = { COPY: 'content_copy', ARROW_RIGHT: 'subdirectory_arrow_right', CANCEL: 'cancel', + SEARCH: 'search', }; interface IconProps { diff --git a/src/types/IconName.ts b/src/types/IconName.ts index 226b7609..d2cd0659 100644 --- a/src/types/IconName.ts +++ b/src/types/IconName.ts @@ -36,4 +36,5 @@ export type IconName = | 'COPY' | 'HELP' | 'ARROW_RIGHT' - | 'CANCEL'; + | 'CANCEL' + | 'SEARCH';