1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-04 23:14:56 +01:00
metamask-extension/ui/components/component-library/button-secondary
Garrett Bear 958cfe65a0
Feat/15951/add button secondary (#16097)
* add button secondary

* revert change to shadow stories

* test and docs update

* Update ui/components/component-library/button-secondary/README.mdx

Co-authored-by: George Marshall <george.marshall@consensys.net>

* remove unused fragment

Co-authored-by: George Marshall <george.marshall@consensys.net>
2022-10-07 08:50:28 -07:00
..
button-secondary.constants.js Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
button-secondary.js Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
button-secondary.scss Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
button-secondary.stories.js Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
button-secondary.test.js Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
index.js Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00
README.mdx Feat/15951/add button secondary (#16097) 2022-10-07 08:50:28 -07:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import { ButtonSecondary } from './button-secondary';

# ButtonSecondary

The `ButtonSecondary` is an extension of `ButtonBase` to support secondary styles.

<Canvas>
  <Story id="ui-components-component-library-button-secondary-button-secondary-stories-js--default-story" />
</Canvas>

## Props

The `ButtonSecondary` accepts all props below as well as all [Box](/docs/ui-components-ui-box-box-stories-js--default-story#props) and [ButtonBase](/docs/ui-components-component-library-button-base-button-base-stories-js--default-story#props) component props

<ArgsTable of={ButtonSecondary} />

### Size

Use the `size` prop and the `SIZES` object from `./ui/helpers/constants/design-system.js` to change the size of `ButtonSecondary`. Defaults to `SIZES.MD`

Optional: `BUTTON_SIZES` from `./button-base` object can be used instead of `SIZES`.

Possible sizes include:

- `SIZES.SM` 32px
- `SIZES.MD` 40px
- `SIZES.LG` 48px

<Canvas>
  <Story id="ui-components-component-library-button-secondary-button-secondary-stories-js--size" />
</Canvas>

```jsx
import { SIZES } from '../../../helpers/constants/design-system';
import { ButtonSecondary } from '../ui/component-library/button/button-secondary/button-secondary';

<ButtonSecondary size={SIZES.SM} />
<ButtonSecondary size={SIZES.MD} />
<ButtonSecondary size={SIZES.LG} />
```

### Type

Use the `type` prop and the `BUTTON_TYPES` object from `./ui/helpers/constants/design-system.js` to change the context of `ButtonSecondary`.

<Canvas>
  <Story id="ui-components-component-library-button-secondary-button-secondary-stories-js--type" />
</Canvas>

```jsx
import { ButtonSecondary } from '../ui/component-library/button/button-secondary/button-secondary';

<ButtonSecondary>Normal</ButtonSecondary>
<ButtonSecondary danger>Danger</ButtonSecondary>
```