react-plot
Version:
Library of React components to render SVG 2D plots.
15 lines • 1.09 kB
TypeScript
import type { CSSProperties } from 'react';
export interface MarkersProps {
size: number;
style?: CSSProperties;
}
export declare function Circle({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Square({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Diamond({ size, style }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Triangle({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Cross({ size, style }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function XMark(props: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Pentagon({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Star({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
export declare function Hexagon({ style, size }: MarkersProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Markers.d.ts.map