Skip to content

Commit 6200d30

Browse files
committed
fix: 🔥 fixed the footer icon
1 parent fc70b31 commit 6200d30

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

src/assets/gray-logo.svg

Lines changed: 13 additions & 0 deletions
Loading

src/components/Footer/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
99
import CustomAccordion from '../CustomAccordion';
1010
import styles from './Footer.module.scss';
1111

12+
import GrayLogo from '../../assets/gray-logo.svg';
13+
1214
const Footer = () => {
1315
const {
1416
i18n: { currentLocale },
@@ -91,7 +93,9 @@ const Footer = () => {
9193
<section className={styles.FooterContainer} data-testid='footer-text'>
9294
<div className={styles.FooterBody}>
9395
<div className={styles.LogoWrapper}>
94-
<img src='img/gray-logo.svg' alt='Deriv API Logo' className={styles.FooterLogo} />
96+
<div className={styles.FooterLogo}>
97+
<GrayLogo />
98+
</div>
9599
</div>
96100
<div className={styles.FooterSection}>
97101
<section className={styles.Section1} data-testid='API-section'>

0 commit comments

Comments
 (0)