sourcebot/packages/web/src/app/[domain]/components/notificationDot.tsx

9 lines
250 B
TypeScript
Raw Normal View History

2025-10-29 00:21:59 +00:00
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)} />
}