/react-native-vector-icon-picker

Icon picker component for React Native

Primary LanguageJavaScriptMIT LicenseMIT

React Native Icon Picker

Icon picker for React Native

First import the component:

import IconPicker from 'react-native-vector-icon-picker';

Then use it in your component:

<IconPicker 
    icons={[
          {family: 'AntDesign', icons: ['up', 'down', 'right']},
          {family: 'Entypo', icons: ['arrow-down', 'arrow-up']}
      ]}
      onSelect={(icon) => console.log(icon)}
/>