react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
13 lines • 612 B
TypeScript
import React from 'react';
import type { TextProps as RNTextProps } from 'react-native';
import type Animated from 'react-native-reanimated';
import type { TFormatterFn, TPriceType } from './types';
export type CandlestickChartPriceTextProps = {
format?: TFormatterFn<string>;
precision?: number;
variant?: 'formatted' | 'value';
type?: TPriceType;
style?: Animated.AnimateProps<RNTextProps>['style'];
};
export declare function CandlestickChartPriceText({ format, precision, variant, type, style, }: CandlestickChartPriceTextProps): React.JSX.Element;
//# sourceMappingURL=PriceText.d.ts.map