UNPKG

react-sparklines-ts

Version:

Beautiful and expressive Sparklines component for React (continued)

12 lines (11 loc) 373 B
import { type CSSProperties } from "react"; export type SparklinesLineProps = { color?: string; style?: CSSProperties; tooltips?: boolean; onMouseMove?: (type: string, data: number, point: { x: number; y: number; }) => void; }; export default function SparklinesLine(props: SparklinesLineProps): import("react/jsx-runtime").JSX.Element;