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);
12 export type PlanFeaturesType = {
13 [key in FeatureKeys]: FeatureType[];