mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
7c2f7671b0
* ButtonSecondary to TS * updating components and addressing errors * lint and snapshot updates * using Boolean conversion for className * removing ValidButtonTag type * fix text color when link --------- Co-authored-by: garrettbear <gwhisten@gmail.com>
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
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="components-componentlibrary-buttonsecondary--default-story" />
|
|
</Canvas>
|
|
|
|
## Props
|
|
|
|
<ArgsTable of={ButtonSecondary} />
|
|
|
|
### Size
|
|
|
|
Use the `size` prop and the `ButtonSecondarySize` enum from `./ui/components/component-library` to change the size of `ButtonSecondary`. Defaults to `ButtonSecondarySize.Md`
|
|
|
|
Possible sizes include:
|
|
|
|
- `ButtonSecondarySize.Sm` 32px
|
|
- `ButtonSecondarySize.Md` 40px
|
|
- `ButtonSecondarySize.Lg` 48px
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonsecondary--size-story" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { ButtonSecondary, ButtonSecondarySize } from '../../component-library';
|
|
|
|
<ButtonSecondary size={ButtonSecondarySize.Sm} />
|
|
<ButtonSecondary size={ButtonSecondarySize.Md} />
|
|
<ButtonSecondary size={ButtonSecondarySize.Lg} />
|
|
```
|
|
|
|
### Danger
|
|
|
|
Use the `danger` boolean prop to change the `ButtonSecondary` to danger color.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonsecondary--danger" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { ButtonSecondary } from '../../component-library';
|
|
<ButtonSecondary>Normal</ButtonSecondary>
|
|
<ButtonSecondary danger>Danger</ButtonSecondary>
|
|
```
|