import { h } from 'preact'; import PropTypes from 'prop-types'; export const RadioButton = (props) => { const { id, value, name, className, checked, onClick, ...otherProps } = props; return ( 0 ? ` ${className}` : '' }`} checked={checked} onClick={onClick} type="radio" {...otherProps} /> ); }; RadioButton.displayName = 'RadioButton'; RadioButton.defaultProps = { id: undefined, className: undefined, checked: false, name: undefined, }; RadioButton.propTypes = { id: PropTypes.string, value: PropTypes.string.isRequired, className: PropTypes.string, checked: PropTypes.bool, name: PropTypes.string, onClick: PropTypes.func.isRequired, };