1 import type { FC } from 'react';
3 type Props = { label: string; count: number };
5 export const CountLabel: FC<Props> = ({ label, count }) => (
7 <span className="block text-ellipsis">{label}</span>
8 <span className="shrink-0 color-weak">({count})</span>