changed loading logo

This commit is contained in:
StockiP
2022-11-02 20:16:45 +01:00
parent f2268d95d6
commit b3b80f4006
3 changed files with 4 additions and 3 deletions

View File

@@ -1,12 +1,12 @@
import React from 'react';
import styles from "../styles";
import { ethereumLogo, eth, ethdiamondpurple } from "../assets";
import {ethereumLogo2 } from "../assets";
const Loader = ({ title }) => {
return (
<div className={styles.loader}>
<img src={ethdiamondpurple} alt="Ethereum Logo" className={styles.loaderImg} />
<img src={ethereumLogo2} alt="Ethereum Logo" className={styles.loaderImg} />
<p className={styles.loaderText}>{title}</p>
</div>