From 1688f4e0acbd560a09fa4e6bd06ffa6fbd5a000c Mon Sep 17 00:00:00 2001 From: vyshnav Date: Sat, 5 Oct 2024 09:26:02 +0530 Subject: [PATCH] add : component to show loading --- src/components/Loading/payment-loading.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/components/Loading/payment-loading.tsx diff --git a/src/components/Loading/payment-loading.tsx b/src/components/Loading/payment-loading.tsx new file mode 100644 index 0000000..479c62b --- /dev/null +++ b/src/components/Loading/payment-loading.tsx @@ -0,0 +1,20 @@ +'use client' + +import { Loader2 } from "lucide-react" + +export function PaymentLoading() { + return ( +
+ +

Processing Payment

+

+ Please wait while we process your payment. This may take a few moments. +

+
+
+
+
+
+
+ ) +} \ No newline at end of file