import { Center, Text } from "@mantine/core"; import { notifications } from "@mantine/notifications"; import { IconAlertTriangle } from "@tabler/icons-react"; /** * * @param text | masukan text untuk peringatan * @type string * @returns notifikasi peringatan */ export async function ComponentGlobal_NotifikasiGagal(text: string) { return notifications.show({ message: (
{text}
), color: "red", radius: "md", autoClose: 2000, icon: , withCloseButton: false, styles: (theme) => ({ description: { color: theme.white }, root: { backgroundColor: theme.colors.red[7], }, }), }); }