Files
yaak/src-web/components/core/CountBadge.tsx
2023-04-01 23:43:22 -07:00

13 lines
250 B
TypeScript

interface Props {
count: number;
}
export function CountBadge({ count }: Props) {
if (count === 0) return null;
return (
<div aria-hidden className="opacity-80 text-2xs border rounded px-1 mb-0.5 ml-1 h-4">
{count}
</div>
);
}