addind dashboard features will come back to finish
This commit is contained in:
9
src/ui/StatusIndicators.tsx
Normal file
9
src/ui/StatusIndicators.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user