UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

11 lines 305 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], delay: style.transitionDelay }; }