Mantine UI – React – Success Notification

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,
        });

About the Author: smartcoder

You might like

Leave a Reply

Your email address will not be published. Required fields are marked *