1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/components/ui/button-group
2022-01-06 11:35:49 -06:00
..
button-group-component.test.js remove the ui/app and ui/lib folders (#10911) 2021-04-28 14:53:59 -05:00
button-group.component.js Fix button-group.stories for new Storybook documentation (#12621) 2021-11-24 13:46:45 -08:00
button-group.stories.js Fix button-group.stories for new Storybook documentation (#12621) 2021-11-24 13:46:45 -08:00
index.js remove the ui/app and ui/lib folders (#10911) 2021-04-28 14:53:59 -05:00
index.scss Dark Mode Part 1: Switch to Using CSS Variables (#13147) 2022-01-06 11:35:49 -06:00
README.mdx Fix button-group.stories for new Storybook documentation (#12621) 2021-11-24 13:46:45 -08:00

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import ButtonGroup from '.';

# Button Group

Button Group is a wrapper for buttons to align them horizontally

<Canvas>
  <Story id="ui-components-ui-button-group-button-group-stories-js--default-story" />
</Canvas>

## Component API

<ArgsTable of={ButtonGroup} />

### With Disabled Button

By changing the `disabled` value to true, the buttons inside the button group component will be disabled

```jsx
<ButtonGroup disabled>
  <button>cheap</button>
  <button>average</button>
  <button>fast</button>
</ButtonGroup>
```

<Canvas>
  <Story id="ui-components-ui-button-group-button-group-stories-js--with-disabled-button" />
</Canvas>

### With Radio Button

Rendering radio type button instead

```jsx
<ButtonGroup variant="radiogroup">
  <button>cheap</button>
  <button>average</button>
  <button>fast</button>
</ButtonGroup>
```

<Canvas>
  <Story id="ui-components-ui-button-group-button-group-stories-js--with-radio-button" />
</Canvas>

### No Active Button

Rendering button group without active button

```jsx
<ButtonGroup noButtonActiveByDefault>
  <button>cheap</button>
  <button>average</button>
  <button>fast</button>
</ButtonGroup>
```

<Canvas>
  <Story id="ui-components-ui-button-group-button-group-stories-js--no-active-button" />
</Canvas>