import { Icon } from "../../icon"; type InputErrorProp = { message: string; }; export const InputError = ({ message }: InputErrorProp) => (

{message}

);