UNPKG

reactors

Version:

View components and APIs that work web, mobile and desktop!

13 lines (9 loc) 254 B
import omit from 'lodash/omit'; import Reactors from '../../Core'; const boxSizing = (style) => { if (('boxSizing' in style) && Reactors.isMobile()) { return omit({...style}, ['boxSizing']); } return {...style}; }; export default boxSizing;