File size: 204 Bytes
246d201
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export function CountBadge({ count }: { count: number }) {
  return (
    <span className="text-[11px] leading-5 text-root-primary bg-neutral-400 px-1 rounded-xl">

      {count}

    </span>
  );
}