Skip to content

Commit

Permalink
Fix spacing in button property types column
Browse files Browse the repository at this point in the history
  • Loading branch information
cjwinsor committed Aug 5, 2024
1 parent 0eb6577 commit 44e12b8
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,19 @@ The danger color variant is used for alerting or critical actions. It does not s

### Properties

| Property | Attribute | Description | Type | Default |
| -------------- | --------------- | ------------------------------------------------------------------------------------------ | ---------------------------------------------------------- | ----------- |
| `ariaDisabled` | `aria-disabled` | (optional) The button's `aria-disabled` state. | `string` | `undefined` |
| `ariaLabel` | `aria-label` | (optional) The button's aria-label. | `string` | `undefined` |
| `buttonStyle` | `button-style` | (optional) The style of the button | `"borderless" , "fill" , "outline"` | `'fill'` |
| `color` | `color` | (optional) The color of the button | `"danger" ,"primary" , "secondary" , "tertiary","special"` | `'primary'` |
| `disabled` | `disabled` | (optional) Disables the button. | `boolean` | `undefined` |
| `iconOnly` | `icon-only` | (optional) Takes the icon name and renders an icon-only button. | `string` | `undefined` |
| `leftIcon` | `left-icon` | (optional) Takes the icon name and shows the icon aligned to the left of the button text. | `string` | `undefined` |
| `rightIcon` | `right-icon` | (optional) Takes the icon name and shows the icon aligned to the right of the button text. | `string` | `undefined` |
| `showCaret` | `show-caret` | (optional) Shows a caret icon right side of the button. | `boolean` | `undefined` |
| `size` | `size` | (optional) The size of the button. | `"large" ,"medium" , "small"` | `'medium'` |
| `type` | `type` | (optional) The type of the button. | `"button" , "reset" , "submit"` | `'button'` |
| Property | Attribute | Description | Type | Default |
| -------------- | --------------- | ------------------------------------------------------------------------------------------ | --------------------------------------------------------- | ----------- |
| `ariaDisabled` | `aria-disabled` | (optional) The button's `aria-disabled` state. | `string` | `undefined` |
| `ariaLabel` | `aria-label` | (optional) The button's aria-label. | `string` | `undefined` |
| `buttonStyle` | `button-style` | (optional) The style of the button | `"borderless", "fill", "outline"` | `'fill'` |
| `color` | `color` | (optional) The color of the button | `"danger", "primary", "secondary", "tertiary", "special"` | `'primary'` |
| `disabled` | `disabled` | (optional) Disables the button. | `boolean` | `undefined` |
| `iconOnly` | `icon-only` | (optional) Takes the icon name and renders an icon-only button. | `string` | `undefined` |
| `leftIcon` | `left-icon` | (optional) Takes the icon name and shows the icon aligned to the left of the button text. | `string` | `undefined` |
| `rightIcon` | `right-icon` | (optional) Takes the icon name and shows the icon aligned to the right of the button text. | `string` | `undefined` |
| `showCaret` | `show-caret` | (optional) Shows a caret icon right side of the button. | `boolean` | `undefined` |
| `size` | `size` | (optional) The size of the button. | `"large", "medium", "small"` | `'medium'` |
| `type` | `type` | (optional) The type of the button. | `"button", "reset", "submit"` | `'button'` |

### DOM Events

Expand Down

0 comments on commit 44e12b8

Please sign in to comment.