UNPKG

analytica-frontend-lib

Version:

Repositório público dos componentes utilizados nas plataformas da Analytica Ensino

21 lines 796 B
import type { VerticalBarChartProps } from '../components/VerticalBarChart/interfaces'; export type { VerticalBarChartDataItem, VerticalBarChartProps, } from '../components/VerticalBarChart/interfaces'; /** * VerticalBarChart component - displays a vertical bar chart with bars going upward. * * @example * ```tsx * <VerticalBarChart * data={[ * { label: 'SEG', value: 150 }, * { label: 'TER', value: 200 }, * { label: 'QUA', value: 100 }, * ]} * title="Atividades por período" * barColor="#4a7c59" * /> * ``` */ export declare const VerticalBarChart: ({ data, title, chartHeight, barColor, className, ...props }: VerticalBarChartProps) => import("react/jsx-runtime").JSX.Element; export default VerticalBarChart; //# sourceMappingURL=VerticalBarChart.d.ts.map