@kbss-cvut/s-forms
Version:
Semantic forms generator and processor
14 lines (13 loc) • 490 B
TypeScript
export default PolylineAnnotation;
/**
* Stateless SVG component responsible for rendering a single polyline annotation.
* Receives fully resolved geometry and styling from the parent renderer and
* performs no normalization, transformation, or time-based logic.
*/
declare function PolylineAnnotation({ points, stroke, strokeWidth, fill, opacity }: {
points: any;
stroke: any;
strokeWidth: any;
fill: any;
opacity: any;
}): import("react/jsx-runtime").JSX.Element;