UNPKG

@theaimegroup/aime-component-library

Version:

AIME Component Library

17 lines (16 loc) 468 B
export interface LineComponentProps { componentName: string; title?: string; titleFontColor?: string; titleFontSize?: string; titleFontWeight?: string; table_name: string; data_columns: string[]; showLegend?: boolean; width: number; height: number; lineColor: string; strokeWidth?: number; } declare function LineChartComponent(props: LineComponentProps): JSX.Element; export default LineChartComponent;