1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/component-library/button-primary
2023-01-17 05:52:04 -07:00
..
__snapshots__ Feat/16637/button housekeeping (#16872) 2023-01-13 13:58:09 -08:00
button-primary.constants.js 15090: add primary button (#16079) 2022-10-05 21:51:02 -07:00
button-primary.js Feat/16637/button housekeeping (#16872) 2023-01-13 13:58:09 -08:00
button-primary.scss Feat/16637/button housekeeping (#16872) 2023-01-13 13:58:09 -08:00
button-primary.stories.js Removing erroneous blank lines in ui/components (#17225) 2023-01-17 05:52:04 -07:00
button-primary.test.js Feat/16637/button housekeeping (#16872) 2023-01-13 13:58:09 -08:00
index.js button secondary housekeeping (#16495) 2022-11-15 12:48:24 -08:00
README.mdx Component library adding global index and other housekeeping (#16441) 2022-11-16 14:15:08 -08:00

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

import { ButtonPrimary } from './button-primary';

# ButtonPrimary

The `ButtonPrimary` is an extension of `ButtonBase` to support primary styles.

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

## Props

The `ButtonPrimary` 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={ButtonPrimary} />

### Size

Use the `size` prop and the `SIZES` object from `./ui/helpers/constants/design-system.js` to change the size of `ButtonPrimary`. 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-primary-button-primary-stories-js--size" />
</Canvas>

```jsx
import { SIZES } from '../../../helpers/constants/design-system';
import { ButtonPrimary } from '../../ui/components/component-library';

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

### Danger

Use the `danger` boolean prop to change the `ButtonPrimary` to danger color.

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

```jsx
import { ButtonPrimary } from '../../ui/components/component-library';

<ButtonPrimary>Normal</ButtonPrimary>
<ButtonPrimary danger>Danger</ButtonPrimary>
```