@nbamford123/arwes
Version:
Futuristic Sci-Fi and Cyberpunk Graphical User Interface Framework for Web Apps
24 lines (20 loc) • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (theme) {
return {
root: {
display: 'inline-block',
opacity: 1,
transition: 'opacity ' + theme.animTime + 'ms ease-out',
'&$exiting, &$exited': {
opacity: 0
}
},
entering: {},
entered: {},
exiting: {},
exited: {}
};
};