UNPKG

native-base

Version:

Essential cross-platform UI components for React Native

24 lines (22 loc) 575 B
import { extractInObject } from './../theme/tools/'; import isEmpty from 'lodash.isempty'; export const filterShadowProps = ( props: any, ignoredProps: any, OS: string ) => { if (OS !== 'web') { return { ...ignoredProps, ...props }; } let style = ignoredProps.style ?? {}; let [shadowProps, remainingProps] = extractInObject(props, [ 'shadowColor', 'shadowOffset', 'shadowOpacity', 'shadowRadius', ]); if (!isEmpty(shadowProps)) { style = { ...style, ...shadowProps }; } return { ...remainingProps, ...ignoredProps, style }; };