hollowHexagon.js 313 B

123456789
  1. import { Color } from './color';
  2. /**
  3. * ⬡
  4. */
  5. export const HollowHexagon = (options) => {
  6. return Color(Object.assign({ colorAttribute: 'stroke', symbol: 'hexagon' }, options));
  7. };
  8. HollowHexagon.props = Object.assign({ defaultMarker: 'hollowHexagon' }, Color.props);
  9. //# sourceMappingURL=hollowHexagon.js.map