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