File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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>;
5454export 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 = {
103103export 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 >
You can’t perform that action at this time.
0 commit comments