mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
9 lines
No EOL
250 B
TypeScript
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)} />
|
|
} |