cloudhubui
Version:
Various components to use in react projects
38 lines (37 loc) • 728 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.varWrapBoth = exports.varWrapExit = exports.varWrapEnter = void 0;
// ----------------------------------------------------------------------
var varWrapEnter = {
animate: {
transition: {
staggerChildren: 0.1
}
}
};
exports.varWrapEnter = varWrapEnter;
var varWrapExit = {
exit: {
transition: {
staggerChildren: 0.1
}
}
};
exports.varWrapExit = varWrapExit;
var varWrapBoth = {
animate: {
transition: {
staggerChildren: 0.07,
delayChildren: 0.1
}
},
exit: {
transition: {
staggerChildren: 0.05,
staggerDirection: -1
}
}
};
exports.varWrapBoth = varWrapBoth;