UNPKG

simple-bubble-chart

Version:

Simple bubble chart library

13 lines (12 loc) 416 B
import React, { MouseEventHandler } from "react"; export interface BubbleProps { onClick: MouseEventHandler; title: string; titleColor: string; subTitle: string; subTitleColor: string; size: number; backgroundColor: string; } declare const Bubble: ({ onClick, title, titleColor, subTitle, subTitleColor, size, backgroundColor, }: BubbleProps) => React.JSX.Element; export default Bubble;