Files
Aiq-Lite-UI/src/components/ui/StatusIndicator.tsx
Toba Ojo 97818ca8d9 - Add SystemOverview component and related hooks;
- update Dashboard layout and introduce new UI components
2026-01-07 16:18:14 +00:00

10 lines
258 B
TypeScript

import clsx from "clsx";
type StatusIndicatorProps = { status: string };
const StatusIndicator = ({ status }: StatusIndicatorProps) => {
return <span className={clsx(`flex w-3 h-3 me-2 rounded-full`, status)}></span>;
};
export default StatusIndicator;