Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Button] Update Button mini description #10355

Merged
merged 2 commits into from
Feb 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/api/button.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ filename: /src/Button/Button.js
| disableRipple | bool | false | If `true`, the ripple effect will be disabled. |
| fullWidth | bool | false | If `true`, the button will take up the full width of its container. |
| href | string | | The URL to link to when the button is clicked. If defined, an `a` element will be used as the root node. |
| mini | bool | false | If `true`, and `fab` is `true`, will use mini floating action button styling. |
| mini | bool | false | If `true`, and `variant` is `'fab'`, will use mini floating action button styling. |
| size | enum:&nbsp;'small'&nbsp;&#124;<br>&nbsp;'medium'&nbsp;&#124;<br>&nbsp;'large'<br> | 'medium' | The size of the button. `small` is equivalent to the dense button styling. |
| variant | enum:&nbsp;'flat'&nbsp;&#124;<br>&nbsp;'raised'&nbsp;&#124;<br>&nbsp;'fab'<br> | 'flat' | The color of the component. It supports those theme colors that make sense for this component. |

Expand Down
2 changes: 1 addition & 1 deletion src/Button/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Button.propTypes = {
*/
href: PropTypes.string,
/**
* If `true`, and `fab` is `true`, will use mini floating action button styling.
* If `true`, and `variant` is `'fab'`, will use mini floating action button styling.
*/
mini: PropTypes.bool,
/**
Expand Down