analytica-frontend-lib
Version:
Repositório público dos componentes utilizados nas plataformas da Analytica Ensino
12 lines • 424 B
TypeScript
import type { LegendItem } from './Legend';
export interface BarChartValue {
itemId: string;
percentage: number;
}
export interface BarChartRowProps {
readonly label: string;
readonly values: BarChartValue[];
readonly items: LegendItem[];
}
export declare function BarChartRow({ label, values, items }: BarChartRowProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=BarChartRow.d.ts.map