@lobehub/charts
Version:
React modern charts components built on recharts
23 lines (22 loc) • 539 B
TypeScript
/// <reference types="react" />
interface FooterProps {
blockRadius: number;
blockSize: number;
colorScale: string[];
hideColorLegend?: boolean;
hideTotalCount?: boolean;
labels: {
legend: {
less: string;
more: string;
};
totalCount?: string;
};
loading: boolean;
maxLevel: number;
totalCount: number;
weekdayLabelOffset?: number;
year: number;
}
declare const Footer: import("react").NamedExoticComponent<FooterProps>;
export default Footer;