A simple module to fetch icons based on a specified query.
Install the module using npm:
npm install react-icons-finder
import getIcons from "react-icons-finder";
const query = "food";
const limit = 2
getIcons(query, limit)
.then((icons) => {
console.log("Fetched Icons:", icons);
})
.catch((error) => {
console.error("Failed to fetch icons:", error);
});