reason-expo-vector-icons
v36.0.0
Published
Bucklescript bindings for @expo/vector-icons, the standard way to use icons with Expo.
Downloads
5
Maintainers
Readme
Reason @expo/vector-icons
This library is the bindings for @expo/vector-icons which is a compatibility layer around @oblador/react-native-vector-icons to work with the Expo asset system. If you're using Javascript/Typescript, you have no need for this library -- carry on! (or maybe check out @expo/vector-icons).
If you're not using Expo, then check out Astrocoders/bs-react-native-vector-icons instead.
Resources
- @expo/vector-icons directory - a searchable list of all included icons.
- Expo documentation
Installation
With yarn
yarn add reason-expo-vector-icons
With npm
npm i reason-expo-vector-icons
Then add it to your bsconfig.json
...
"bs-dependencies": [
...,
"reason-expo-vector-icons"
],
...
Usage
open ReasonExpoVectorIcons;
let component = ReasonReact.statelessComponent("IconExample");
let make = (_children) => {
...component,
render: (_self) => {
<Ionicons name=`md-checkmark-circle size=32 color="green" />
}
};
Credits
Thanks to Astrocoders/bs-react-native-vector-icons for providing an example of how to generate this from glyphmap files.
Thanks to oblador/react-native-vector-icons for the icons.
Thanks to @expo/vector-icons for expo.