Skip to content

Commit 2bc80a3

Browse files
committed
[#57] ✅ Add invalid prop to TextArea component
1 parent 988a278 commit 2bc80a3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/stories/common/textarea/TextArea.stories.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,20 @@ export const Medium = {
3535
fullWidth: true,
3636
},
3737
}
38+
3839
export const Large = {
3940
args: {
4041
placeholder: '간단한 소개글을 작성해주세요.',
4142
size: 'lg',
4243
fullWidth: true,
4344
},
4445
}
46+
47+
export const Invalid = {
48+
args: {
49+
placeholder: '간단한 소개글을 작성해주세요.',
50+
size: 'sm',
51+
fullWidth: true,
52+
invalid: true,
53+
},
54+
}

0 commit comments

Comments
 (0)