UNPKG

reactors

Version:

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

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