zzz / frontend /src /components /layout /count-badge.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame
204 Bytes
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>
);
}