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

LinkButton / IconButton: add success-tertiary as cambio options #321

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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/angry-guests-call.md
@@ -0,0 +1,9 @@
---
"@cambly/syntax-floating-components": patch
"@cambly/syntax-design-tokens": patch
"@cambly/syntax-tsconfig": patch
"@cambly/syntax-core": patch
"@syntax/storybook": patch
---

LinkButton / IconButton add missing success-tertiary color option
1 change: 1 addition & 0 deletions packages/syntax-core/src/IconButton/IconButton.tsx
Expand Up @@ -54,6 +54,7 @@ type IconButtonProps = {
| "success"
| "success-primary"
| "success-secondary"
| "success-tertiary"
| "inverse";
/**
* Test id for the button
Expand Down
1 change: 1 addition & 0 deletions packages/syntax-core/src/LinkButton/LinkButton.tsx
Expand Up @@ -68,6 +68,7 @@ type LinkButtonProps = {
| "success"
| "success-primary"
| "success-secondary"
| "success-tertiary"
| "inverse";
/**
* The size of the button
Expand Down