UNPKG

simple-bubble-chart

Version:

Simple bubble chart library

11 lines (10 loc) 365 B
import React from "react"; import { BubbleProps } from "./Bubble"; interface BubbleChartContainerProps { data: BubbleProps[]; height: number; width: number; bubbleSizeIncrease: number; } declare function SimpleBubbleChart({ data, height, width, bubbleSizeIncrease, }: BubbleChartContainerProps): React.JSX.Element; export default SimpleBubbleChart;