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

24 lines
761 B
TypeScript
Raw Normal View History

import { FormikErrors, FormikTouched } from 'formik';
2020-07-04 22:19:46 +00:00
import tw from 'twin.macro';
import { capitalize } from '@/lib/strings';
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)
2022-11-25 20:25:03 +00:00
: capitalize((errors[name] as unknown as string[])[0] ?? '')}
</p>
) : (
<>{children ? <p css={tw`text-xs text-neutral-400 pt-2`}>{children}</p> : null}</>
);
export default InputError;