# ef-radio-button

Basic radio button

## Properties

| Property   | Attribute  | Type      | Default | Description                                      |
|------------|------------|-----------|---------|--------------------------------------------------|
| `checked`  | `checked`  | `boolean` | false   | Radio button checked state                       |
| `disabled` | `disabled` | `boolean` | false   | Set disabled state                               |
| `name`     | `name`     | `string`  | ""      | Group multiple radio buttons by assigning the same name |
| `readonly` | `readonly` | `boolean` | false   | Set readonly state                               |
| `value`    | `value`    | `string`  | ""      | Value of the radio button                        |

## Events

| Event             | Description                                      |
|-------------------|--------------------------------------------------|
| `checked-changed` | Fired when the user checks or unchecks the radio. The event is not fired if the `checked` property is changed programmatically. |
