Skip to content

Commit

Permalink
Fix primefaces#4093: Button size docs corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Feb 23, 2023
1 parent d8882ae commit 51074a6
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 51074a6

Please sign in to comment.