All Projects → theanam → react-icofont

theanam / react-icofont

Licence: other
React Wrapper for the icofont project 🕶

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-icofont

ts3admin.class
The ts3admin.class is a powerful api for communication with Teamspeak 3 Servers from your website! Your creativity knows no bounds!
Stars: ✭ 107 (+568.75%)
Mutual labels:  icon
vuepress-plugin-svg-icons
🔥 SVG sprite plugin for VuePress
Stars: ✭ 17 (+6.25%)
Mutual labels:  icon
taro-icons
基于 Taro 的小程序图标库
Stars: ✭ 53 (+231.25%)
Mutual labels:  icon
material-ui-toggle-icon
An animated toggle icon for Material-UI.
Stars: ✭ 32 (+100%)
Mutual labels:  icon
bearded-icons
The VS Code icons with a long beard.
Stars: ✭ 62 (+287.5%)
Mutual labels:  icon
ICNS2ICO
ICNS2ICO lets you easily convert icons from the Apple's ICNS format to the Windows ICO format.
Stars: ✭ 17 (+6.25%)
Mutual labels:  icon
react-svg-icon-generator
Generate React Icon Component from SVG icons to show, resize and recolor them.
Stars: ✭ 65 (+306.25%)
Mutual labels:  icon
react-iconfont-cli
转换iconfont图标为React标准组件,不依赖字体,支持多色彩
Stars: ✭ 58 (+262.5%)
Mutual labels:  icon
react-native-ionicons
Ionic icons for React Native
Stars: ✭ 43 (+168.75%)
Mutual labels:  icon
ImageActionSheet
iOS Native style action sheet like in Whatsapp with the option of showing icons. It is a complete implementation and does not use any private api of UIKit.
Stars: ✭ 20 (+25%)
Mutual labels:  icon
leaflet-defaulticon-compatibility
Retrieve all Leaflet Default Icon options from CSS, in particular all icon images URL's, to improve compatibility with bundlers and frameworks that modify URL's in CSS.
Stars: ✭ 71 (+343.75%)
Mutual labels:  icon
nuxt-fontagon
Try converting svg into font easily to make icon-font automatically. The Icon-Font generator Fontagon is available on the Nuxt module.
Stars: ✭ 18 (+12.5%)
Mutual labels:  icon
fontagon
Fontagon is a great tool that easily converts svg into icon font. Fontagon-cli allows faster conversion to commands.
Stars: ✭ 18 (+12.5%)
Mutual labels:  icon
vue-icon-font
IconFont plugin for Vuejs
Stars: ✭ 25 (+56.25%)
Mutual labels:  icon
IconViewer
Icon Viewer Plugin for Intellij
Stars: ✭ 34 (+112.5%)
Mutual labels:  icon
UltimateTabLayout
A library for tab layout use with viewpager. Very useful, small
Stars: ✭ 33 (+106.25%)
Mutual labels:  icon
react-native-dynamic-vector-icons
Wrapper of react-native-vector-icons to use dynamic types
Stars: ✭ 84 (+425%)
Mutual labels:  icon
netctl-tray
A lightweight netctl tray app with notifications
Stars: ✭ 30 (+87.5%)
Mutual labels:  icon
nativescript-app-icon-changer
Change the homescreen icon of your NativeScript iOS app at runtime!
Stars: ✭ 16 (+0%)
Mutual labels:  icon
tray-item-rs
Multi-platform Tray Indicator
Stars: ✭ 145 (+806.25%)
Mutual labels:  icon

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].