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