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

Merge dev into production #1929

Merged
merged 3 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 10 additions & 0 deletions workspaces/website/src/components/Button/Button.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@ export const Ghost = () => (
</ThemeProvider>
);

export const Gradient = () => (
<ThemeProvider>
<HStack p={12}>
<>
<Button variant="gradient">Gradient button</Button>
</>
</HStack>
</ThemeProvider>
);

export const PrimaryHero = () => (
<ThemeProvider>
<HStack p={12}>
Expand Down
3 changes: 2 additions & 1 deletion workspaces/website/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ type props = {
| "filter"
| "filterActive"
| "category"
| "icon";
| "icon"
| "gradient";
children: React.ReactNode;
toId?: string;
href?: string;
Expand Down
Loading
Loading