Skip to content

Commit

Permalink
feat(ui-kit): Add variants to UIKit button (#1088)
Browse files Browse the repository at this point in the history
Co-authored-by: Tasso Evangelista <tasso.evangelista@rocket.chat>
  • Loading branch information
csuadev and tassoevan committed Jul 5, 2023
1 parent b0cf8fb commit b736c6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui-kit/src/blocks/elements/ButtonElement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ export type ButtonElement = Actionable<{
text: PlainText;
url?: string;
value?: string;
style?: 'primary' | 'danger';
style?: 'primary' | 'secondary' | 'danger' | 'warning' | 'success';
secondary?: boolean;
}>;

0 comments on commit b736c6d

Please sign in to comment.