UNPKG

@apptane/react-ui-charts

Version:
9 lines (8 loc) 535 B
import { DomainXValue, DomainYValue } from "../common/Types.js"; import { XYZDatumEx } from "./commonXYZ.js"; export declare type XYBubbleLayerProps<X extends DomainXValue, Y extends DomainYValue, Data = void> = { componentId: string; data: XYZDatumEx<X, Y, Data>[]; offset: number; }; export declare function XYBubbleLayer<X extends DomainXValue, Y extends DomainYValue, Data = void>({ componentId, data, offset, }: XYBubbleLayerProps<X, Y, Data>): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element;