123456789 |
- import { Color } from './color';
- /**
- * ●
- */
- export const Point = (options) => {
- return Color(Object.assign({ colorAttribute: 'fill', symbol: 'point' }, options));
- };
- Point.props = Object.assign({ defaultMarker: 'point' }, Color.props);
- //# sourceMappingURL=point.js.map
|