Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / packages / pass / components / Upsell / types.ts
blob468077afc56d65b2f2447a1c86937e36e9eb82f5
1 import type { ReactNode } from 'react';
3 import type { IconName } from '@proton/components';
5 type FeatureKeys = 'individuals' | 'business';
7 export type FeatureType = {
8     icon?: IconName | (() => ReactNode);
9     label: string;
12 export type PlanFeaturesType = {
13     [key in FeatureKeys]: FeatureType[];