UNPKG

react-sparklines-ts

Version:

Beautiful and expressive Sparklines component for React (continued)

11 lines (10 loc) 332 B
import type { SVGCSSProperties } from "./Sparklines"; export type SparklinesBarsProps = { style: SVGCSSProperties; barWidth?: number; onMouseMove?: (p: { x: number; y: number; }) => void; }; export default function SparklinesBars(props: SparklinesBarsProps): import("react/jsx-runtime").JSX.Element;