addind dashboard features will come back to finish

This commit is contained in:
2025-11-21 08:55:23 +00:00
parent 8284b1dd11
commit 25a744bd8d
7 changed files with 43 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
import clsx from "clsx";
type StatusIndicatorsProps = { status: string };
const StatusIndicators = ({ status }: StatusIndicatorsProps) => {
return <span className={clsx(`flex w-3 h-3 me-2 rounded-full`, status)}></span>;
};
export default StatusIndicators;