react-toolbox/components/switch/Thumb.js

22 lines
473 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
const factory = (ripple) => {
const Thumb = ({ onMouseDown, theme, ...other }) => (
<span className={theme.thumb} onMouseDown={onMouseDown} {...other} />
);
Thumb.propTypes = {
children: PropTypes.node,
onMouseDown: PropTypes.func,
theme: PropTypes.shape({
ripple: PropTypes.string,
thumb: PropTypes.string,
}),
};
return ripple(Thumb);
};
export default factory;