mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +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> |
||
---|---|---|
.. | ||
button-secondary.constants.js | ||
button-secondary.js | ||
button-secondary.scss | ||
button-secondary.stories.js | ||
button-secondary.test.js | ||
index.js | ||
README.mdx |
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} /> ``` ### Danger Use the `danger` boolean prop to change the `ButtonPrimary` to danger color. <Canvas> <Story id="ui-components-component-library-button-secondary-button-secondary-stories-js--danger" /> </Canvas> ```jsx import { ButtonSecondary } from '../ui/component-library/button/button-secondary/button-secondary'; <ButtonSecondary>Normal</ButtonSecondary> <ButtonSecondary danger>Danger</ButtonSecondary> ```