line.js 272 B

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