1 import type { FC } from 'react';
3 import { Icon } from '@proton/components';
4 import { PromotionButton } from '@proton/components/components/button/PromotionButton';
5 import type { PromotionButtonProps } from '@proton/components/components/button/PromotionButton/PromotionButton';
6 import clsx from '@proton/utils/clsx';
8 import './PassPlusPromotionButton.scss';
10 type Props = Omit<PromotionButtonProps<'span'>, 'size'>;
12 export const PassPlusPromotionButton: FC<Props> = ({ className, ...props }) => (
14 iconName="brand-proton-pass-filled"
20 className={clsx('pass-promo--button', className, 'flex items-center')}
24 '--upgrade-color-stop-1': '#fcd38d',
25 '--upgrade-color-stop-2': '#9834ff',
28 <Icon name="plus" size={2.5} className="mb-0.5" />