@antv/g2
Version:
the Grammar of Graphics in Javascript
13 lines • 452 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Square = void 0;
const color_1 = require("./color");
/**
* ■
*/
const Square = (options, context) => {
return (0, color_1.Color)(Object.assign({ colorAttribute: 'fill', symbol: 'square' }, options), context);
};
exports.Square = Square;
exports.Square.props = Object.assign({ defaultMarker: 'square' }, color_1.Color.props);
//# sourceMappingURL=square.js.map
;