| 1234567891011121314 |
- import { Color } from './color';
- /**
- * A hollow path.
- */
- export const Hollow = (options) => {
- return Color(Object.assign({ fill: 'none', colorAttribute: 'stroke' }, options));
- };
- Hollow.props = {
- defaultMarker: 'hvh',
- defaultEnterAnimation: 'fadeIn',
- defaultUpdateAnimation: 'morphing',
- defaultExitAnimation: 'fadeOut',
- };
- //# sourceMappingURL=hollow.js.map
|