react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
15 lines (14 loc) • 354 B
TypeScript
import React from 'react';
import { LineProps } from 'react-native-svg';
export type CandlestickChartLineProps = Omit<LineProps, 'x' | 'y'> & {
color?: string;
x: number;
y: number;
};
export declare const CandlestickChartLine: ({
color,
x,
y,
...props
}: CandlestickChartLineProps) => React.JSX.Element;
//# sourceMappingURL=Line.d.ts.map