UNPKG

react-transparent

Version:
10 lines (7 loc) 221 B
import React from 'react'; const transparent = C => by => props => ( (typeof by === 'function' ? by(props) : props[by] !== undefined) ? <C {...props} /> : props.children || null ); export default transparent;