Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / pass / components / Layout / Dropdown / CountLabel.tsx
blob019819ee8e71b9fc4121a5f565ecd220e5195beb
1 import type { FC } from 'react';
3 type Props = { label: string; count: number };
5 export const CountLabel: FC<Props> = ({ label, count }) => (
6     <>
7         <span className="block text-ellipsis">{label}</span>
8         <span className="shrink-0 color-weak">({count})</span>
9     </>