hollow.js 379 B

1234567891011121314
  1. import { Color } from './color';
  2. /**
  3. * A hollow path.
  4. */
  5. export const Hollow = (options) => {
  6. return Color(Object.assign({ fill: 'none', colorAttribute: 'stroke' }, options));
  7. };
  8. Hollow.props = {
  9. defaultMarker: 'hvh',
  10. defaultEnterAnimation: 'fadeIn',
  11. defaultUpdateAnimation: 'morphing',
  12. defaultExitAnimation: 'fadeOut',
  13. };
  14. //# sourceMappingURL=hollow.js.map