How can I make react-icons icons size smaller for mobile? I understand pixel is not a good approach, but how should I do it?
import { FaSearch, FaFacebook, FaInstagram, FaUserCog, FaUserTimes } from "react-icons/fa";
<FaSearch
color="#023373"
size="30px" />
You can use
@media
query in your case. Add a class to your icon component and write media query for mobile device width.In your CSS, do this
I created a working example using Stackblitz
Here's a list of all the
@media
queries for different device widths.