UNPKG

react-icons-kit-allreact

Version:

Fork off React Icons Kit loosening the reactjs version

54 lines (37 loc) 1.49 kB
# react-icons-kit ## Installation ``` npm install --save-dev react-icons-kit ``` ## Documentation / Demo Please visit [react-icons-kit](http://wmira.github.io/react-icons-kit/) ## Bundled Icon Sets * [`IcoMoon`](https://github.com/Keyamoon/IcoMoon-Free) vmaster * [`FontAwesome`](http://fortawesome.github.io/Font-Awesome/icons/) v4.7 * [`MaterialIcons`](https://www.google.com/design/icons/) v3.0.1 * [`Open Iconic`](https://github.com/iconic/open-iconic) v1.1.1 * [`Entypo`](http://entypo.com) latest * [`Ikons`](http://ikons.piotrkwiatkowski.co.uk/) latest * [`Metrize`](http://www.alessioatzeni.com/metrize-icons/) latest * [`Octicons`](https://octicons.github.com/) v5.0.1 * [`Ionicons`](http://ionicons.com/) v2.0.1 * [`Linea`](http://linea.io/) latest * [`Typicons`](http://typicons.com/) v2.0.8 * [`Noto Emoji Regular`](https://www.google.com/get/noto/#emoji-zsye/) latest Plus more to come. ## Browse Icon Sets Browse all available icons here: [react-icons-kit](http://wmira.github.io/react-icons-kit/) ## Quick Start Guide ```javascript import Icon from 'react-icons-kit'; import { ic_add_a_photo } from 'react-icons-kit/md/ic_add_a_photo'; import { lock } from 'react-icons-kit/fa/lock'; export const ShowIcons = () => { return ( <div> <div><Icon icon={ic_add_a_photo}/><div> <div><Icon icon={lock}/><div> </div> ) } ```