react-native-chart-kit
Version:
Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.
12 lines • 1.08 kB
TypeScript
import "./ensureConsole";
import type { SvgCircleProps, SvgDefsProps, SvgGroupProps, SvgHitRegionProps, SvgLineProps, SvgPathProps, SvgRectProps, SvgSurfaceProps, SvgTextProps } from "./types";
export declare const SvgSurface: ({ children, width, height, ...props }: SvgSurfaceProps) => import("react").JSX.Element;
export declare const SvgGroup: ({ children, ...props }: SvgGroupProps) => import("react").JSX.Element;
export declare const SvgPath: (props: SvgPathProps) => import("react").JSX.Element;
export declare const SvgRect: (props: SvgRectProps) => import("react").JSX.Element;
export declare const SvgHitRegion: (props: SvgHitRegionProps) => import("react").JSX.Element;
export declare const SvgCircle: (props: SvgCircleProps) => import("react").JSX.Element;
export declare const SvgText: ({ children, ...props }: SvgTextProps) => import("react").JSX.Element;
export declare const SvgLine: (props: SvgLineProps) => import("react").JSX.Element;
export declare const SvgDefs: ({ children }: SvgDefsProps) => import("react").JSX.Element;
//# sourceMappingURL=primitives.d.ts.map