Spaces:
Build error
Build error
export function CountBadge({ count }: { count: number }) { | |
return ( | |
<span className="text-[11px] leading-5 text-base bg-neutral-400 px-1 rounded-xl"> | |
{count} | |
</span> | |
); | |
} | |