mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-19 07:53:54 +01:00
15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
interface Props {
|
|
count: number;
|
|
}
|
|
|
|
export function CountBadge({ count }: Props) {
|
|
if (count === 0) return null;
|
|
return (
|
|
<>
|
|
<div aria-hidden className="opacity-70 text-3xs rounded mb-0.5 ml-1 h-4 font-mono">
|
|
{count}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|