From bcddedb9171b34aae01b3e366ac42ea7e3bed818 Mon Sep 17 00:00:00 2001 From: junyeokk Date: Mon, 13 May 2024 13:41:48 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Text=20=EA=B3=B5=ED=86=B5=20=EB=94=94?= =?UTF-8?q?=EC=9E=90=EC=9D=B8=20xxs=20=EC=B6=94=EA=B0=80,=20=EA=B8=B0?= =?UTF-8?q?=EC=A1=B4=20xl=20->=20xxl=EB=A1=9C=20=EB=B3=80=EA=B2=BD,=20?= =?UTF-8?q?=EC=83=88=EB=A1=9C=EC=9A=B4=20xl=20=EC=B6=94=EA=B0=80=20(#9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/typography/Text.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/typography/Text.tsx b/src/components/typography/Text.tsx index 6c48ae9..6a72bb3 100644 --- a/src/components/typography/Text.tsx +++ b/src/components/typography/Text.tsx @@ -11,6 +11,8 @@ export const Text = styled.span` font-size: ${(props) => { switch (props.size) { + case "xxs": + return "12px"; case "xs": return "14px"; case "s": @@ -20,6 +22,8 @@ export const Text = styled.span` case "l": return "22px"; case "xl": + return "28px"; + case "xxl": return "40px"; default: return props.size;