Skip to content

Commit

Permalink
feat(button): As props added
Browse files Browse the repository at this point in the history
lludol committed Sep 16, 2024

Verified

This commit was signed with the committer’s verified signature.
peterwht Peter White
1 parent 6b1a2fa commit 82039cd
Showing 2 changed files with 130 additions and 99 deletions.
20 changes: 20 additions & 0 deletions apps/storybook-react/stories/Button.stories.tsx
Original file line number Diff line number Diff line change
@@ -121,3 +121,23 @@ export const Warning: Story = {
</div>
),
};

export const ButtonAsLink: Story = {
render: () => (
<div className="flex flex-col gap-lg items-start justify-center">
<div className="flex gap-lg">
<Button
size="md"
variant="primary"
color="brand"

as="a"
href="https://blandui.com"
target="_blank"
>
BlandUI.com
</Button>
</div>
</div>
),
};
Loading

0 comments on commit 82039cd

Please sign in to comment.