UNPKG

@formant/ava-react

Version:

React components of AVA.

17 lines (16 loc) 440 B
import React from 'react'; import { G2Spec } from '@antv/g2'; export interface IThemeConfig { name: string; colors: { [key: string]: string; }; backgroundImage: string; defaultTheme: "light" | "dark"; } export declare const getSelectedColorSetFromStorage: () => string; export declare const G2Chart: ({ spec, height, width }: { spec: G2Spec; height?: number; width?: number; }) => React.JSX.Element;