import React, { PropTypes } from 'react'; const factory = (ripple) => { const Thumb = ({onMouseDown, theme, ...other}) => ( ); Thumb.propTypes = { children: PropTypes.any, theme: PropTypes.shape({ ripple: PropTypes.string, thumb: PropTypes.string }) }; return ripple(Thumb); }; export default factory;