mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
a28d727caf
* add button component * add all button props * update tests * add button type prop * fix base button size const * add href prop to button base * Update ui/components/component-library/button/README.mdx Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/button/README.mdx Co-authored-by: George Marshall <george.marshall@consensys.net> * update tests * Update ui/components/component-library/button-primary/button-primary.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/button/README.mdx Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/button/button.stories.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/button/button.js Co-authored-by: George Marshall <george.marshall@consensys.net> * Update ui/components/component-library/button/button.stories.js Co-authored-by: George Marshall <george.marshall@consensys.net> * update button props on readme * linting issue fix Co-authored-by: George Marshall <george.marshall@consensys.net>
58 lines
1.7 KiB
Plaintext
58 lines
1.7 KiB
Plaintext
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/component-library/button/button-primary/button-primary';
|
|
|
|
<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/component-library/button/button-primary/button-primary';
|
|
|
|
<ButtonPrimary>Normal</ButtonPrimary>
|
|
<ButtonPrimary danger>Danger</ButtonPrimary>
|
|
```
|