Files
cinny/src/app/pages/auth/FiledError.tsx
T

14 lines
370 B
TypeScript
Raw Normal View History

2024-01-21 23:50:56 +11:00
import React from 'react';
import { Box, Icon, Icons, color, Text } from 'folds';
export function FieldError({ message }: { message: string }) {
return (
<Box style={{ color: color.Critical.Main }} alignItems="Center" gap="100">
<Icon size="50" filled src={Icons.Warning} />
<Text size="T200">
<b>{message}</b>
</Text>
</Box>
);
}