From 70248112e5c1006c34299f6a9adcfdc5cf870686 Mon Sep 17 00:00:00 2001
From: Prince <prince@deriv.com>
Date: Fri, 20 Oct 2023 09:36:56 +0400
Subject: [PATCH] chore: update temporary icons

---
 .../lib/home/sections/fast-payments/index.tsx | 30 +++++++++++++++----
 1 file changed, 24 insertions(+), 6 deletions(-)

diff --git a/libs/templates/src/lib/home/sections/fast-payments/index.tsx b/libs/templates/src/lib/home/sections/fast-payments/index.tsx
index c4e8acd04..74e8ead54 100644
--- a/libs/templates/src/lib/home/sections/fast-payments/index.tsx
+++ b/libs/templates/src/lib/home/sections/fast-payments/index.tsx
@@ -1,8 +1,8 @@
 import { FastPayment } from '@deriv-com/blocks';
 import {
-  FlagAndorraIcon,
-  FlagAustraliaIcon,
-  FlagBurkinaFasoIcon,
+  PaymentMethodLitecoinBlackIcon,
+  PaymentMethodMastercardBlackIcon,
+  PaymentMethodPayLivreBlackIcon,
 } from '@deriv/quill-icons';
 
 const FastPaymentSection = () => {
@@ -22,7 +22,13 @@ const FastPaymentSection = () => {
             color: 'gray',
             align: 'center',
             size: 'lg',
-            icon: <FlagBurkinaFasoIcon fill="black" iconSize="2xl" />,
+            icon: (
+              <PaymentMethodMastercardBlackIcon
+                fill="black"
+                width={128}
+                height={64}
+              />
+            ),
             className: 'h-fit',
             nonContentClassName: 'p-general-xl',
           },
@@ -31,7 +37,13 @@ const FastPaymentSection = () => {
             color: 'gray',
             align: 'center',
             size: 'lg',
-            icon: <FlagAndorraIcon fill="black" iconSize="2xl" />,
+            icon: (
+              <PaymentMethodLitecoinBlackIcon
+                fill="black"
+                width={128}
+                height={64}
+              />
+            ),
             className: 'h-fit',
             nonContentClassName: 'p-general-xl',
           },
@@ -40,7 +52,13 @@ const FastPaymentSection = () => {
             color: 'gray',
             align: 'center',
             size: 'lg',
-            icon: <FlagAustraliaIcon fill="black" iconSize="2xl" />,
+            icon: (
+              <PaymentMethodPayLivreBlackIcon
+                fill="black"
+                width={128}
+                height={64}
+              />
+            ),
             className: 'h-fit',
             nonContentClassName: 'p-general-xl',
           },