DocSpace-client/packages/asc-web-components/toggle-button/README.md
2021-02-26 00:19:45 +03:00

30 lines
1.4 KiB
Markdown

# ToggleButton
Custom toggle button input
### Usage
```js
import ToggleButton from "@appserver/components/toggle-button";
```
```jsx
<ToggleButton
label="text"
onChange={(event) => console.log(event.target.value)}
isChecked={false}
/>
```
#### Properties
| Props | Type | Required | Values | Default | Description |
| ------------ | :----------------: | :------: | :----: | :-----: | -------------------------------------------------------------- |
| `className` | `string` | - | - | - | Class name |
| `id` | `string`, `number` | - | - | - | Set component id |
| `isChecked` | `bool` | - | - | - | The checked property sets the checked state of a ToggleButton. |
| `isDisabled` | `bool` | - | - | - | Disables the ToggleButton |
| `label` | `string` | - | - | - | Label of the input |
| `onChange` | `func` | ✅ | - | - | Will be triggered whenever an ToggleButton is clicked |
| `style` | `obj`, `array` | - | - | - | Accepts css style |