@useloops/design-system
Version:
The official React based Loops design system
26 lines (23 loc) • 865 B
TypeScript
import { FunctionComponent } from 'react';
import { PlanFeatureTableData } from './PlanFeatureTableData.js';
interface PlanFeatureTableProps {
currencySymbol: string;
data?: PlanFeatureTableData;
loading?: boolean;
tier1MinimumTerm: string;
tier1Price: number | string;
tier1QuestionLimit: number | string;
tier1RespondentPrice: number | string;
tier2MinimumTerm: string;
tier2Price: number | string;
tier2QuestionLimit: number | string;
tier2RespondentPrice: number | string;
tier4MinimumTerm: string;
tier4Price: number | string;
tier4QuestionLimit: number | string;
tier4RespondentPrice: number | string;
variation?: 'default' | 'platform';
}
declare const PlanFeatureTable: FunctionComponent<PlanFeatureTableProps>;
export { PlanFeatureTable as default };
export type { PlanFeatureTableProps };