* fix: nextjs slow compile time * fix: change optimized package imports and transpile packages * fix: format issue
20 lines
592 B
TypeScript
20 lines
592 B
TypeScript
import type { NotificationData } from "@mantine/notifications";
|
|
import { notifications } from "@mantine/notifications";
|
|
import { IconCheck, IconX } from "@tabler/icons-react";
|
|
|
|
type CommonNotificationProps = Pick<NotificationData, "title" | "message">;
|
|
|
|
export const showSuccessNotification = (props: CommonNotificationProps) =>
|
|
notifications.show({
|
|
...props,
|
|
color: "teal",
|
|
icon: <IconCheck size={20} />,
|
|
});
|
|
|
|
export const showErrorNotification = (props: CommonNotificationProps) =>
|
|
notifications.show({
|
|
...props,
|
|
color: "red",
|
|
icon: <IconX size={20} />,
|
|
});
|