hollow.js 298 B

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