@theaimegroup/aime-component-library
Version:
AIME Component Library
21 lines (20 loc) • 565 B
TypeScript
interface dashboardCardProps {
iconURL?: string;
title?: string;
subtitle?: string;
titleAboveIndicator?: boolean;
titleFontSize?: string;
indicatorFontSize?: string;
fontFamily?: string;
fontColor?: string;
tableName: string;
columnName: string;
dateColumnName?: string;
dateFrom?: string;
dateTo?: string;
aggregateType?: string;
primaryColor?: string;
secondaryColor?: string;
}
export declare function DashboardAggregateCard(props: dashboardCardProps): JSX.Element;
export {};