react-native-gifted-charts
Version:
The most complete library for Bar, Line, Area, Pie, Donut, Stacked Bar, Population Pyramid, Radar and Bubble charts in React Native. Allows 2D, 3D, gradient, animations and live data updates.
15 lines (14 loc) • 357 B
TypeScript
import { ColorValue } from 'react-native';
type ruleProps = {
thickness: number;
width: number;
color: ColorValue | string | any;
type: string;
dashWidth: number;
dashGap: number;
};
type configType = {
config: ruleProps;
};
declare function Rule(props: configType): import("react/jsx-runtime").JSX.Element;
export default Rule;