Skip to content

Commit

Permalink
chore: Add 'contrast' style option to ButtonProps (#6839)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekl0w authored Jul 5, 2024
1 parent 8625e49 commit e8bcce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/lib/button/button.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ export interface ButtonProps extends Omit<React.DetailedHTMLProps<React.ButtonHT
*/
link?: boolean | undefined;
/**
* Defines the style of the button, valid values are "secondary", "success", "info", "warning", "danger", "help".
* Defines the style of the button, valid values are "secondary", "success", "info", "warning", "danger", "help", "contrast".
*/
severity?: 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'help' | undefined;
severity?: 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'help' | 'contrast' | undefined;
/**
* Defines the size of the button, valid values are "small" and "large".
*/
Expand Down

0 comments on commit e8bcce0

Please sign in to comment.