UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

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