From 41ade6b98b80874f312c9e674a00c3dd8b8d4777 Mon Sep 17 00:00:00 2001 From: evan-moon Date: Sun, 10 Jan 2021 16:00:50 +0900 Subject: [PATCH] =?UTF-8?q?fix(ui-kit):=20=ED=83=80=EC=9D=B4=ED=8F=AC?= =?UTF-8?q?=EA=B7=B8=EB=9E=98=ED=94=BC=20=ED=83=80=EC=9E=85=20=EA=B9=A8?= =?UTF-8?q?=EC=A7=80=EB=8A=94=20=EC=9D=B4=EC=8A=88=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui-kit/src/components/Selection/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-kit/src/components/Selection/index.tsx b/ui-kit/src/components/Selection/index.tsx index 2ffe6af0..95ec0a38 100644 --- a/ui-kit/src/components/Selection/index.tsx +++ b/ui-kit/src/components/Selection/index.tsx @@ -28,7 +28,7 @@ const Selection = ( ) => { const [innerValue, setInnerValue] = useState(value ?? ''); const iconColor = disabled ? colors.gray60 : colors.gray40; - const typography: Typographys = size === 'large' ? 'content' : 'content2'; + const typography: Typographys = size === 'large' ? 'p1' : 'p2'; useEffect(() => setInnerValue(value ?? ''), [value]);