@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
14 lines (13 loc) • 619 B
TypeScript
import * as React from "react";
import { WrappedComponentProps } from "react-intl";
export interface ILegendAxisIndicatorProps {
labelKey: string;
data: string[];
width?: number;
}
export declare class LegendAxisIndicatorClass extends React.PureComponent<ILegendAxisIndicatorProps & WrappedComponentProps> {
render(): JSX.Element;
}
export declare const LegendAxisIndicator: React.FunctionComponent<import("react-intl").WithIntlProps<ILegendAxisIndicatorProps & WrappedComponentProps<"intl">>> & {
WrappedComponent: React.ComponentType<ILegendAxisIndicatorProps & WrappedComponentProps<"intl">>;
};