UNPKG

digitinary-ui

Version:

Digitinary UI Library

21 lines (20 loc) 442 B
import React from 'react'; import './style.scss'; type DataItem = { name: string; value: number; color: string; }; type BarChartProps = { data: DataItem[]; className?: string; barSize: number; width: number; height: number; selectedItem?: string; yAxisFontSize?: string; xAxisFontSize?: string; yAxisOffset?: number; }; declare const BarChart: React.FC<BarChartProps>; export default BarChart;