mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
.. | ||
__snapshots__ | ||
button-primary.constants.js | ||
button-primary.js | ||
button-primary.scss | ||
button-primary.stories.js | ||
button-primary.test.js | ||
index.js | ||
README.mdx |
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="components-componentlibrary-buttonprimary--default-story" /> </Canvas> ## Props The `ButtonPrimary` accepts all props below as well as all [Box](/docs/components-ui-box--default-story#props) and [ButtonBase](/docs/components-componentlibrary-buttonbase--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="components-componentlibrary-buttonprimary--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="components-componentlibrary-buttonprimary--danger" /> </Canvas> ```jsx import { ButtonPrimary } from '../../ui/components/component-library'; <ButtonPrimary>Normal</ButtonPrimary> <ButtonPrimary danger>Danger</ButtonPrimary> ```