# SbSelectOption
An option item for use within **SbSimpleSelect**. Must be used as a child of SbSimpleSelect; it registers itself and does not render visible markup on its own.
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| Value | TValue? | null | The value of this option (must match SbSimpleSelect TValue) |
| ChildContent | RenderFragment? | null | Display content for the option (text or markup) |
| Disabled | bool | false | Whether this option is disabled and not selectable |
## CSS Classes
- `sb-select-option` - Base class
- `sb-select-option--selected` - Selected state
- `sb-select-option--disabled` - Disabled state
## Accessibility
- Uses `role="option"`
- `aria-selected` indicates selection state
## Examples
### Basic Usage
See [SbSimpleSelect](./SbSimpleSelect.md) for complete examples.
```razor
Red
Green
Blue
```
### With Rich Content (ChildContent)
```razor
Low Priority
Medium Priority
High Priority
```
### Disabled Option
```razor
Temporarily Unavailable
```