react-plot
Version:
Library of React components to render SVG 2D plots.
24 lines (22 loc) • 322 B
text/typescript
import {
Circle,
Cross,
Diamond,
Hexagon,
Pentagon,
Square,
Star,
Triangle,
XMark,
} from './Markers.js';
export const markersMap = {
circle: Circle,
square: Square,
diamond: Diamond,
triangle: Triangle,
cross: Cross,
xmark: XMark,
pentagon: Pentagon,
star: Star,
hexagon: Hexagon,
};