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