10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
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;
|