Skip to content

Commit

Permalink
add sparkle ion recurring donation
Browse files Browse the repository at this point in the history
  • Loading branch information
divine-comedian committed Oct 7, 2024
1 parent 8f5872c commit 7665bd5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/components/views/donate/DonationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -192,6 +194,10 @@ export const DonationCard: FC<IDonationCardProps> = ({
{formatMessage({
id: 'label.recurring_donation',
})}
<IconSpark
size={28}
color={semanticColors.golden[500]}
/>
</Tab>
) : (
!disableRecurringDonations && (
Expand Down Expand Up @@ -284,6 +290,8 @@ interface ITab {

const Tab = styled(BaseTab)<ITab>`
font-weight: 500 !important;
display: flex;
align-items: center;
cursor: pointer;
${props =>
props.$selected &&
Expand Down

0 comments on commit 7665bd5

Please sign in to comment.