Files
2024-07-30 16:28:38 +08:00

13 lines
290 B
TypeScript

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