Skip to content

ElasticSuite/react-icons-kit

This branch is 7 commits ahead of, 17 commits behind wmira/react-icons-kit:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Julia GottschalkJulia Gottschalk
Julia Gottschalk
and
Julia Gottschalk
Jun 8, 2021
37ff9e0 · Jun 8, 2021

History

95 Commits
Jun 8, 2021
Dec 18, 2020
May 31, 2021
Mar 30, 2019
Dec 17, 2016
Mar 28, 2019
Oct 14, 2017
Aug 6, 2020
Mar 30, 2019
Apr 22, 2017
May 7, 2020
Jun 8, 2021
Mar 30, 2019

Repository files navigation

react-icons-kit

Note: Please visit https://reactsvgicons.com/ has svg icons directly as react components can you can import to your project without to need to use a library

Project Supported By ReactForBeginners.com

Project Supported By AdvancedReact.com

Installation

npm install --save react-icons-kit

Documentation / Demo

Please visit react-icons-kit

Bundled Icon Sets

Plus more to come.

Browse Icon Sets

Browse all available icons here: react-icons-kit

Changes

1.3.0

Quick Start Guide

    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>
        )
    }

Tree Shaking

Use the eslint config from this: wmira#38

Development

React Icons Kit Site

To update the react-icons-kit site deployed at react-icons-kit, you need to first do the following. Assuming you are at the root folder:

  1. npm install
  2. npm run dist
  3. cd site
  4. npm install
  5. cd node_modules
  6. ln -sf ../../dist react-icons-kit
  7. cd ..
  8. npm start

You should now be able to live edit the website to do some changes, submit pull request.

Packages

No packages published

Languages

  • JavaScript 97.4%
  • HTML 2.6%