@antv/g2
Version:
the Grammar of Graphics in Javascript
9 lines • 300 B
JavaScript
import { Color } from './color';
/**
* ■
*/
export const Square = (options, context) => {
return Color(Object.assign({ colorAttribute: 'fill', symbol: 'square' }, options), context);
};
Square.props = Object.assign({ defaultMarker: 'square' }, Color.props);
//# sourceMappingURL=square.js.map