UNPKG

react-native-web-headroom

Version:
19 lines (17 loc) 367 B
'use strict'; export default { toggle: ({node: {toggled}}) => ({ animation: {rotateZ: toggled ? 90 : 0}, duration: 300 }), drawer: (/* props */) => ({ enter: { animation: 'slideDown', duration: 300 }, leave: { animation: 'slideUp', duration: 300 } }) };