Sequence
docs
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

PropTypeDefaultDescription
status'online' | 'offline' | 'maintenance'-The status to indicate. Changes the color of the dot.
classstring-Additional CSS classes.

On this page