Files
2025-06-24 19:31:34 +08:00

19 lines
337 B
TypeScript

import { cn } from "@/lib/utils";
export default function StatusDot({
status,
color = "bg-green-500",
}: {
status: number;
color?: string;
}) {
return (
<div
className={cn(
"h-[9px] w-[9px] animate-pulse rounded-full",
status === 1 ? color : "bg-yellow-500",
)}
/>
);
}