Astro components
Status
A status indicator dot.
A pulsing dot indicator used to show system status (e.g., Online, Offline).
Usage
---
import Status from '@/components/Status.astro';
---
<Status status="online" />
<Status status="offline" />
<Status status="maintenance" />Props
| Prop | Type | Default | Description |
|---|---|---|---|
status | 'online' | 'offline' | 'maintenance' | - | The status to indicate. Changes the color of the dot. |
class | string | - | Additional CSS classes. |