UNPKG

@amaui/ui-react

Version:
10 lines (9 loc) 266 B
import React from 'react'; import { IChart } from '../Chart/Chart'; export interface IAreaChart extends IChart { smooth?: boolean; smoothRatio?: number; linearGradient?: boolean; } declare const AreaChart: React.FC<IAreaChart>; export default AreaChart;