UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 254 B
import { ComponentProps } from "react"; export interface LegendItem { name: string; value: number | string | undefined; } export type EbayChartLegendProps = ComponentProps<"div"> & { items: LegendItem[]; }; //# sourceMappingURL=types.d.ts.map