Skip to content

Commit

Permalink
docs(Button.types): update loading prop description about disabled prop
Browse files Browse the repository at this point in the history
  • Loading branch information
jintak0401 committed Dec 5, 2024
1 parent d2418fe commit 843da37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface FloatingButtonOwnProps {
text: string

/**
* If `loading` is true, spinner will be shown, replacing the content.
* If `loading` is true, spinner will be shown, replacing the content. Also, the button will be disabled.
* @default false
*/
loading?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type FloatingIconButtonSize = 'xs' | 's' | 'm' | 'l' | 'xl'

interface FloatingIconButtonOwnProps {
/**
* If `loading` is true, spinner will be shown, replacing the content.
* If `loading` is true, spinner will be shown, replacing the content. Also, the button will be disabled.
* @default false
*/
loading?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type IconButtonSize = 'xs' | 's' | 'm' | 'l' | 'xl'

interface IconButtonOwnProps {
/**
* If `loading` is true, spinner will be shown, replacing the content.
* If `loading` is true, spinner will be shown, replacing the content. Also, the button will be disabled.
* @default false
*/
loading?: boolean
Expand Down

0 comments on commit 843da37

Please sign in to comment.