# SortIndicator

Render sort direction affordance. A tiny little arrow doing a very important job.

## Notes

- Pair SortIndicator with a clickable header or navigation control.
- Keep sorting state and behavior outside the primitive.

## Properties

| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
| label (required) | `string` | - | Label for the sort indicator. |
| sortOrder | `'asc' | 'desc' | null` | null | Current sort order. |
| class | `string` | - | Additional CSS classes. |

## Example

```astro
<SortIndicator label="Updated" sortOrder="desc" />
```
