Socket
Socket
Sign inDemoInstall

react-icofont

Package Overview
Dependencies
6
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-icofont

React wrapper for icofont project (https://icofont.com/)


Version published
Weekly downloads
273
decreased by-31.41%
Maintainers
1
Install size
7.55 MB
Created
Weekly downloads
 

Readme

Source

React wrapper for the icofont project from JoomShaper

NPM

A React wrapper for the icofont project https://icofont.com/. It renders a <i> tag with icofont classes (like how you'd usually use it). No extra configuration required.

prerequisite:

React and Webpack. Obviously.

How to use:

Install it with npm:

npm install --save react-icofont 

Include in your component:

import Icofont from 'react-icofont';

Use it in JSX:

<Icofont icon="bell"/>

Icofont supports Rotate, flip and size classes. In this component you can pass those values with props:

<Icofont icon="key" rotate="270" flip="h" size="10"/>

Supported values for the props are given below :

icon (Required):

Any valid icon name from the icofont website (https://icofont.com/icons). Guess what, if you copy the class name that includes the prefix (icofont-), it will also work fine.

rotate (Optional):

Currently rotate angles 90,180,270 values are supported. The rotate angle values are in degree.

flip (Optional):

horizontal or h and vertical or v. You can also do, flip="h v" or flip="horizontal vertical" for flipping both horizontally and vertically.

size (Optional):

Size can have value from 1 to 10. For example, setting size="2" will make the icon twice as big.

spin (Optional):

Spin can have boolean value like 1/0 or true/false or even TRUE/FALSE. In the case of true value, the icon will spin endlessly. You can spin any icon:

<Icofont icon="spinner" size="3" spin="true"/>

You can read more about these here: https://icofont.com/examples

Standard Props Support:

All standard props like style, onClick are supported. if you use className prop. The provided classes will be appended with the icofont classes.

License:

This project, like the icofont project, is released under the MIT License

FAQs

Last updated on 27 Feb 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc