React Native Icommon
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
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} />
}
import Icon from './Icon'
<Icon name="firefox" color="tomato" size={50} />
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",
//...
]
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)" |
MIT