Backup-bdg's picture
Upload 565 files
b59aa07 verified
raw
history blame
189 Bytes
export function CountBadge({ count }: { count: number }) {
return (
<span className="text-[11px] leading-5 text-base bg-neutral-400 px-1 rounded-xl">
{count}
</span>
);
}