removed logo muted

This commit is contained in:
Shahed Nasser
2022-04-29 13:27:30 +03:00
parent 97fb5ed171
commit b15738ac95
5 changed files with 12 additions and 15 deletions

View File

@@ -5,11 +5,11 @@ import React from "react"
import { useColorMode } from 'theme-ui'
const GitHub = () => {
const [colorMode, setColorMode] = useColorMode()
const [colorMode,] = useColorMode()
return (
<Image
src={colorMode == 'light' ? Logo : LogoLight}
src={colorMode === 'light' ? Logo : LogoLight}
sx={{
height: "24px",
}}