UNPKG

react-sparklines-ts

Version:

Beautiful and expressive Sparklines component for React (continued)

13 lines (12 loc) 387 B
export type SparklinesReferenceLineProps = { type?: "custom"; value: number; } & { type?: "max" | "min" | "mean" | "avg" | "median"; style?: { stroke?: string; strokeOpacity?: number; strokeDasharray?: string; }; }; export default function SparklinesReferenceLine(props: SparklinesReferenceLineProps): import("react/jsx-runtime").JSX.Element;