import React from 'react'; import { WarningOutlineIcon } from '../../icons'; import colors from '../../theme/colors'; import Typography from '../Typography'; import { Wrapper } from './styles'; type InputFieldErrorProps = { message: string; }; const InputFieldErrorMessage = ({ message }: InputFieldErrorProps) => { return ( {message} ); }; export default InputFieldErrorMessage;