UNPKG

@vtex/styleguide

Version:

> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))

10 lines (9 loc) 292 B
import { FC } from 'react'; import { TooltipFormatter } from 'recharts'; import { LineProps, BaseChartProps } from '../types'; interface Props { tooltipFormatter: TooltipFormatter; lineProps: LineProps; } declare const LineChart: FC<Props & BaseChartProps>; export default LineChart;