cloudhubui
Version:
Various components to use in react projects
20 lines (19 loc) • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.varPath = exports.TRANSITION = void 0;
// ----------------------------------------------------------------------
var TRANSITION = {
duration: 2,
ease: [0.43, 0.13, 0.23, 0.96]
};
exports.TRANSITION = TRANSITION;
var varPath = {
animate: {
fillOpacity: [0, 0, 1],
pathLength: [1, 0.4, 0],
transition: TRANSITION
}
};
exports.varPath = varPath;