1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/component-library/button-primary
Garrett Bear 66292330fe
Feat/18890/button ts update (#20492)
* button to TS migration

working demo

style props

broken mapping - need switch

working types file

working types

fix dependent imports of Button

variant mapping

working types

fix lint

fix test

fix ButtonSize issue on QuizContent

box fix

test if this works

fix button being used on QuizContent

fix button_variant import

readme fix

* fix button import

* fix primary button as anchor hover

* deprecated

* button to TS migration

fix lint

fix test

* fix rebase issue

* fix rebase issue

* lint fix
2023-08-28 14:42:00 -07:00
..
__snapshots__ Feat/18889/update buttonlink ts (#20372) 2023-08-04 14:00:05 -07:00
button-primary.scss Feat/18890/button ts update (#20492) 2023-08-28 14:42:00 -07:00
button-primary.stories.tsx ButtonPrimary to TS (#20390) 2023-08-04 10:45:55 -07:00
button-primary.test.tsx ButtonPrimary to TS (#20390) 2023-08-04 10:45:55 -07:00
button-primary.tsx Updating props to optional and providing defaults (#20448) 2023-08-15 09:38:36 -07:00
button-primary.types.ts Updating props to optional and providing defaults (#20448) 2023-08-15 09:38:36 -07:00
index.ts ButtonPrimary to TS (#20390) 2023-08-04 10:45:55 -07:00
README.mdx ButtonPrimary to TS (#20390) 2023-08-04 10:45:55 -07:00

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

<ArgsTable of={ButtonPrimary} />

### Size

Use the `size` prop and the `ButtonPrimarySize` enum from `./ui/components/component-library` to change the size of `ButtonPrimary`. Defaults to `ButtonPrimarySize.Md`

Possible sizes include:

- `ButtonPrimarySize.Sm` 32px
- `ButtonPrimarySize.Md` 40px
- `ButtonPrimarySize.Lg` 48px

<Canvas>
  <Story id="components-componentlibrary-buttonprimary--size-story" />
</Canvas>

```jsx
import { ButtonPrimary, ButtonPrimarySize } from '../../component-library';

<ButtonPrimary size={ButtonPrimarySize.Sm} />
<ButtonPrimary size={ButtonPrimarySize.Md} />
<ButtonPrimary size={ButtonPrimarySize.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 '../../component-library';

<ButtonPrimary>Normal</ButtonPrimary>
<ButtonPrimary danger>Danger</ButtonPrimary>
```