Stats with Paint.
// <Paint/> lets you draw connections between dom elements...interface Props {/** Line width */weigth?: number;/** Color */fill?: string;color?: string;/** Adjustments */transforms?: string;/** Spacing X axis */x?: number;/** Spacing Y axis */y?: number;/** strokeLinecap, strokeLineJoin */round?: boolean;/** HTML elements to join */refs: Array<MutableRefObject<HTMLDivElement | null>>;/** Join with svg as */variant?: 'line' | 'curve' | 'cardinal' | 'monotoneX';}
Code snippet hidden
Your screen is too small.