hollowSquare.js 308 B

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