import { Color } from './color'; /** * + */ export const Plus = (options) => { return Color(Object.assign({ colorAttribute: 'stroke', symbol: 'plus' }, options)); }; Plus.props = Object.assign({ defaultMarker: 'plus' }, Color.props); //# sourceMappingURL=plus.js.map