Added register
This commit is contained in:
24
apps/hub/app/_components/ui/FormTextInput.tsx
Normal file
24
apps/hub/app/_components/ui/FormTextInput.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import { DetailedHTMLProps, InputHTMLAttributes, ReactNode } from 'react';
|
||||
|
||||
interface FormTextInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
||||
error: any;
|
||||
Svg: ReactNode;
|
||||
children?: ReactNode;
|
||||
}
|
||||
|
||||
export const FormTextInput = ({
|
||||
error,
|
||||
Svg,
|
||||
children,
|
||||
...props
|
||||
}: FormTextInputProps) => {
|
||||
return (
|
||||
<>
|
||||
<label className="input input-bordered flex items-center gap-2">
|
||||
{children}
|
||||
<input {...props} />
|
||||
</label>
|
||||
<p className="text-error">{error}</p>
|
||||
</>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user