import React from 'react'; import './index.less'; function RadioItem(props) { const { className = '', checked, theme = 'default', onClick } = props; return (
!checked && onClick && onClick()} /> ); } RadioItem.propTypes = {}; export default RadioItem;