> For the complete documentation index, see [llms.txt](https://help.iviva.com/uxp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.iviva.com/uxp/types/itoggleoption.md).

# IToggleOption

```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';
```
