import { Badge, Indicator, Tooltip } from "@mantine/core" import { Constants } from "app/constants" import { tss } from "tss" const useStyles = tss.create(() => ({ badge: { width: "3.2rem", cursor: "pointer", }, })) export function UnreadCount(props: { unreadCount: number, newMessages: boolean | undefined }) { const { classes } = useStyles() if (props.unreadCount <= 0) return null const count = props.unreadCount >= 10000 ? "10k+" : props.unreadCount return ( {count} ) }