import { Circle, CircleMinus, Moon } from "lucide-react"; export function OnlineStatus({ status, ...props }: React.ComponentProps<"div"> & { status: "online" | "dnd" | "idle" | "offline"; }) { return (
{status === "online" && } {status === "dnd" && } {status === "idle" && } {status === "offline" && }
); }