import { InputHTMLAttributes, ReactNode } from "react";
interface FormTextInputProps extends InputHTMLAttributes {
error: ReactNode;
children?: ReactNode;
}
export const FormTextInput = ({ error, children, ...props }: FormTextInputProps) => {
return (
<>
{error}
>
);
};