Mantine Ui notification with success check mark
import { IconCheck } from "@tabler/icons-react";
import { notifications } from "@mantine/notifications";
notifications.show({
id: 'load-data',
color: 'teal',
title: 'Success',
message: 'Sign up process is Complete!',
icon: <IconCheck size="1rem" />,
autoClose: 3000,
});