mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
192 lines
5.0 KiB
Plaintext
192 lines
5.0 KiB
Plaintext
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
|
|
import { Button } from './button';
|
|
import { ButtonBase } from '../button-base';
|
|
import { ButtonLink } from '../button-link';
|
|
|
|
# Button
|
|
|
|
The `Button` is used for user actions. It unifies `ButtonPrimary`, `ButtonSecondary` and `ButtonLink`.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--default-story" />
|
|
</Canvas>
|
|
|
|
## Props
|
|
|
|
The `Button` accepts all props below as well as all [ButtonPrimary](/docs/components-componentlibrary-buttonprimary--default-story), [ButtonSecondary](/docs/components-componentlibrary-buttonsecondary--default-story), [ButtonLink](/docs/components-componentlibrary-buttonlink--default-story), and [Box](/docs/components-ui-box--default-story#props) component props
|
|
|
|
<ArgsTable of={Button} />
|
|
|
|
The `Button` accepts all [ButtonBase](/docs/components-componentlibrary-buttonbase--default-story#props) component props
|
|
|
|
<ArgsTable of={ButtonBase} />
|
|
|
|
The `Button` accepts all [ButtonPrimary](/docs/components-componentlibrary-buttonprimary--default-story), [ButtonSecondary](/docs/components-componentlibrary-buttonsecondary--default-story), [ButtonLink](/docs/components-componentlibrary-buttonlink--default-story), and [Box](/docs/components-ui-box--default-story#props) component props
|
|
|
|
<ArgsTable of={ButtonLink} />
|
|
|
|
### Type
|
|
|
|
Use the `type` prop and the `BUTTON_TYPES` object from `./button.constants.js` to change the `Button` type.
|
|
|
|
Possible types include:
|
|
|
|
- `BUTTON_TYPES.PRIMARY`
|
|
- `BUTTON_TYPES.SECONDARY`
|
|
- `BUTTON_TYPES.LINK`
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--type" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button, BUTTON_TYPES } from '../ui/component-library/button';
|
|
|
|
<Button type={BUTTON_TYPES.PRIMARY}>Button Primary</Button>
|
|
<Button type={BUTTON_TYPES.SECONDARY}>Button Secondary</Button>
|
|
<Button type={BUTTON_TYPES.LINK}>Button Link</Button>
|
|
```
|
|
|
|
### Size
|
|
|
|
Use the `size` prop and the `Size` object from `./ui/helpers/constants/design-system.js` to change the size of `Button`. Defaults to `Size.MD`
|
|
|
|
Optional: `BUTTON_SIZES` from `./button` object can be used instead of `Size`.
|
|
|
|
Possible sizes include:
|
|
|
|
- `Size.inherit` inherits the font-size of the parent element. For [ButtonLink](/docs/components-componentlibrary-buttonlink--default-story) uses only
|
|
- `Size.auto` inherits auto height, but keeps the same button font-size. For [ButtonLink](/docs/components-componentlibrary-buttonlink--default-story) uses only
|
|
- `Size.SM` 32px
|
|
- `Size.MD` 40px
|
|
- `Size.LG` 48px
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--size-story" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Size } from '../../../helpers/constants/design-system';
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button size={Size.inherit} />
|
|
<Button size={Size.SM} />
|
|
<Button size={Size.MD} />
|
|
<Button size={Size.LG} />
|
|
```
|
|
|
|
### Danger
|
|
|
|
Use the `danger` boolean prop to change the `Button` to danger color.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--danger" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button>Normal</Button>
|
|
<Button danger>Danger</Button>
|
|
```
|
|
|
|
### Href
|
|
|
|
When an `href` prop is passed it will change the element to an anchor(`a`) tag.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--href" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button href="/">Anchor Element</Button>;
|
|
```
|
|
|
|
### Block
|
|
|
|
Use boolean `block` prop to quickly enable a full width block button
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--block" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { DISPLAY } from '../../../helpers/constants/design-system';
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button>Default Button</Button>
|
|
<Button block>Block Button</Button>
|
|
```
|
|
|
|
### As
|
|
|
|
Use the `as` box prop to change the element of `Button`. Defaults to `button`.
|
|
|
|
When an `href` prop is passed it will change the element to an anchor(`a`) tag.
|
|
|
|
Button `as` options:
|
|
|
|
- `button`
|
|
- `a`
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--as" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
|
|
|
|
<Button as="button">Button Element</Button>
|
|
<Button as="a" href="#">
|
|
Anchor Element
|
|
</Button>
|
|
```
|
|
|
|
### Disabled
|
|
|
|
Use the boolean `disabled` prop to disable button
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--disabled" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button disabled>Disabled Button</Button>;
|
|
```
|
|
|
|
### Loading
|
|
|
|
Use the boolean `loading` prop to set loading spinner
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--loading" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
|
|
<Button loading>Loading Button</Button>;
|
|
```
|
|
|
|
### Icon Name
|
|
|
|
Use the `iconName` prop and the `ICON_NAMES` object from `./ui/components/component-library/icon` to select icon.
|
|
|
|
Use the [IconSearch](/story/components-componentlibrary-icon--default-story) story to find the icon you want to use.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-button--icon" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { Button } from '../ui/component-library';
|
|
import { ICON_NAMES } from '../icon';
|
|
|
|
<Button icon={ICON_NAMES.ADD_SQUARE}>Button</Button>;
|
|
```
|