sourcebot/packages/web/src/app/[domain]/components/notificationDot.tsx
2025-10-28 20:27:35 -07:00

9 lines
No EOL
250 B
TypeScript

import { cn } from "@/lib/utils"
interface NotificationDotProps {
className?: string
}
export const NotificationDot = ({ className }: NotificationDotProps) => {
return <div className={cn("w-2 h-2 rounded-full bg-green-600", className)} />
}