import React, { InputHTMLAttributes, PropsWithChildren, forwardRef, } from "react"; import classNames from "classnames"; import { Field, FieldProps } from ":/components/Forms/Field"; type Props = InputHTMLAttributes & FieldProps & { label?: string; }; export const Radio = forwardRef( ({ label, text, state, ...props }: Props, ref) => { return ( ); }, ); export const RadioGroup = ({ children, state, text, rightText, style, }: PropsWithChildren & FieldProps & { style?: React.CSSProperties }) => { return (
{children}
); };