react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
20 lines (19 loc) • 470 B
TypeScript
import React from 'react';
import { ViewProps } from 'react-native';
export declare const CandlestickChartDimensionsContext: React.Context<{
width: number;
height: number;
}>;
type CandlestickChartProps = ViewProps & {
children: React.ReactNode;
width?: number;
height?: number;
};
export declare function CandlestickChart({
children,
width,
height,
...props
}: CandlestickChartProps): React.JSX.Element;
export {};
//# sourceMappingURL=Chart.d.ts.map