Skip to content

Commit c7139c3

Browse files
committed
fix(input): fix size control typo in the stories
* remove the size control from textarea since it serves no purpose Signed-off-by: deku-nattsu <aymenbeta@gmail.com>
1 parent 5093887 commit c7139c3

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/input/input.stories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Basic.argTypes = {
6262
},
6363
size: {
6464
options: ["sm", "md", "lg"],
65-
contorl: "select"
65+
control: "select"
6666
}
6767
};
6868

src/input/textarea.stories.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ Basic.args = {
4747
cols: 50,
4848
rows: 4,
4949
autocomplete: "on",
50-
theme: "dark",
51-
size: "md"
50+
theme: "dark"
5251
};
5352
Basic.argTypes = {
5453
autocomplete: {
@@ -58,10 +57,6 @@ Basic.argTypes = {
5857
theme: {
5958
options: ["light", "dark"],
6059
control: "radio"
61-
},
62-
size: {
63-
options: ["sm", "md", "lg"],
64-
contorl: "select"
6560
}
6661
};
6762

0 commit comments

Comments
 (0)