import React, { forwardRef } from 'react' import type { InputHTMLAttributes } from 'react' export interface RadioProps extends Omit, 'type'> { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const Radio = forwardRef(function Radio( { testId = 'fs-radio', ...otherProps }: RadioProps, ref ) { return ( ) }) export default Radio