# IToggleOption

## Definition

```tsx
interface IToggleOption {
    /**
     * The text shown to the user for this option
     */
    label: string,

    /**
     * The actual value stored when this option is selected
     */
    value: string
}
```

## Usage

```tsx
import { IToggleOption } from 'uxp/components';
```
