Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Admin UI - Alert Component #4386

Merged
merged 11 commits into from
Nov 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
adrians5j committed Nov 15, 2024
commit 71c293bcd0d43f23f0b91708371dbcfb4f336e01
14 changes: 14 additions & 0 deletions packages/admin-ui/src/Button/Button.stories.tsx
Original file line number Diff line number Diff line change
@@ -55,6 +55,20 @@ export const Ghost: Story = {
}
};

export const GhostNegative: Story = {
decorators: [
Story => (
<div className="bg-[#25292e] p-[300px]">
<Story />
</div>
)
],
args: {
...Primary.args,
variant: "ghost-negative"
}
};

export const Small: Story = {
args: {
...Primary.args,
Loading