We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6d307 commit 9f1b459Copy full SHA for 9f1b459
src/components/ButtonTwoLines/ButtonTwoLines.stories.tsx
@@ -20,6 +20,7 @@ export const ButtonTwoLines: Story = {
20
icon: BiCircle,
21
mainText: "Main Text",
22
helperText: "Helper Text",
23
+ w: "300px",
24
},
25
render: (args) => (
26
<Stack spacing="8">
src/components/ButtonTwoLines/index.tsx
@@ -64,7 +64,6 @@ const ButtonTwoLines = (props: ButtonTwoLinesProps) => {
64
[isIconLeft ? "leftIcon" : "rightIcon"]: <Icon />,
65
textAlign: isIconLeft ? "start" : "end",
66
justifyContent: isIconLeft ? "flex-start" : "flex-end",
67
- w: "278px",
68
}
69
70
const Component = hasHref(props) ? ButtonLink : Button
0 commit comments