From 4c901706e5cd8ed81fe822f0c57bd310d41ffc2c Mon Sep 17 00:00:00 2001 From: Harang Date: Wed, 4 Sep 2024 15:25:51 +0900 Subject: [PATCH] =?UTF-8?q?perf(web):=20social=20icon=20=EB=A7=81=ED=81=AC?= =?UTF-8?q?=EC=97=90=20=EC=9D=B8=EC=8B=9D=20=EA=B0=80=EB=8A=A5=ED=95=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=A6=84=20aria-label=20=EC=A0=81=EC=9A=A9=20(#180)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/components/molecules/SocialIconLink/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web/src/components/molecules/SocialIconLink/index.tsx b/apps/web/src/components/molecules/SocialIconLink/index.tsx index 2c03914..7404283 100644 --- a/apps/web/src/components/molecules/SocialIconLink/index.tsx +++ b/apps/web/src/components/molecules/SocialIconLink/index.tsx @@ -1,6 +1,6 @@ import { FunctionComponent, SVGAttributes } from 'react'; -import { LogoType } from '@dnd-academy/core'; +import { type LogoType } from '@dnd-academy/core'; import clsx from 'clsx'; import ExternalLink from '@/components/atoms/ExternalLink'; @@ -58,13 +58,13 @@ function SocialIconLink({ if (!link) { return ( - + ); } return ( - + ); }