UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

19 lines (18 loc) 818 B
/// <reference types="hoist-non-react-statics" /> import React from 'react'; import BasicComponent from '../../../../../components/Base/BasicComponent'; import { IFontStyle } from '../../../../../constants/chart-style'; interface ITitle extends IFontStyle { text: string | number; } interface IInnerTitleProps { top: string | number; left: string | number; title?: ITitle; subTitle?: ITitle; } export declare class InnerTitle extends BasicComponent<IInnerTitleProps, {}> { render(): React.JSX.Element | null; } declare const _default: React.ComponentClass<IInnerTitleProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IInnerTitleProps, any> & typeof InnerTitle) | (React.FunctionComponent<IInnerTitleProps> & typeof InnerTitle), {}>; export default _default;