import type { HTMLAttributes, ReactNode } from "react"; export type CountBadgeProps = HTMLAttributes & { children: ReactNode; tone?: "accent" | "neutral" | "danger"; size?: "compact" | "default"; }; export default function CountBadge({ children, tone = "accent", size = "default", className = "", ...props }: CountBadgeProps) { return ( {children} ); }