mirror of
https://github.com/zoriya/expo-vector-icons.git
synced 2025-12-06 06:36:29 +00:00
b4e07ab3d0d2f0395151fcaaa73f7b1068dcbe8a
@expo/vector-icons
This library is a compatibility layer around @oblador/react-native-vector-icons to work with the Expo asset system. If you're using React Native without Expo, you have no need for this library -- carry on! (or maybe check out Expo).
Resources
- @expo/vector-icons directory - a searchable list of all included icons.

- Expo documentation
Usage
This library is part of the expo package, so if you are using expo you can simply use it like so
import React from 'react';
import { Ionicons } from '@expo/vector-icons';
export default class IconExample extends React.Component {
render() {
return (
<Ionicons name="md-checkmark-circle" size={32} color="green" />
);
}
}
for more usage see Expo icons documentation
Languages
JavaScript
64.6%
TypeScript
35.4%