"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Path = void 0; const color_1 = require("./color"); /** * A filled path. */ const Path = (options) => { return (0, color_1.Color)(Object.assign({ colorAttribute: 'fill' }, options)); }; exports.Path = Path; exports.Path.props = { defaultMarker: 'hvh', defaultEnterAnimation: 'fadeIn', defaultUpdateAnimation: 'morphing', defaultExitAnimation: 'fadeOut', }; //# sourceMappingURL=path.js.map