square.js 282 B

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