import React from 'react' type RadioChipProps = { checked?: boolean disabled?: boolean name: string onChange: (value: ValueType) => void required?: boolean label: React.ReactElement | string value: ValueType } const RadioChip = ({ checked, disabled, name, onChange, label, required, value, }: RadioChipProps) => { const handleChange = () => { onChange(value) } return ( ) } export default RadioChip