import React from 'react'; export interface InputErrorType { error?: string; theme?: string; inputId?: string; } const InputError = ({ error = '', theme = '', inputId = '', }: InputErrorType) => { if (!error || error === '') return ; return (