@useloops/design-system
Version:
The official React based Loops design system
36 lines (34 loc) • 800 B
TypeScript
interface PlanHeading {
heading: string;
pricing: string;
}
interface PlanRow {
heading: string;
description: string;
tier1: string;
tier2: string;
tier3: string;
tier4: string;
}
interface PlanFeatureTableData {
headings: {
'01-tier1': PlanHeading;
'02-tier2': PlanHeading;
'03-tier3': PlanHeading;
'04-tier4': PlanHeading;
};
rows: {
'01-servicing': PlanRow;
'02-respondents': PlanRow;
'03-questions': PlanRow;
'04-ai': PlanRow;
'05-demographics': PlanRow;
'06-training': PlanRow;
'07-invite': PlanRow;
'08-email': PlanRow;
'09-beta': PlanRow;
'10-sso': PlanRow;
'11-minimum': PlanRow;
};
}
export type { PlanFeatureTableData };