@lobehub/charts
Version:
React modern charts components built on recharts
11 lines (10 loc) • 313 B
TypeScript
/// <reference types="react" />
export interface LegendItemProps {
activeLegend?: string;
color: string;
label: string;
name: string;
onClick?: (name: string, color: string) => void;
}
declare const LegendItem: import("react").NamedExoticComponent<LegendItemProps>;
export default LegendItem;