UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

14 lines 630 B
/// <reference types="react" /> import { ChartScale, NumericChartScale } from '../internal/components/cartesian-chart/scales'; import { MixedLineBarChartProps } from './interfaces'; interface LineSeriesProps<T> { axis: 'x' | 'y'; series: MixedLineBarChartProps.LineDataSeries<T> | MixedLineBarChartProps.ThresholdSeries<T>; color: string; chartAreaClipPath: string; xScale: ChartScale; yScale: NumericChartScale; } export default function LineSeries<T>({ axis, series, color, xScale, yScale, chartAreaClipPath }: LineSeriesProps<T>): JSX.Element | null; export {}; //# sourceMappingURL=line-series.d.ts.map