Files
hipmi/src/app_modules/_global/notif_global/notifikasi_gagal.tsx
Bagasbanuna02 5fc30c5f06 # feat
Deskripsi:
- Penerapan prisma db seed
## No Issue
2024-07-24 10:47:12 +08:00

32 lines
764 B
TypeScript

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: (
<Center>
<Text align="center" fw={"bold"}>{text}</Text>
</Center>
),
color: "red",
radius: "md",
autoClose: 2000,
icon: <IconAlertTriangle color="white" />,
withCloseButton: false,
styles: (theme) => ({
description: { color: theme.white },
root: {
backgroundColor: theme.colors.red[7],
},
}),
});
}