Skip to content

Commit c6a3f9e

Browse files
authored
Update comments + stories to reflect pill default (#18)
1 parent 66f2eee commit c6a3f9e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/Button/Button.stories.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,12 @@ Icon.args = {
6363
color: "secondary",
6464
size: "lg",
6565
uniform: true,
66+
pill: false,
6667
variant: "ghost",
6768
}
6869

6970
Icon.parameters = {
70-
controls: { include: ["size", "gutterSize", "iconSize", "uniform", "variant"] },
71+
controls: { include: ["size", "gutterSize", "iconSize", "uniform", "pill", "variant"] },
7172
}
7273

7374
Icon.argTypes = {

src/components/Button/Button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ type CommonProps = {
3232
variant?: Variants<"solid" | "soft" | "outline" | "ghost">
3333
/**
3434
* Determines if the button should be a fully rounded pill shape
35-
* @default false
35+
* @default true
3636
*/
3737
pill?: boolean
3838
/**

0 commit comments

Comments
 (0)