hyphen.js 282 B

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