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