Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / pass / components / Upsell / PassPlusIcon.tsx
blob6189efe1c67986a6f63606a6fbed8ea4ec0a8d71
1 import type { FC } from 'react';
3 import { Icon } from '@proton/components/index';
4 import clsx from '@proton/utils/clsx';
6 type Props = { className?: string };
8 export const PassPlusIcon: FC<Props> = ({ className }) => (
9     <span className={clsx('flex items-center flex-nowrap', className)}>
10         <Icon name="brand-proton-pass-filled" size={3} className="mt-0.5 mr-0.5" />
11         <span>+</span>
12     </span>