react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
9 lines • 351 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