import React, { PropTypes } from 'react'; const factory = (ripple) => { const Radio = ({checked, onMouseDown, theme, ...other}) => (
); Radio.propTypes = { checked: PropTypes.bool, children: PropTypes.any, onMouseDown: PropTypes.func, theme: PropTypes.shape({ radio: PropTypes.string, radioChecked: PropTypes.string, ripple: PropTypes.string }) }; return ripple(Radio); }; export default factory;