14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|