feat(ModalTopBar): replace static logo path with imported icon

This commit is contained in:
alexsparkes
2025-10-30 23:11:52 +00:00
parent aa6b1a3be3
commit 9c477e3980

View File

@@ -2,6 +2,7 @@ import variables from 'config/variables';
import { MdClose, MdChevronRight, MdArrowBack, MdArrowForward } from 'react-icons/md';
import { Tooltip, Button } from 'components/Elements';
import { NAVBAR_BUTTONS } from '../constants/tabConfig';
import mueAboutIcon from 'assets/icons/mue_about.png';
// Map marketplace types to translation keys
const MARKETPLACE_TYPE_TO_KEY = {
@@ -89,7 +90,7 @@ function ModalTopBar({
</Tooltip>
</div>
<img
src="src/assets/icons/mue_about.png"
src={mueAboutIcon}
alt="Mue"
className="topBarLogo"
draggable={false}