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