Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
fix: 🐛 fix change of the icon name coming from quill icons
Browse files Browse the repository at this point in the history
  • Loading branch information
mitra-deriv committed Feb 1, 2024
1 parent 6a1c9f6 commit 0e6c2fa
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/features/pages/home/years/data.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import { CardContent } from '@deriv-com/components'
import {
LightDependableIcon,
LightSafeAndSecureIcon,
LightRegulatedIcon,
LightTwentyFourSevenSupportIcon,
DerivLightDependableIcon,
DerivLightSafeAndSecureIcon,
DerivLightRegulatedIcon,
DerivLightTwentyFourSevenSupportIcon,
// eslint-disable-next-line import/no-unresolved
} from '@deriv/quill-icons/Illustration'
import { Localize } from 'components/localization'
Expand All @@ -19,7 +19,7 @@ export const cards: CardContent[] = [
size: 'md',
color: 'gray',
align: 'center',
icon: <LightDependableIcon width={120} height={145} />,
icon: <DerivLightDependableIcon width={120} height={145} />,
className: 'h-full',
},
{
Expand All @@ -29,7 +29,7 @@ export const cards: CardContent[] = [
size: 'md',
color: 'gray',
align: 'center',
icon: <LightSafeAndSecureIcon width={120} height={145} />,
icon: <DerivLightSafeAndSecureIcon width={120} height={145} />,
className: 'h-full',
},
{
Expand All @@ -41,7 +41,7 @@ export const cards: CardContent[] = [
size: 'md',
color: 'gray',
align: 'center',
icon: <LightRegulatedIcon width={120} height={145} />,
icon: <DerivLightRegulatedIcon width={120} height={145} />,
className: 'h-full',
},
{
Expand All @@ -53,7 +53,7 @@ export const cards: CardContent[] = [
size: 'md',
color: 'gray',
align: 'center',
icon: <LightTwentyFourSevenSupportIcon width={120} height={145} />,
icon: <DerivLightTwentyFourSevenSupportIcon width={120} height={145} />,
className: 'h-full',
},
]

0 comments on commit 0e6c2fa

Please sign in to comment.