# Toast

A non-blocking notification overlay. The polite whisper that tells you something just happened.

## Notes

- Use Toast for brief, non-blocking feedback.
- Trigger toasts via window.snurbleToast.show({ message: '...' }).
- Toasts automatically dismiss after a duration.

## Properties

| Name | Type | Default | Description |
| ---- | ---- | ------- | ----------- |
| position | `'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'` | 'bottom-right' | The screen position for toasts. |
| class | `string` | - | Additional CSS classes. |

## Example

```astro
<Toast position="bottom-right" />
```
