This is my code. I am building Tinder Clone .
import React from 'react'
import './header.css';
import PersonIcon from '@mui/icons-material/Person';
import IconButton from '@mui/material/IconButton';
function Header() {
return (
<div className='header'>
<IconButton>
<PersonIcon fontSize = "large" className = "header_icon" />
</IconButton>
<img alt="tinder logo" src="./tinder-logo.png"></img>
</div>
)
}
This is the error I am getting Can anyone fix the error.