@antv/g2
Version:
the Grammar of Graphics in Javascript
13 lines • 436 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Plus = void 0;
const color_1 = require("./color");
/**
* +
*/
const Plus = (options, context) => {
return (0, color_1.Color)(Object.assign({ colorAttribute: 'stroke', symbol: 'plus' }, options), context);
};
exports.Plus = Plus;
exports.Plus.props = Object.assign({ defaultMarker: 'plus' }, color_1.Color.props);
//# sourceMappingURL=plus.js.map
;