RemixIcon for React Native
RemixIcon - version 4.2.0
This package provides RemixIcon component:
- fully static types (even name prop)
- newest RemixIcon version (4.2.0 contains all new icons)
- simple
- built with react-native-svg, react-native-reanimated
- animation support
Hope it will be useful for you.
npx expo install remixicon-native
npm i remixicon-native
If react-native-svg, react-native-reanimated haven't been installed automatically, do it manually
npm install react-native-svg react-native-reanimated
import { RemixIcon } from 'remixicon-native';
// ...
<RemixIcon
name="remixicon-line" //required
color="white" //optional, default = 'white'
size={36} //optional, default = 24
//to animate color or size, simply pass SharedValue (not SharedValue.value!!)
/>;
///...
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library