import React from 'react' import { TextInputProps } from '@/app/types' import Tooltip from './Tooltip' const TextInput = ({ value, handleChange, label, placeholder, name, type = 'text', className = '', maxLength, tooltip, }: TextInputProps) => { return (