From 7665bd5f2216233b486d9f1288eff33ab9d25e2e Mon Sep 17 00:00:00 2001 From: divine-comedian Date: Mon, 7 Oct 2024 14:36:26 -0600 Subject: [PATCH] add sparkle ion recurring donation --- src/components/views/donate/DonationCard.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/views/donate/DonationCard.tsx b/src/components/views/donate/DonationCard.tsx index 2619db9d4..46524157e 100644 --- a/src/components/views/donate/DonationCard.tsx +++ b/src/components/views/donate/DonationCard.tsx @@ -5,6 +5,8 @@ import { Flex, SublineBold, brandColors, + IconSpark, + semanticColors, } from '@giveth/ui-design-system'; import React, { FC, useState, useEffect } from 'react'; import styled, { css } from 'styled-components'; @@ -192,6 +194,10 @@ export const DonationCard: FC = ({ {formatMessage({ id: 'label.recurring_donation', })} + ) : ( !disableRecurringDonations && ( @@ -284,6 +290,8 @@ interface ITab { const Tab = styled(BaseTab)` font-weight: 500 !important; + display: flex; + align-items: center; cursor: pointer; ${props => props.$selected &&