# RadioButton #### Description RadioButton allow you to add radiobutton #### Usage ```js import { RadioButton } from 'asc-web-components'; ``` #### Properties `` props supersede RadioButton props | Props | Type | Required | Values | Default | Description | | ---------------------- | -------- | :------: | ---------------------------- | ------- | ------------------------------------------------------------------------------------------------------ | | `value` | `string` | ✅ | - | - | Used as HTML `value` property for `` tag. Used for identification each radiobutton | `name` | `string` | ✅ | - | - | Used as HTML `name` property for `` tag. | `label` | `string` | - | - | - | Name of the radiobutton. If missed, `value` will be used | `isChecked` | `bool` | - | - | `false` | Used as HTML `checked` property for each `` tag | `isDisabled` | `bool` | - | - | `false` | Used as HTML `disabled` property for each `` tag | `onClick` | `func` | - | - | - | Allow you to handle clicking events on component