UNPKG

reactors

Version:

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

16 lines (12 loc) 413 B
import omit from 'lodash/omit'; import Reactors from '../../Core'; const marginVertical = (style) => { if (('marginVertical' in style) && Reactors.isDOM()) { const transformed = {}; transformed.marginTop = style.marginVertical; transformed.marginBottom = style.marginVertical; return omit({...style, ...transformed}, ['marginVertical']); } return style; }; export default marginVertical;