Skip to content

Commit

Permalink
Merge pull request #4094 from melloware/PR4093
Browse files Browse the repository at this point in the history
Fix #4093: Button size docs corrected
  • Loading branch information
habubey committed Mar 2, 2023
2 parents e81c2ad + 51074a6 commit 81b6936
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 @@ -68,9 +68,9 @@ export interface ButtonProps extends Omit<React.DetailedHTMLProps<React.ButtonHT
*/
severity?: 'secondary' | 'success' | 'info' | 'warning' | 'danger' | undefined;
/**
* Defines the size of the button, valid values are "small" and "large".
* Defines the size of the button, valid values are "sm" and "lg".
*/
size?: 'small' | 'large' | undefined;
size?: 'sm' | 'lg' | undefined;
/**
* Position of the icon, valid values are "left", "right", "top" and "bottom".
* @defaultValue left
Expand Down

0 comments on commit 81b6936

Please sign in to comment.