| 12345678910111213 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Line = void 0;
- const color_1 = require("./color");
- /**
- * |
- */
- const Line = (options) => {
- return (0, color_1.Color)(Object.assign({ colorAttribute: 'stroke', symbol: 'line' }, options));
- };
- exports.Line = Line;
- exports.Line.props = Object.assign({ defaultMarker: 'line' }, color_1.Color.props);
- //# sourceMappingURL=line.js.map
|