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,
}: PropsWithChildren & FieldProps) => {
return (
{children}
);
};