misc_pterodactyl-panel/resources/scripts/components/elements/InputError.tsx

29 lines
825 B
TypeScript
Raw Normal View History

import React from 'react';
import { FormikErrors, FormikTouched } from 'formik';
2020-07-04 22:19:46 +00:00
import tw from 'twin.macro';
import { capitalize } from '@/helpers';
interface Props {
errors: FormikErrors<any>;
touched: FormikTouched<any>;
name: string;
2020-07-04 22:19:46 +00:00
children?: string | number | null | undefined;
}
const InputError = ({ errors, touched, name, children }: Props) => (
touched[name] && errors[name] ?
2020-07-04 22:19:46 +00:00
<p css={tw`text-xs text-red-400 pt-2`}>
{typeof errors[name] === 'string' ?
capitalize(errors[name] as string)
:
capitalize((errors[name] as unknown as string[])[0])
}
</p>
:
2020-07-04 22:19:46 +00:00
<>
{children ? <p css={tw`text-xs text-neutral-400 pt-2`}>{children}</p> : null}
</>
);
export default InputError;