Skip to content

Commit 17aa31b

Browse files
committed
docs: text storybook typo 수정
1 parent f6f353d commit 17aa31b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/ui/Text/Text.stories.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const meta: Meta<typeof Text> = {
2424
description: "미리 정의된 타이포그래피 스타일을 적용합니다.",
2525
table: {
2626
type: { summary: "keyof typeof typography" },
27-
defaultValue: { summary: "body1" },
27+
defaultValue: { summary: "body1Bd" },
2828
},
2929
},
3030
color: {
@@ -54,7 +54,7 @@ type Story = StoryObj<typeof Text>;
5454
export const Default: Story = {
5555
args: {
5656
children: "이것은 기본 텍스트입니다.",
57-
typo: "body1",
57+
typo: "body1Bd",
5858
color: "neutral.10",
5959
},
6060
};
@@ -103,13 +103,13 @@ export const Colors: Story = {
103103
export const AsHeading: Story = {
104104
render: () => (
105105
<div>
106-
<Text as='h1' typo='title1'>
106+
<Text as='h1' typo='title1Bd'>
107107
이것은 H1 태그입니다. (typo: title1)
108108
</Text>
109-
<Text as='h2' typo='title2'>
109+
<Text as='h2' typo='title2Sb'>
110110
이것은 H2 태그입니다. (typo: title2)
111111
</Text>
112-
<Text as='span' typo='body1'>
112+
<Text as='span' typo='body1Bd'>
113113
이것은 SPAN 태그입니다.
114114
</Text>
115115
</div>

0 commit comments

Comments
 (0)