UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

11 lines 310 B
export const reflow = node => node.scrollTop; export function getTransitionProps(props, options) { const { timeout, style = {} } = props; return { duration: style.transitionDuration || typeof timeout === 'number' ? timeout : timeout[options.mode] || 0, delay: style.transitionDelay }; }