tick.js 420 B

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