react-slide-fade-in
Version:
Customizable slide fade-in animation for react
17 lines (16 loc) • 411 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getFromPosition = void 0;
function getFromPosition(from) {
switch (from) {
case 'bottom':
return 'top';
case 'top':
return 'bottom';
case 'left':
return 'right';
case 'right':
return 'left';
}
}
exports.getFromPosition = getFromPosition;
;