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