UNPKG

react-easy-diagram

Version:

<img src="https://github.com/tokarchyn/react-easy-diagram/blob/main/repo/logo-with-name.png?raw=true" alt="React Easy Diagram logo" height="50">

15 lines 595 B
import React, { CSSProperties } from 'react'; export interface ISvgMarkerSettings { id: string; style?: CSSProperties; } export interface ISvgCircleMarkerSettings extends ISvgMarkerSettings { radius?: number; } export declare function createCircleMarker(settings: ISvgCircleMarkerSettings): React.FunctionComponent; export interface ISvgArrowMarkerSettings extends ISvgMarkerSettings { height?: number; width?: number; } export declare function createArrowMarker(settings: ISvgArrowMarkerSettings): React.FunctionComponent; //# sourceMappingURL=Markers.d.ts.map