import { cn } from "@/src/utils/tailwind"; import { MessageCircleMore } from "lucide-react"; export function CommentCountIcon({ count }: { count?: number }) { if (!count) return null; return ( {count > 99 ? "99+" : count} ); }