react-native-wagmi-charts
Version:
A sweet candlestick chart for React Native
16 lines • 621 B
TypeScript
import * as React from 'react';
import { AnimatedProps } from 'react-native-reanimated';
import { PathProps } from 'react-native-svg';
export type LineChartColorProps = AnimatedProps<PathProps> & {
color?: string;
from: number;
to: number;
showInactiveColor?: boolean;
inactiveColor?: string;
width?: number;
};
export declare function LineChartHighlight({ color, inactiveColor, showInactiveColor, from, to, width: strokeWidth, ...props }: LineChartColorProps): React.JSX.Element;
export declare namespace LineChartHighlight {
var displayName: string;
}
//# sourceMappingURL=Highlight.d.ts.map