@theaimegroup/aime-component-library
Version:
AIME Component Library
13 lines (12 loc) • 361 B
TypeScript
interface PieComponentProps {
componentName?: string;
title?: string;
titleFontColor?: string;
titleFontSize?: string;
titleFontWeight?: string;
radius?: number;
table_name: string;
data_columns: string[];
}
declare function PieChartComponent(props: PieComponentProps): JSX.Element;
export default PieChartComponent;