UNPKG

@nivo/circle-packing

Version:
10 lines 999 B
import { Ref, ReactElement } from 'react'; import { WithChartRef } from '@nivo/core'; import { CirclePackingHtmlProps } from './types'; type InnerCirclePackingHtmlProps<Datum> = Omit<CirclePackingHtmlProps<Datum>, 'animate' | 'motionConfig'> & { forwardedRef: Ref<HTMLDivElement>; }; export declare const InnerCirclePackingHtml: <Datum>({ data, id, value, valueFormat, width, height, margin: partialMargin, padding, leavesOnly, colors, colorBy, inheritColorFromParent, childColor, borderWidth, borderColor, circleComponent, enableLabels, label, labelsFilter, labelsSkipRadius, labelTextColor, labelComponent, layers, isInteractive, onMouseEnter, onMouseMove, onMouseLeave, onClick, tooltip, zoomedId, role, forwardedRef, }: InnerCirclePackingHtmlProps<Datum>) => import("react/jsx-runtime").JSX.Element; export declare const CirclePackingHtml: <Datum>(props: WithChartRef<CirclePackingHtmlProps<Datum>, HTMLDivElement>) => ReactElement; export {}; //# sourceMappingURL=CirclePackingHtml.d.ts.map