react-native-icomoon
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

react-native-icomoon

React Native Icommon

Installation

React Native Icomoon is using react-native-svg to render icon. Make sure install it correctly https://github.com/react-native-svg/react-native-svg#installation

npm install react-native-icomoon react-native-svg

or

yarn add react-native-icomoon react-native-svg

Usage

Create re-useable component

import Icomoon from "react-native-icomoon"
import type { IconMoonProps } from 'react-native-icomoon'
import json from './selection.json'
 
type IconProps = Omit<IconMoonProps, "iconSet">
 
export default function Icon({ name, ...restProps }: IconProps) {
  return <Icomoon iconSet={json} name={name} {...restProps} />
}

Use

import Icon from './Icon'
 
<Icon name="firefox" color="tomato" size={50} />

iconList

You can use the iconList method to see a complete list of icons you can use.

import { iconList } from "react-icomoon";
import json from './selection.json'
 
iconList(json);
 
// sample output
[
  "document",
  "camera",
  "genius",
  "chat",
  //...
]

Props List

Name Type Default Sample
iconSet Object undefined "selection.json file content"
name String undefined "home"
size Number,String undefined "1em", 10, "100px"
color String undefined "red", "#f00", "rgb(0,0,0)"

License

MIT

Package Sidebar

Install

npm i react-native-icomoon

Weekly Downloads

805

Version

0.1.1

License

MIT

Unpacked Size

78.3 kB

Total Files

18

Last publish

Collaborators

  • edwinwong90