mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
c5368c152b
* added storybook test runner * added test runner in ci * updated test for ci and fixed lint error * updated lavamoat policy * updated test command * updated playwright * changed command to storybook;ci * updated command * updated instance for test-storybook * updated playwright * added playwright step * replaced concurrently with start-server-and-test * updated the static storybook directory * replaced first with last * updated lock file * replaced first with last * updated test-storybook with maxworkers * updated .depchechrc * updated yml * removed id from banner base * replaced broken stories with .stories-to-do.js extesnsion * updated token allowance story * removed duplicacies from yarn * fixed lavamoat * removed filename comment * updated links for docs * fixed file extension for stories * updated path for stories.json * updated stories.json path * yarn updated * updated stories * updated yarn * updated wait on
74 lines
1.8 KiB
Plaintext
74 lines
1.8 KiB
Plaintext
import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';
|
|
|
|
import { ButtonLink } from './button-link';
|
|
|
|
# ButtonLink
|
|
|
|
The `ButtonLink` is an extension of `ButtonBase` to support link styles.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonlink--default-story" />
|
|
</Canvas>
|
|
|
|
## Props
|
|
|
|
The `ButtonLink` 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={ButtonLink} />
|
|
|
|
### Size
|
|
|
|
Use the `size` prop and the `SIZES` object from `./ui/helpers/constants/design-system.js` to change the size of `ButtonLink`. Defaults to `SIZES.MD`
|
|
|
|
Optional: `BUTTON_SIZES` from `./button-base` object can be used instead of `SIZES`.
|
|
|
|
Possible sizes include:
|
|
|
|
- `SIZES.AUTO` inherits the font-size of the parent element.
|
|
- `SIZES.SM` 32px
|
|
- `SIZES.MD` 40px
|
|
- `SIZES.LG` 48px
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonlink--size" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { SIZES } from '../../../helpers/constants/design-system';
|
|
import { ButtonLink } from '../../component-library';
|
|
|
|
<ButtonLink size={SIZES.AUTO} />
|
|
<ButtonLink size={SIZES.SM} />
|
|
<ButtonLink size={SIZES.MD} />
|
|
<ButtonLink size={SIZES.LG} />
|
|
```
|
|
|
|
### Danger
|
|
|
|
Use the `danger` boolean prop to change the `ButtonLink` to danger color.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonlink--danger" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { ButtonLink } from '../../component-library';
|
|
|
|
<ButtonLink>Normal</ButtonLink>
|
|
<ButtonLink danger>Danger</ButtonLink>
|
|
```
|
|
|
|
### Href
|
|
|
|
When an `href` prop is passed it will change the element to an anchor(`a`) tag.
|
|
|
|
<Canvas>
|
|
<Story id="components-componentlibrary-buttonlink--href" />
|
|
</Canvas>
|
|
|
|
```jsx
|
|
import { ButtonLink } from '../../component-library';
|
|
|
|
<ButtonLink href="/">Anchor Element</ButtonLink>;
|
|
```
|