# UIControlElementOption

***

An option to display in a control element.

Control elements are elements that allow the user to select one or more values from a list of options. This includes:

* [UIRadioGroupElement](https://developers.felt.com/js-sdk-api-reference/ui/uiradiogroupelement)
* [UICheckboxGroupElement](https://developers.felt.com/js-sdk-api-reference/ui/uicheckboxgroupelement)
* [UIToggleGroupElement](https://developers.felt.com/js-sdk-api-reference/ui/uitogglegroupelement)
* [UISelectElement](https://developers.felt.com/js-sdk-api-reference/ui/uiselectelement)

The option can be disabled by setting the `disabled` property to `true`.

## Examples

```typescript
{ label: "Option A", value: "optionA" }
```

A disabled option

```typescript
{ label: "Option A", value: "optionA", disabled: true }
```

## Properties

### label

> **label**: `string`

***

### value

> **value**: `string`

***

### disabled?

> `optional` **disabled**: `boolean`
