Every time I attempt to use icons that I have loaded into my source code, I keep getting this default icon displayed:
https://i.sstatic.net/AWhcW.png
I'm uncertain about what exactly is causing this issue. Here is the layout of my file tree for reference:
https://i.sstatic.net/nHiyf.png
When attempting to utilize an icon (in this case, Ellipse6.png), I am referencing the source as "../style/assets/Ellipse6.png". Below is a snippet of the code (from index.jsx) where I am trying to use it from:
<div className="col-sm-6 pl-sm-2 pr-sm-0">
<Card>
<Card.Body>
<Carousel className={"carousel"}>
<Carousel.Item>
<img
className="d-block w-100"
src='../style/assets/Ellipse 7.png'
alt="First slide"
/>
...
I can assure you that the import path is correct, and I am puzzled as to why .png files are not being supported. Is there something else that I might be overlooking?