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