react-icons-finder
v0.7.7
Published
Icon finder service from the noun project API
Downloads
23
Maintainers
Readme
React Icons Finder
A simple module to fetch icons based on a specified query.
Installation
Install the module using npm:
npm install react-icons-finder
usage
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);
});