plus.js 418 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Plus = void 0;
  4. const color_1 = require("./color");
  5. /**
  6. * +
  7. */
  8. const Plus = (options) => {
  9. return (0, color_1.Color)(Object.assign({ colorAttribute: 'stroke', symbol: 'plus' }, options));
  10. };
  11. exports.Plus = Plus;
  12. exports.Plus.props = Object.assign({ defaultMarker: 'plus' }, color_1.Color.props);
  13. //# sourceMappingURL=plus.js.map