point.js 277 B

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