React Icons

react-icons-ng versionreact-icons-ng-pack version

Include popular icons in your React projects easily with react-icons, which utilizes ES6 imports that allows you to include only the icons that your project is using.

Installation (for standard modern project)

Icon
npm install @onemind-services-llc/react-icons-ng --save

Usage

Icon
import { FaBeer } from "@onemind-services-llc/react-icons-ng/fa";
class Question extends React.Component {
render() {
return <h3> Lets go for a <FaBeer />? </h3>
}
}

Installation (for meteorjs, gatsbyjs, etc)

If your project grows in size, this option is available. This method has the trade-off that it takes a long time to install the package. Suitable for MeteorJS, Gatsbyjs etc.

Icon
npm install @onemind-services-llc/react-icons-ng-pack --save

Usage

Icon
import { FaBeer } from "@onemind-services-llc/react-icons-ng-pack/fa/FaBeer";
class Question extends React.Component {
render() {
return <h3> Lets go for a <FaBeer />? </h3>
}
}

More info

Before proceeding, please note that the NPM registry for this package is hosted on GitHub. You need to configure your NPM client to use GitHub Packages registry for this package. For more information, see Configuring npm for use with GitHub Packages.

GitHub ↗