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