├── .DS_Store ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── nativebasevectoriconapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── NativeBaseVectorIconApp-tvOS │ └── Info.plist ├── NativeBaseVectorIconApp-tvOSTests │ └── Info.plist ├── NativeBaseVectorIconApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── NativeBaseVectorIconApp-tvOS.xcscheme │ │ └── NativeBaseVectorIconApp.xcscheme ├── NativeBaseVectorIconApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── NativeBaseVectorIconAppTests │ ├── Info.plist │ └── NativeBaseVectorIconAppTests.m ├── package.json ├── screenshots ├── android.gif └── ios.gif ├── src ├── components │ ├── IconFamilyList.js │ └── IconList.js └── icon-list │ ├── AntDesign.js │ ├── Entypo.js │ ├── EvilIcons.js │ ├── Feather.js │ ├── FontAwesome.js │ ├── FontAwesome5.js │ ├── Foundation.js │ ├── Ionicons.js │ ├── MaterialCommunityIcons.js │ ├── MaterialIcons.js │ ├── Octicons.js │ ├── SimpleLineIcons.js │ └── Zocial.js └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.65.0 55 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { StackNavigator } from 'react-navigation'; 3 | import IconList from './src/components/IconList'; 4 | import IconFamilyList from './src/components/IconFamilyList'; 5 | 6 | console.disableYellowBox = true; 7 | 8 | export default StackNavigator({ 9 | IconFamilyList: { 10 | screen: IconFamilyList 11 | }, 12 | IconList: { 13 | screen: IconList 14 | } 15 | }, { 16 | navigationOptions: { 17 | header: null 18 | } 19 | }); 20 | 21 | -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import App from './App'; 3 | 4 | import renderer from 'react-test-renderer'; 5 | 6 | it('renders without crashing', () => { 7 | const rendered = renderer.create().toJSON(); 8 | expect(rendered).toBeTruthy(); 9 | }); 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Icon list 2 | 3 | ### iOS 4 | 5 | ![Demo](https://github.com/akhil-geekyants/icon-list/blob/master/screenshots/ios.gif)
6 | 7 | ### Android 8 | ![Demo](https://github.com/akhil-geekyants/icon-list/blob/master/screenshots/android.gif) 9 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.nativebasevectoriconapp", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.nativebasevectoriconapp", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion 23 98 | buildToolsVersion "23.0.1" 99 | 100 | defaultConfig { 101 | applicationId "com.nativebasevectoriconapp" 102 | minSdkVersion 16 103 | targetSdkVersion 22 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile project(':react-native-vector-icons') 141 | compile fileTree(dir: "libs", include: ["*.jar"]) 142 | compile "com.android.support:appcompat-v7:23.0.1" 143 | compile "com.facebook.react:react-native:+" // From node_modules 144 | } 145 | 146 | // Run this once to be able to run the application with BUCK 147 | // puts all compile dependencies into folder libs for BUCK to use 148 | task copyDownloadableDepsToLibs(type: Copy) { 149 | from configurations.compile 150 | into 'libs' 151 | } 152 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 13 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/nativebasevectoriconapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.nativebasevectoriconapp; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "NativeBaseVectorIconApp"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/nativebasevectoriconapp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.nativebasevectoriconapp; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage(), 27 | new VectorIconsPackage() 28 | ); 29 | } 30 | 31 | @Override 32 | protected String getJSMainModuleName() { 33 | return "index"; 34 | } 35 | }; 36 | 37 | @Override 38 | public ReactNativeHost getReactNativeHost() { 39 | return mReactNativeHost; 40 | } 41 | 42 | @Override 43 | public void onCreate() { 44 | super.onCreate(); 45 | SoLoader.init(this, /* native exopackage */ false); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NativeBaseVectorIconApp 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NativeBaseVectorIconApp' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NativeBaseVectorIconApp", 3 | "displayName": "NativeBaseVectorIconApp" 4 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from "react-native"; 2 | import App from "./App"; 3 | AppRegistry.registerComponent("NativeBaseVectorIconApp", () => App); 4 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp.xcodeproj/xcshareddata/xcschemes/NativeBaseVectorIconApp-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp.xcodeproj/xcshareddata/xcschemes/NativeBaseVectorIconApp.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"NativeBaseVectorIconApp" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | NativeBaseVectorIconApp 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | Feather.ttf 59 | FontAwesome.ttf 60 | Foundation.ttf 61 | Ionicons.ttf 62 | MaterialCommunityIcons.ttf 63 | MaterialIcons.ttf 64 | Octicons.ttf 65 | Roboto_medium.ttf 66 | Roboto.ttf 67 | rubicon-icon-font.ttf 68 | SimpleLineIcons.ttf 69 | Zocial.ttf 70 | AntDesign.ttf 71 | FontAwesome5_Brands.ttf 72 | FontAwesome5_Regular.ttf 73 | FontAwesome5_Solid.ttf 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconApp/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconAppTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/NativeBaseVectorIconAppTests/NativeBaseVectorIconAppTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface NativeBaseVectorIconAppTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation NativeBaseVectorIconAppTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NativeBaseVectorIconApp", 3 | "version": "1.0.0", 4 | "private": true, 5 | "devDependencies": { 6 | "react-native-scripts": "1.13.1", 7 | "react-test-renderer": "16.3.0-alpha.1" 8 | }, 9 | "scripts": { 10 | "start": "react-native start", 11 | "android": "react-native run-android", 12 | "ios": "react-native run-ios" 13 | }, 14 | "jest": { 15 | "preset": "react-native" 16 | }, 17 | "dependencies": { 18 | "native-base": "https://github.com/GeekyAnts/NativeBase#master", 19 | "react": "16.3.0-alpha.1", 20 | "react-native": "0.54.0", 21 | "react-navigation": "^1.5.11" 22 | } 23 | } -------------------------------------------------------------------------------- /screenshots/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/screenshots/android.gif -------------------------------------------------------------------------------- /screenshots/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekyAnts/NativeBase-VectorIconApp/447174ae6bf4d66140694cd2b3452471cdf29bb5/screenshots/ios.gif -------------------------------------------------------------------------------- /src/components/IconFamilyList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | // import Expo from "expo"; 3 | import { Container, Header, Content, Left, Body, Right, Button, Title, List, ListItem, Text } from 'native-base'; 4 | import IconList from './IconList'; 5 | 6 | export default class IconFamilyList extends Component { 7 | 8 | state = { loading: true } 9 | 10 | // async componentWillMount() { 11 | // await Expo.Font.loadAsync({ 12 | // Roboto: require("native-base/Fonts/Roboto.ttf"), 13 | // Roboto_medium: require("native-base/Fonts/Roboto_medium.ttf"), 14 | // Ionicons: require("@expo/vector-icons/fonts/Ionicons.ttf"), 15 | // }); 16 | // this.setState({ loading: false }); 17 | // } 18 | 19 | render() { 20 | // if (this.state.loading) { 21 | // return ; 22 | // } 23 | return ( 24 | 25 |
26 | Icon Families 27 |
28 | 29 | 30 | this.props.navigation.navigate('IconList', { iconFamily: "AntDesign" })}> 31 | AntDesign 32 | 33 | this.props.navigation.navigate('IconList', { iconFamily: "Entypo" })}> 34 | Entypo 35 | 36 | this.props.navigation.navigate('IconList', { iconFamily: "EvilIcons" })}> 37 | EvilIcons 38 | 39 | this.props.navigation.navigate('IconList', { iconFamily: "Feather" })}> 40 | Feather 41 | 42 | this.props.navigation.navigate('IconList', { iconFamily: "FontAwesome" })}> 43 | FontAwesome 44 | 45 | this.props.navigation.navigate('IconList', { iconFamily: "FontAwesome5" })}> 46 | FontAwesome5 47 | 48 | this.props.navigation.navigate('IconList', { iconFamily: "Foundation" })}> 49 | Foundation 50 | 51 | this.props.navigation.navigate('IconList', { iconFamily: "Ionicons" })}> 52 | Ionicons 53 | 54 | this.props.navigation.navigate('IconList', { iconFamily: "MaterialIcons" })}> 55 | MaterialIcons 56 | 57 | this.props.navigation.navigate('IconList', { iconFamily: "MaterialCommunityIcons" })}> 58 | MaterialCommunityIcons 59 | 60 | this.props.navigation.navigate('IconList', { iconFamily: "Octicons" })}> 61 | Octicons 62 | 63 | this.props.navigation.navigate('IconList', { iconFamily: "SimpleLineIcons" })}> 64 | SimpleLineIcons 65 | 66 | this.props.navigation.navigate('IconList', { iconFamily: "Zocial" })}> 67 | Zocial 68 | 69 | 70 | 71 |
72 | ); 73 | } 74 | } -------------------------------------------------------------------------------- /src/components/IconList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { StyleSheet, FlatList } from 'react-native' 3 | // import Expo from "expo"; 4 | import { Container, Header, Content, View, Icon, Left, Button, Body, Right, Title, Text } from 'native-base'; 5 | import antDesign from '../icon-list/AntDesign'; 6 | import entypo from '../icon-list/Entypo'; 7 | import evilIcons from '../icon-list/EvilIcons'; 8 | import feather from '../icon-list/Feather'; 9 | import fontAwesome from '../icon-list/FontAwesome'; 10 | import fontAwesome5 from '../icon-list/FontAwesome5'; 11 | import foundation from '../icon-list/Foundation'; 12 | import ionicons from '../icon-list/Ionicons'; 13 | import materialCommunityIcons from '../icon-list/MaterialCommunityIcons'; 14 | import materialIcons from '../icon-list/MaterialIcons'; 15 | import octicons from '../icon-list/Octicons'; 16 | import simpleLineIcons from '../icon-list/SimpleLineIcons'; 17 | import zocial from '../icon-list/Zocial'; 18 | 19 | export default class IconList extends Component { 20 | 21 | state = { 22 | iconFamily: undefined, 23 | loading: true 24 | } 25 | 26 | // async componentWillMount() { 27 | // await Expo.Font.loadAsync({ 28 | // Roboto: require("native-base/Fonts/Roboto.ttf"), 29 | // Roboto_medium: require("native-base/Fonts/Roboto_medium.ttf"), 30 | // Ionicons: require("@expo/vector-icons/fonts/Ionicons.ttf"), 31 | // }); 32 | // this.setState({ loading: false }); 33 | // } 34 | 35 | componentDidMount() { 36 | const { params } = this.props.navigation.state; 37 | let iconFamily = params.iconFamily; 38 | this.setState({ iconFamily }) 39 | } 40 | 41 | 42 | getIconList(iconFamily) { 43 | switch (iconFamily) { 44 | case "AntDesign": return antDesign; 45 | case "Entypo": return entypo; 46 | case "EvilIcons": return evilIcons; 47 | case "Feather": return feather; 48 | case "FontAwesome": return fontAwesome; 49 | case "FontAwesome5": return fontAwesome5; 50 | case "Foundation": return foundation; 51 | case "Ionicons": return ionicons; 52 | case "MaterialCommunityIcons": return materialCommunityIcons; 53 | case "MaterialIcons": return materialIcons; 54 | case "Octicons": return octicons; 55 | case "SimpleLineIcons": return simpleLineIcons; 56 | case "Zocial": return zocial; 57 | default: return ionicons; 58 | } 59 | } 60 | 61 | render() { 62 | const { params } = this.props.navigation.state; 63 | let iconFamily = params.iconFamily; 64 | let iconList = this.getIconList(iconFamily) 65 | 66 | // if (this.state.loading) { 67 | // return ; 68 | // } 69 | return ( 70 | 71 |
72 | 75 | 76 | 77 | {this.state.iconFamily} 78 | 79 | 80 |
81 | 82 | String(index)} 85 | renderItem={({ item }) => 86 | {item} 87 | 88 | } 89 | /> 90 | 91 |
92 | ); 93 | } 94 | } 95 | 96 | const styles = StyleSheet.create({ 97 | item: { 98 | flexDirection: 'row', 99 | padding: 5, 100 | borderColor: 'grey', 101 | borderBottomWidth: 1, 102 | borderTopWidth: 1, 103 | alignItems: 'center' 104 | }, 105 | text: { marginRight: 15 } 106 | }) -------------------------------------------------------------------------------- /src/icon-list/AntDesign.js: -------------------------------------------------------------------------------- 1 | export default antDesign = [ 2 | "stepforward", 3 | "stepbackward", 4 | "forward", 5 | "banckward", 6 | "caretright", 7 | "caretleft", 8 | "caretdown", 9 | "caretup", 10 | "rightcircle", 11 | "leftcircle", 12 | "upcircle", 13 | "downcircle", 14 | "rightcircleo", 15 | "leftcircleo", 16 | "upcircleo", 17 | "downcircleo", 18 | "verticleleft", 19 | "verticleright", 20 | "back", 21 | "retweet", 22 | "shrink", 23 | "arrowsalt", 24 | "doubleright", 25 | "doubleleft", 26 | "arrowdown", 27 | "arrowup", 28 | "arrowright", 29 | "arrowleft", 30 | "down", 31 | "up", 32 | "right", 33 | "left", 34 | "minussquareo", 35 | "minuscircle", 36 | "minuscircleo", 37 | "minus", 38 | "pluscircleo", 39 | "pluscircle", 40 | "plus", 41 | "infocirlce", 42 | "infocirlceo", 43 | "info", 44 | "exclamation", 45 | "exclamationcircle", 46 | "exclamationcircleo", 47 | "closecircle", 48 | "closecircleo", 49 | "checkcircle", 50 | "checkcircleo", 51 | "check", 52 | "close", 53 | "customerservice", 54 | "creditcard", 55 | "codesquareo", 56 | "book", 57 | "barschart", 58 | "bars", 59 | "question", 60 | "questioncircle", 61 | "questioncircleo", 62 | "pause", 63 | "pausecircle", 64 | "pausecircleo", 65 | "clockcircle", 66 | "clockcircleo", 67 | "swap", 68 | "swapleft", 69 | "swapright", 70 | "plussquareo", 71 | "frown", 72 | "menufold", 73 | "mail", 74 | "link", 75 | "areachart", 76 | "linechart", 77 | "home", 78 | "laptop", 79 | "star", 80 | "staro", 81 | "filter", 82 | "meho", 83 | "meh", 84 | "shoppingcart", 85 | "save", 86 | "user", 87 | "videocamera", 88 | "totop", 89 | "team", 90 | "sharealt", 91 | "setting", 92 | "picture", 93 | "phone", 94 | "paperclip", 95 | "notification", 96 | "menuunfold", 97 | "inbox", 98 | "lock", 99 | "qrcode", 100 | "tags", 101 | "tagso", 102 | "cloudo", 103 | "cloud", 104 | "cloudupload", 105 | "clouddownload", 106 | "clouddownloado", 107 | "clouduploado", 108 | "enviroment", 109 | "enviromento", 110 | "eye", 111 | "eyeo", 112 | "camera", 113 | "camerao", 114 | "windows", 115 | "export2", 116 | "export", 117 | "circledowno", 118 | "circledown", 119 | "hdd", 120 | "ie", 121 | "delete", 122 | "enter", 123 | "pushpino", 124 | "pushpin", 125 | "heart", 126 | "hearto", 127 | "smile-circle", 128 | "smileo", 129 | "frowno", 130 | "calculator", 131 | "chrome", 132 | "github", 133 | "iconfontdesktop", 134 | "caretcircleoup", 135 | "upload", 136 | "download", 137 | "piechart", 138 | "lock1", 139 | "unlock", 140 | "windowso", 141 | "dotchart", 142 | "barchart", 143 | "codesquare", 144 | "plussquare", 145 | "minussquare", 146 | "closesquare", 147 | "closesquareo", 148 | "checksquare", 149 | "checksquareo", 150 | "fastbackward", 151 | "fastforward", 152 | "upsquare", 153 | "downsquare", 154 | "leftsquare", 155 | "rightsquare", 156 | "rightsquareo", 157 | "leftsquareo", 158 | "down-square-o", 159 | "up-square-o", 160 | "play", 161 | "playcircleo", 162 | "tag", 163 | "tago", 164 | "addfile", 165 | "folder1", 166 | "file1", 167 | "switcher", 168 | "addfolder", 169 | "folderopen", 170 | "search1", 171 | "ellipsis1", 172 | "calendar", 173 | "filetext1", 174 | "copy1", 175 | "jpgfile1", 176 | "pdffile1", 177 | "exclefile1", 178 | "pptfile1", 179 | "unknowfile1", 180 | "wordfile1", 181 | "dingding", 182 | "dingding-o", 183 | "mobile1", 184 | "tablet1", 185 | "bells", 186 | "disconnect", 187 | "database", 188 | "barcode", 189 | "hourglass", 190 | "key", 191 | "flag", 192 | "layout", 193 | "printer", 194 | "USB", 195 | "skin", 196 | "tool", 197 | "car", 198 | "addusergroup", 199 | "carryout", 200 | "deleteuser", 201 | "deleteusergroup", 202 | "man", 203 | "isv", 204 | "gift", 205 | "idcard", 206 | "medicinebox", 207 | "redenvelopes", 208 | "rest", 209 | "Safety", 210 | "wallet", 211 | "woman", 212 | "adduser", 213 | "bank", 214 | "Trophy", 215 | "loading1", 216 | "loading2", 217 | "like2", 218 | "dislike2", 219 | "like1", 220 | "dislike1", 221 | "bulb1", 222 | "rocket1", 223 | "select1", 224 | "apple1", 225 | "apple-o", 226 | "android1", 227 | "android", 228 | "aliwangwang-o1", 229 | "aliwangwang", 230 | "pay-circle1", 231 | "pay-circle-o1", 232 | "poweroff", 233 | "trademark", 234 | "find", 235 | "copyright", 236 | "sound", 237 | "earth", 238 | "wifi", 239 | "sync", 240 | "login", 241 | "logout", 242 | "reload1", 243 | "message1", 244 | "shake", 245 | "API", 246 | "appstore-o", 247 | "appstore1", 248 | "scan1", 249 | "exception1", 250 | "contacts", 251 | "solution1", 252 | "fork", 253 | "edit", 254 | "form", 255 | "warning", 256 | "table", 257 | "profile", 258 | "dashboard", 259 | "indent-left", 260 | "indent-right", 261 | "menu-unfold", 262 | "menu-fold", 263 | "antdesign", 264 | "alipay-square", 265 | "codepen-circle", 266 | "google", 267 | "amazon", 268 | "codepen", 269 | "facebook-square", 270 | "dropbox", 271 | "googleplus", 272 | "linkedin-square", 273 | "medium-monogram", 274 | "gitlab", 275 | "medium-wordmark", 276 | "QQ", 277 | "skype", 278 | "taobao-square", 279 | "alipay-circle", 280 | "youtube", 281 | "wechat", 282 | "twitter", 283 | "weibo", 284 | "HTML", 285 | "taobao-circle", 286 | "weibo-circle", 287 | "weibo-square", 288 | "CodeSandbox", 289 | "aliyun", 290 | "zhihu", 291 | "behance", 292 | "dribbble", 293 | "dribbble-square", 294 | "behance-square", 295 | "file-markdown", 296 | "instagram", 297 | "yuque", 298 | "slack", 299 | "slack-square" 300 | ] -------------------------------------------------------------------------------- /src/icon-list/Entypo.js: -------------------------------------------------------------------------------- 1 | export default entypo = [ 2 | "500px", 3 | "500px-with-circle", 4 | "add-to-list", 5 | "add-user", 6 | "address", 7 | "adjust", 8 | "air", 9 | "aircraft", 10 | "aircraft-landing", 11 | "aircraft-take-off", 12 | "align-bottom", 13 | "align-horizontal-middle", 14 | "align-left", 15 | "align-right", 16 | "align-top", 17 | "align-vertical-middle", 18 | "app-store", 19 | "archive", 20 | "area-graph", 21 | "arrow-bold-down", 22 | "arrow-bold-left", 23 | "arrow-bold-right", 24 | "arrow-bold-up", 25 | "arrow-down", 26 | "arrow-left", 27 | "arrow-long-down", 28 | "arrow-long-left", 29 | "arrow-long-right", 30 | "arrow-long-up", 31 | "arrow-right", 32 | "arrow-up", 33 | "arrow-with-circle-down", 34 | "arrow-with-circle-left", 35 | "arrow-with-circle-right", 36 | "arrow-with-circle-up", 37 | "attachment", 38 | "awareness-ribbon", 39 | "back", 40 | "back-in-time", 41 | "baidu", 42 | "bar-graph", 43 | "basecamp", 44 | "battery", 45 | "beamed-note", 46 | "behance", 47 | "bell", 48 | "blackboard", 49 | "block", 50 | "book", 51 | "bookmark", 52 | "bookmarks", 53 | "bowl", 54 | "box", 55 | "briefcase", 56 | "browser", 57 | "brush", 58 | "bucket", 59 | "bug", 60 | "cake", 61 | "calculator", 62 | "calendar", 63 | "camera", 64 | "ccw", 65 | "chat", 66 | "check", 67 | "chevron-down", 68 | "chevron-left", 69 | "chevron-right", 70 | "chevron-small-down", 71 | "chevron-small-left", 72 | "chevron-small-right", 73 | "chevron-small-up", 74 | "chevron-thin-down", 75 | "chevron-thin-left", 76 | "chevron-thin-right", 77 | "chevron-thin-up", 78 | "chevron-up", 79 | "chevron-with-circle-down", 80 | "chevron-with-circle-left", 81 | "chevron-with-circle-right", 82 | "chevron-with-circle-up", 83 | "circle", 84 | "circle-with-cross", 85 | "circle-with-minus", 86 | "circle-with-plus", 87 | "circular-graph", 88 | "clapperboard", 89 | "classic-computer", 90 | "clipboard", 91 | "clock", 92 | "cloud", 93 | "code", 94 | "cog", 95 | "colours", 96 | "compass", 97 | "controller-fast-backward", 98 | "controller-fast-forward", 99 | "controller-jump-to-start", 100 | "controller-next", 101 | "controller-paus", 102 | "controller-play", 103 | "controller-record", 104 | "controller-stop", 105 | "controller-volume", 106 | "copy", 107 | "creative-cloud", 108 | "creative-commons", 109 | "creative-commons-attribution", 110 | "creative-commons-noderivs", 111 | "creative-commons-noncommercial-eu", 112 | "creative-commons-noncommercial-us", 113 | "creative-commons-public-domain", 114 | "creative-commons-remix", 115 | "creative-commons-share", 116 | "creative-commons-sharealike", 117 | "credit", 118 | "credit-card", 119 | "crop", 120 | "cross", 121 | "cup", 122 | "cw", 123 | "cycle", 124 | "database", 125 | "dial-pad", 126 | "direction", 127 | "document", 128 | "document-landscape", 129 | "documents", 130 | "dot-single", 131 | "dots-three-horizontal", 132 | "dots-three-vertical", 133 | "dots-two-horizontal", 134 | "dots-two-vertical", 135 | "download", 136 | "dribbble", 137 | "dribbble-with-circle", 138 | "drink", 139 | "drive", 140 | "drop", 141 | "dropbox", 142 | "edit", 143 | "email", 144 | "emoji-flirt", 145 | "emoji-happy", 146 | "emoji-neutral", 147 | "emoji-sad", 148 | "erase", 149 | "eraser", 150 | "evernote", 151 | "export", 152 | "eye", 153 | "eye-with-line", 154 | "facebook", 155 | "facebook-with-circle", 156 | "feather", 157 | "fingerprint", 158 | "flag", 159 | "flash", 160 | "flashlight", 161 | "flat-brush", 162 | "flattr", 163 | "flickr", 164 | "flickr-with-circle", 165 | "flow-branch", 166 | "flow-cascade", 167 | "flow-line", 168 | "flow-parallel", 169 | "flow-tree", 170 | "flower", 171 | "folder", 172 | "folder-images", 173 | "folder-music", 174 | "folder-video", 175 | "forward", 176 | "foursquare", 177 | "funnel", 178 | "game-controller", 179 | "gauge", 180 | "github", 181 | "github-with-circle", 182 | "globe", 183 | "google-", 184 | "google--with-circle", 185 | "google-drive", 186 | "google-hangouts", 187 | "google-play", 188 | "graduation-cap", 189 | "grid", 190 | "grooveshark", 191 | "hair-cross", 192 | "hand", 193 | "heart", 194 | "heart-outlined", 195 | "help", 196 | "help-with-circle", 197 | "home", 198 | "hour-glass", 199 | "houzz", 200 | "icloud", 201 | "image", 202 | "image-inverted", 203 | "images", 204 | "inbox", 205 | "infinity", 206 | "info", 207 | "info-with-circle", 208 | "instagram", 209 | "instagram-with-circle", 210 | "install", 211 | "key", 212 | "keyboard", 213 | "lab-flask", 214 | "landline", 215 | "language", 216 | "laptop", 217 | "lastfm", 218 | "lastfm-with-circle", 219 | "layers", 220 | "leaf", 221 | "level-down", 222 | "level-up", 223 | "lifebuoy", 224 | "light-bulb", 225 | "light-down", 226 | "light-up", 227 | "line-graph", 228 | "link", 229 | "linkedin", 230 | "linkedin-with-circle", 231 | "list", 232 | "location", 233 | "location-pin", 234 | "lock", 235 | "lock-open", 236 | "log-out", 237 | "login", 238 | "loop", 239 | "magnet", 240 | "magnifying-glass", 241 | "mail", 242 | "mail-with-circle", 243 | "man", 244 | "map", 245 | "mask", 246 | "medal", 247 | "medium", 248 | "medium-with-circle", 249 | "megaphone", 250 | "menu", 251 | "merge", 252 | "message", 253 | "mic", 254 | "minus", 255 | "mixi", 256 | "mobile", 257 | "modern-mic", 258 | "moon", 259 | "mouse", 260 | "mouse-pointer", 261 | "music", 262 | "network", 263 | "new", 264 | "new-message", 265 | "news", 266 | "newsletter", 267 | "note", 268 | "notification", 269 | "notifications-off", 270 | "old-mobile", 271 | "old-phone", 272 | "onedrive", 273 | "open-book", 274 | "palette", 275 | "paper-plane", 276 | "paypal", 277 | "pencil", 278 | "phone", 279 | "picasa", 280 | "pie-chart", 281 | "pin", 282 | "pinterest", 283 | "pinterest-with-circle", 284 | "plus", 285 | "popup", 286 | "power-plug", 287 | "price-ribbon", 288 | "price-tag", 289 | "print", 290 | "progress-empty", 291 | "progress-full", 292 | "progress-one", 293 | "progress-two", 294 | "publish", 295 | "qq", 296 | "qq-with-circle", 297 | "quote", 298 | "radio", 299 | "raft", 300 | "raft-with-circle", 301 | "rainbow", 302 | "rdio", 303 | "rdio-with-circle", 304 | "remove-user", 305 | "renren", 306 | "reply", 307 | "reply-all", 308 | "resize-100-", 309 | "resize-full-screen", 310 | "retweet", 311 | "rocket", 312 | "round-brush", 313 | "rss", 314 | "ruler", 315 | "save", 316 | "scissors", 317 | "scribd", 318 | "select-arrows", 319 | "share", 320 | "share-alternative", 321 | "shareable", 322 | "shield", 323 | "shop", 324 | "shopping-bag", 325 | "shopping-basket", 326 | "shopping-cart", 327 | "shuffle", 328 | "signal", 329 | "sina-weibo", 330 | "skype", 331 | "skype-with-circle", 332 | "slideshare", 333 | "smashing", 334 | "sound", 335 | "sound-mix", 336 | "sound-mute", 337 | "soundcloud", 338 | "sports-club", 339 | "spotify", 340 | "spotify-with-circle", 341 | "spreadsheet", 342 | "squared-cross", 343 | "squared-minus", 344 | "squared-plus", 345 | "star", 346 | "star-outlined", 347 | "stopwatch", 348 | "stumbleupon", 349 | "stumbleupon-with-circle", 350 | "suitcase", 351 | "swap", 352 | "swarm", 353 | "sweden", 354 | "switch", 355 | "tablet", 356 | "tablet-mobile-combo", 357 | "tag", 358 | "text", 359 | "text-document", 360 | "text-document-inverted", 361 | "thermometer", 362 | "thumbs-down", 363 | "thumbs-up", 364 | "thunder-cloud", 365 | "ticket", 366 | "time-slot", 367 | "tools", 368 | "traffic-cone", 369 | "trash", 370 | "tree", 371 | "triangle-down", 372 | "triangle-left", 373 | "triangle-right", 374 | "triangle-up", 375 | "tripadvisor", 376 | "trophy", 377 | "tumblr", 378 | "tumblr-with-circle", 379 | "tv", 380 | "twitter", 381 | "twitter-with-circle", 382 | "typing", 383 | "uninstall", 384 | "unread", 385 | "untag", 386 | "upload", 387 | "upload-to-cloud", 388 | "user", 389 | "users", 390 | "v-card", 391 | "video", 392 | "video-camera", 393 | "vimeo", 394 | "vimeo-with-circle", 395 | "vine", 396 | "vine-with-circle", 397 | "vinyl", 398 | "vk", 399 | "vk-alternitive", 400 | "vk-with-circle", 401 | "voicemail", 402 | "wallet", 403 | "warning", 404 | "water", 405 | "windows-store", 406 | "xing", 407 | "xing-with-circle", 408 | "yelp", 409 | "youko", 410 | "youko-with-circle", 411 | "youtube", 412 | "youtube-with-circle" 413 | ] -------------------------------------------------------------------------------- /src/icon-list/EvilIcons.js: -------------------------------------------------------------------------------- 1 | export default evilIcons = [ 2 | "archive", 3 | "arrow-down", 4 | "arrow-left", 5 | "arrow-right", 6 | "arrow-up", 7 | "bell", 8 | "calendar", 9 | "camera", 10 | "cart", 11 | "chart", 12 | "check", 13 | "chevron-down", 14 | "chevron-left", 15 | "chevron-right", 16 | "chevron-up", 17 | "clock", 18 | "close", 19 | "close-o", 20 | "comment", 21 | "credit-card", 22 | "envelope", 23 | "exclamation", 24 | "external-link", 25 | "eye", 26 | "gear", 27 | "heart", 28 | "image", 29 | "like", 30 | "link", 31 | "location", 32 | "lock", 33 | "minus", 34 | "navicon", 35 | "paperclip", 36 | "pencil", 37 | "play", 38 | "plus", 39 | "pointer", 40 | "question", 41 | "redo", 42 | "refresh", 43 | "retweet", 44 | "sc-facebook", 45 | "sc-github", 46 | "sc-google-plus", 47 | "sc-instagram", 48 | "sc-linkedin", 49 | "sc-odnoklassniki", 50 | "sc-pinterest", 51 | "sc-skype", 52 | "sc-soundcloud", 53 | "sc-telegram", 54 | "sc-tumblr", 55 | "sc-twitter", 56 | "sc-vimeo", 57 | "sc-vk", 58 | "sc-youtube", 59 | "search", 60 | "share-apple", 61 | "share-google", 62 | "spinner", 63 | "spinner-2", 64 | "spinner-3", 65 | "star", 66 | "tag", 67 | "trash", 68 | "trophy", 69 | "undo", 70 | "unlock", 71 | "user" 72 | ] -------------------------------------------------------------------------------- /src/icon-list/Feather.js: -------------------------------------------------------------------------------- 1 | export default feather = [ 2 | "activity", 3 | "airplay", 4 | "alert-circle", 5 | "alert-octagon", 6 | "alert-triangle", 7 | "align-center", 8 | "align-justify", 9 | "align-left", 10 | "align-right", 11 | "anchor", 12 | "aperture", 13 | "archive", 14 | "arrow-down", 15 | "arrow-down-circle", 16 | "arrow-down-left", 17 | "arrow-down-right", 18 | "arrow-left", 19 | "arrow-left-circle", 20 | "arrow-right", 21 | "arrow-right-circle", 22 | "arrow-up", 23 | "arrow-up-circle", 24 | "arrow-up-left", 25 | "arrow-up-right", 26 | "at-sign", 27 | "award", 28 | "bar-chart", 29 | "bar-chart-2", 30 | "battery", 31 | "battery-charging", 32 | "bell", 33 | "bell-off", 34 | "bluetooth", 35 | "bold", 36 | "book", 37 | "book-open", 38 | "bookmark", 39 | "box", 40 | "briefcase", 41 | "calendar", 42 | "camera", 43 | "camera-off", 44 | "cast", 45 | "check", 46 | "check-circle", 47 | "check-square", 48 | "chevron-down", 49 | "chevron-left", 50 | "chevron-right", 51 | "chevron-up", 52 | "chevrons-down", 53 | "chevrons-left", 54 | "chevrons-right", 55 | "chevrons-up", 56 | "chrome", 57 | "circle", 58 | "clipboard", 59 | "clock", 60 | "cloud", 61 | "cloud-drizzle", 62 | "cloud-lightning", 63 | "cloud-off", 64 | "cloud-rain", 65 | "cloud-snow", 66 | "code", 67 | "codepen", 68 | "command", 69 | "compass", 70 | "copy", 71 | "corner-down-left", 72 | "corner-down-right", 73 | "corner-left-down", 74 | "corner-left-up", 75 | "corner-right-down", 76 | "corner-right-up", 77 | "corner-up-left", 78 | "corner-up-right", 79 | "cpu", 80 | "credit-card", 81 | "crop", 82 | "crosshair", 83 | "database", 84 | "delete", 85 | "disc", 86 | "dollar-sign", 87 | "download", 88 | "download-cloud", 89 | "droplet", 90 | "edit", 91 | "edit-2", 92 | "edit-3", 93 | "external-link", 94 | "eye", 95 | "eye-off", 96 | "facebook", 97 | "fast-forward", 98 | "feather", 99 | "file", 100 | "file-minus", 101 | "file-plus", 102 | "file-text", 103 | "film", 104 | "filter", 105 | "flag", 106 | "folder", 107 | "folder-minus", 108 | "folder-plus", 109 | "gift", 110 | "git-branch", 111 | "git-commit", 112 | "git-merge", 113 | "git-pull-request", 114 | "github", 115 | "gitlab", 116 | "globe", 117 | "grid", 118 | "hard-drive", 119 | "hash", 120 | "headphones", 121 | "heart", 122 | "help-circle", 123 | "home", 124 | "image", 125 | "inbox", 126 | "info", 127 | "instagram", 128 | "italic", 129 | "layers", 130 | "layout", 131 | "life-buoy", 132 | "link", 133 | "link-2", 134 | "linkedin", 135 | "list", 136 | "loader", 137 | "lock", 138 | "log-in", 139 | "log-out", 140 | "mail", 141 | "map", 142 | "map-pin", 143 | "maximize", 144 | "maximize-2", 145 | "menu", 146 | "message-circle", 147 | "message-square", 148 | "mic", 149 | "mic-off", 150 | "minimize", 151 | "minimize-2", 152 | "minus", 153 | "minus-circle", 154 | "minus-square", 155 | "monitor", 156 | "moon", 157 | "more-horizontal", 158 | "more-vertical", 159 | "move", 160 | "music", 161 | "navigation", 162 | "navigation-2", 163 | "octagon", 164 | "package", 165 | "paperclip", 166 | "pause", 167 | "pause-circle", 168 | "percent", 169 | "phone", 170 | "phone-call", 171 | "phone-forwarded", 172 | "phone-incoming", 173 | "phone-missed", 174 | "phone-off", 175 | "phone-outgoing", 176 | "pie-chart", 177 | "play", 178 | "play-circle", 179 | "plus", 180 | "plus-circle", 181 | "plus-square", 182 | "pocket", 183 | "power", 184 | "printer", 185 | "radio", 186 | "refresh-ccw", 187 | "refresh-cw", 188 | "repeat", 189 | "rewind", 190 | "rotate-ccw", 191 | "rotate-cw", 192 | "rss", 193 | "save", 194 | "scissors", 195 | "search", 196 | "send", 197 | "server", 198 | "settings", 199 | "share", 200 | "share-2", 201 | "shield", 202 | "shield-off", 203 | "shopping-bag", 204 | "shopping-cart", 205 | "shuffle", 206 | "sidebar", 207 | "skip-back", 208 | "skip-forward", 209 | "slack", 210 | "slash", 211 | "sliders", 212 | "smartphone", 213 | "speaker", 214 | "square", 215 | "star", 216 | "stop-circle", 217 | "sun", 218 | "sunrise", 219 | "sunset", 220 | "tablet", 221 | "tag", 222 | "target", 223 | "terminal", 224 | "thermometer", 225 | "thumbs-down", 226 | "thumbs-up", 227 | "toggle-left", 228 | "toggle-right", 229 | "trash", 230 | "trash-2", 231 | "trending-down", 232 | "trending-up", 233 | "triangle", 234 | "truck", 235 | "tv", 236 | "twitter", 237 | "type", 238 | "umbrella", 239 | "underline", 240 | "unlock", 241 | "upload", 242 | "upload-cloud", 243 | "user", 244 | "user-check", 245 | "user-minus", 246 | "user-plus", 247 | "user-x", 248 | "users", 249 | "video", 250 | "video-off", 251 | "voicemail", 252 | "volume", 253 | "volume-1", 254 | "volume-2", 255 | "volume-x", 256 | "watch", 257 | "wifi", 258 | "wifi-off", 259 | "wind", 260 | "x", 261 | "x-circle", 262 | "x-square", 263 | "youtube", 264 | "zap", 265 | "zap-off", 266 | "zoom-in", 267 | "zoom-out" 268 | ] -------------------------------------------------------------------------------- /src/icon-list/FontAwesome.js: -------------------------------------------------------------------------------- 1 | export default fontAwesome = [ 2 | "glass", 3 | "music", 4 | "search", 5 | "envelope-o", 6 | "heart", 7 | "star", 8 | "star-o", 9 | "user", 10 | "film", 11 | "th-large", 12 | "th", 13 | "th-list", 14 | "check", 15 | "remove", 16 | "close", 17 | "times", 18 | "search-plus", 19 | "search-minus", 20 | "power-off", 21 | "signal", 22 | "gear", 23 | "cog", 24 | "trash-o", 25 | "home", 26 | "file-o", 27 | "clock-o", 28 | "road", 29 | "download", 30 | "arrow-circle-o-down", 31 | "arrow-circle-o-up", 32 | "inbox", 33 | "play-circle-o", 34 | "rotate-right", 35 | "repeat", 36 | "refresh", 37 | "list-alt", 38 | "lock", 39 | "flag", 40 | "headphones", 41 | "volume-off", 42 | "volume-down", 43 | "volume-up", 44 | "qrcode", 45 | "barcode", 46 | "tag", 47 | "tags", 48 | "book", 49 | "bookmark", 50 | "print", 51 | "camera", 52 | "font", 53 | "bold", 54 | "italic", 55 | "text-height", 56 | "text-width", 57 | "align-left", 58 | "align-center", 59 | "align-right", 60 | "align-justify", 61 | "list", 62 | "dedent", 63 | "outdent", 64 | "indent", 65 | "video-camera", 66 | "photo", 67 | "image", 68 | "picture-o", 69 | "pencil", 70 | "map-marker", 71 | "adjust", 72 | "tint", 73 | "edit", 74 | "pencil-square-o", 75 | "share-square-o", 76 | "check-square-o", 77 | "arrows", 78 | "step-backward", 79 | "fast-backward", 80 | "backward", 81 | "play", 82 | "pause", 83 | "stop", 84 | "forward", 85 | "fast-forward", 86 | "step-forward", 87 | "eject", 88 | "chevron-left", 89 | "chevron-right", 90 | "plus-circle", 91 | "minus-circle", 92 | "times-circle", 93 | "check-circle", 94 | "question-circle", 95 | "info-circle", 96 | "crosshairs", 97 | "times-circle-o", 98 | "check-circle-o", 99 | "ban", 100 | "arrow-left", 101 | "arrow-right", 102 | "arrow-up", 103 | "arrow-down", 104 | "mail-forward", 105 | "share", 106 | "expand", 107 | "compress", 108 | "plus", 109 | "minus", 110 | "asterisk", 111 | "exclamation-circle", 112 | "gift", 113 | "leaf", 114 | "fire", 115 | "eye", 116 | "eye-slash", 117 | "warning", 118 | "exclamation-triangle", 119 | "plane", 120 | "calendar", 121 | "random", 122 | "comment", 123 | "magnet", 124 | "chevron-up", 125 | "chevron-down", 126 | "retweet", 127 | "shopping-cart", 128 | "folder", 129 | "folder-open", 130 | "arrows-v", 131 | "arrows-h", 132 | "bar-chart-o", 133 | "bar-chart", 134 | "twitter-square", 135 | "facebook-square", 136 | "camera-retro", 137 | "key", 138 | "gears", 139 | "cogs", 140 | "comments", 141 | "thumbs-o-up", 142 | "thumbs-o-down", 143 | "star-half", 144 | "heart-o", 145 | "sign-out", 146 | "linkedin-square", 147 | "thumb-tack", 148 | "external-link", 149 | "sign-in", 150 | "trophy", 151 | "github-square", 152 | "upload", 153 | "lemon-o", 154 | "phone", 155 | "square-o", 156 | "bookmark-o", 157 | "phone-square", 158 | "twitter", 159 | "facebook-f", 160 | "facebook", 161 | "github", 162 | "unlock", 163 | "credit-card", 164 | "feed", 165 | "rss", 166 | "hdd-o", 167 | "bullhorn", 168 | "bell", 169 | "certificate", 170 | "hand-o-right", 171 | "hand-o-left", 172 | "hand-o-up", 173 | "hand-o-down", 174 | "arrow-circle-left", 175 | "arrow-circle-right", 176 | "arrow-circle-up", 177 | "arrow-circle-down", 178 | "globe", 179 | "wrench", 180 | "tasks", 181 | "filter", 182 | "briefcase", 183 | "arrows-alt", 184 | "group", 185 | "users", 186 | "chain", 187 | "link", 188 | "cloud", 189 | "flask", 190 | "cut", 191 | "scissors", 192 | "copy", 193 | "files-o", 194 | "paperclip", 195 | "save", 196 | "floppy-o", 197 | "square", 198 | "navicon", 199 | "reorder", 200 | "bars", 201 | "list-ul", 202 | "list-ol", 203 | "strikethrough", 204 | "underline", 205 | "table", 206 | "magic", 207 | "truck", 208 | "pinterest", 209 | "pinterest-square", 210 | "google-plus-square", 211 | "google-plus", 212 | "money", 213 | "caret-down", 214 | "caret-up", 215 | "caret-left", 216 | "caret-right", 217 | "columns", 218 | "unsorted", 219 | "sort", 220 | "sort-down", 221 | "sort-desc", 222 | "sort-up", 223 | "sort-asc", 224 | "envelope", 225 | "linkedin", 226 | "rotate-left", 227 | "undo", 228 | "legal", 229 | "gavel", 230 | "dashboard", 231 | "tachometer", 232 | "comment-o", 233 | "comments-o", 234 | "flash", 235 | "bolt", 236 | "sitemap", 237 | "umbrella", 238 | "paste", 239 | "clipboard", 240 | "lightbulb-o", 241 | "exchange", 242 | "cloud-download", 243 | "cloud-upload", 244 | "user-md", 245 | "stethoscope", 246 | "suitcase", 247 | "bell-o", 248 | "coffee", 249 | "cutlery", 250 | "file-text-o", 251 | "building-o", 252 | "hospital-o", 253 | "ambulance", 254 | "medkit", 255 | "fighter-jet", 256 | "beer", 257 | "h-square", 258 | "plus-square", 259 | "angle-double-left", 260 | "angle-double-right", 261 | "angle-double-up", 262 | "angle-double-down", 263 | "angle-left", 264 | "angle-right", 265 | "angle-up", 266 | "angle-down", 267 | "desktop", 268 | "laptop", 269 | "tablet", 270 | "mobile-phone", 271 | "mobile", 272 | "circle-o", 273 | "quote-left", 274 | "quote-right", 275 | "spinner", 276 | "circle", 277 | "mail-reply", 278 | "reply", 279 | "github-alt", 280 | "folder-o", 281 | "folder-open-o", 282 | "smile-o", 283 | "frown-o", 284 | "meh-o", 285 | "gamepad", 286 | "keyboard-o", 287 | "flag-o", 288 | "flag-checkered", 289 | "terminal", 290 | "code", 291 | "mail-reply-all", 292 | "reply-all", 293 | "star-half-empty", 294 | "star-half-full", 295 | "star-half-o", 296 | "location-arrow", 297 | "crop", 298 | "code-fork", 299 | "unlink", 300 | "chain-broken", 301 | "question", 302 | "info", 303 | "exclamation", 304 | "superscript", 305 | "subscript", 306 | "eraser", 307 | "puzzle-piece", 308 | "microphone", 309 | "microphone-slash", 310 | "shield", 311 | "calendar-o", 312 | "fire-extinguisher", 313 | "rocket", 314 | "maxcdn", 315 | "chevron-circle-left", 316 | "chevron-circle-right", 317 | "chevron-circle-up", 318 | "chevron-circle-down", 319 | "html5", 320 | "css3", 321 | "anchor", 322 | "unlock-alt", 323 | "bullseye", 324 | "ellipsis-h", 325 | "ellipsis-v", 326 | "rss-square", 327 | "play-circle", 328 | "ticket", 329 | "minus-square", 330 | "minus-square-o", 331 | "level-up", 332 | "level-down", 333 | "check-square", 334 | "pencil-square", 335 | "external-link-square", 336 | "share-square", 337 | "compass", 338 | "toggle-down", 339 | "caret-square-o-down", 340 | "toggle-up", 341 | "caret-square-o-up", 342 | "toggle-right", 343 | "caret-square-o-right", 344 | "euro", 345 | "eur", 346 | "gbp", 347 | "dollar", 348 | "usd", 349 | "rupee", 350 | "inr", 351 | "cny", 352 | "rmb", 353 | "yen", 354 | "jpy", 355 | "ruble", 356 | "rouble", 357 | "rub", 358 | "won", 359 | "krw", 360 | "bitcoin", 361 | "btc", 362 | "file", 363 | "file-text", 364 | "sort-alpha-asc", 365 | "sort-alpha-desc", 366 | "sort-amount-asc", 367 | "sort-amount-desc", 368 | "sort-numeric-asc", 369 | "sort-numeric-desc", 370 | "thumbs-up", 371 | "thumbs-down", 372 | "youtube-square", 373 | "youtube", 374 | "xing", 375 | "xing-square", 376 | "youtube-play", 377 | "dropbox", 378 | "stack-overflow", 379 | "instagram", 380 | "flickr", 381 | "adn", 382 | "bitbucket", 383 | "bitbucket-square", 384 | "tumblr", 385 | "tumblr-square", 386 | "long-arrow-down", 387 | "long-arrow-up", 388 | "long-arrow-left", 389 | "long-arrow-right", 390 | "apple", 391 | "windows", 392 | "android", 393 | "linux", 394 | "dribbble", 395 | "skype", 396 | "foursquare", 397 | "trello", 398 | "female", 399 | "male", 400 | "gittip", 401 | "gratipay", 402 | "sun-o", 403 | "moon-o", 404 | "archive", 405 | "bug", 406 | "vk", 407 | "weibo", 408 | "renren", 409 | "pagelines", 410 | "stack-exchange", 411 | "arrow-circle-o-right", 412 | "arrow-circle-o-left", 413 | "toggle-left", 414 | "caret-square-o-left", 415 | "dot-circle-o", 416 | "wheelchair", 417 | "vimeo-square", 418 | "turkish-lira", 419 | "try", 420 | "plus-square-o", 421 | "space-shuttle", 422 | "slack", 423 | "envelope-square", 424 | "wordpress", 425 | "openid", 426 | "institution", 427 | "bank", 428 | "university", 429 | "mortar-board", 430 | "graduation-cap", 431 | "yahoo", 432 | "google", 433 | "reddit", 434 | "reddit-square", 435 | "stumbleupon-circle", 436 | "stumbleupon", 437 | "delicious", 438 | "digg", 439 | "pied-piper-pp", 440 | "pied-piper-alt", 441 | "drupal", 442 | "joomla", 443 | "language", 444 | "fax", 445 | "building", 446 | "child", 447 | "paw", 448 | "spoon", 449 | "cube", 450 | "cubes", 451 | "behance", 452 | "behance-square", 453 | "steam", 454 | "steam-square", 455 | "recycle", 456 | "automobile", 457 | "car", 458 | "cab", 459 | "taxi", 460 | "tree", 461 | "spotify", 462 | "deviantart", 463 | "soundcloud", 464 | "database", 465 | "file-pdf-o", 466 | "file-word-o", 467 | "file-excel-o", 468 | "file-powerpoint-o", 469 | "file-photo-o", 470 | "file-picture-o", 471 | "file-image-o", 472 | "file-zip-o", 473 | "file-archive-o", 474 | "file-sound-o", 475 | "file-audio-o", 476 | "file-movie-o", 477 | "file-video-o", 478 | "file-code-o", 479 | "vine", 480 | "codepen", 481 | "jsfiddle", 482 | "life-bouy", 483 | "life-buoy", 484 | "life-saver", 485 | "support", 486 | "life-ring", 487 | "circle-o-notch", 488 | "ra", 489 | "resistance", 490 | "rebel", 491 | "ge", 492 | "empire", 493 | "git-square", 494 | "git", 495 | "y-combinator-square", 496 | "yc-square", 497 | "hacker-news", 498 | "tencent-weibo", 499 | "qq", 500 | "wechat", 501 | "weixin", 502 | "send", 503 | "paper-plane", 504 | "send-o", 505 | "paper-plane-o", 506 | "history", 507 | "circle-thin", 508 | "header", 509 | "paragraph", 510 | "sliders", 511 | "share-alt", 512 | "share-alt-square", 513 | "bomb", 514 | "soccer-ball-o", 515 | "futbol-o", 516 | "tty", 517 | "binoculars", 518 | "plug", 519 | "slideshare", 520 | "twitch", 521 | "yelp", 522 | "newspaper-o", 523 | "wifi", 524 | "calculator", 525 | "paypal", 526 | "google-wallet", 527 | "cc-visa", 528 | "cc-mastercard", 529 | "cc-discover", 530 | "cc-amex", 531 | "cc-paypal", 532 | "cc-stripe", 533 | "bell-slash", 534 | "bell-slash-o", 535 | "trash", 536 | "copyright", 537 | "at", 538 | "eyedropper", 539 | "paint-brush", 540 | "birthday-cake", 541 | "area-chart", 542 | "pie-chart", 543 | "line-chart", 544 | "lastfm", 545 | "lastfm-square", 546 | "toggle-off", 547 | "toggle-on", 548 | "bicycle", 549 | "bus", 550 | "ioxhost", 551 | "angellist", 552 | "cc", 553 | "shekel", 554 | "sheqel", 555 | "ils", 556 | "meanpath", 557 | "buysellads", 558 | "connectdevelop", 559 | "dashcube", 560 | "forumbee", 561 | "leanpub", 562 | "sellsy", 563 | "shirtsinbulk", 564 | "simplybuilt", 565 | "skyatlas", 566 | "cart-plus", 567 | "cart-arrow-down", 568 | "diamond", 569 | "ship", 570 | "user-secret", 571 | "motorcycle", 572 | "street-view", 573 | "heartbeat", 574 | "venus", 575 | "mars", 576 | "mercury", 577 | "intersex", 578 | "transgender", 579 | "transgender-alt", 580 | "venus-double", 581 | "mars-double", 582 | "venus-mars", 583 | "mars-stroke", 584 | "mars-stroke-v", 585 | "mars-stroke-h", 586 | "neuter", 587 | "genderless", 588 | "facebook-official", 589 | "pinterest-p", 590 | "whatsapp", 591 | "server", 592 | "user-plus", 593 | "user-times", 594 | "hotel", 595 | "bed", 596 | "viacoin", 597 | "train", 598 | "subway", 599 | "medium", 600 | "yc", 601 | "y-combinator", 602 | "optin-monster", 603 | "opencart", 604 | "expeditedssl", 605 | "battery-4", 606 | "battery", 607 | "battery-full", 608 | "battery-3", 609 | "battery-three-quarters", 610 | "battery-2", 611 | "battery-half", 612 | "battery-1", 613 | "battery-quarter", 614 | "battery-0", 615 | "battery-empty", 616 | "mouse-pointer", 617 | "i-cursor", 618 | "object-group", 619 | "object-ungroup", 620 | "sticky-note", 621 | "sticky-note-o", 622 | "cc-jcb", 623 | "cc-diners-club", 624 | "clone", 625 | "balance-scale", 626 | "hourglass-o", 627 | "hourglass-1", 628 | "hourglass-start", 629 | "hourglass-2", 630 | "hourglass-half", 631 | "hourglass-3", 632 | "hourglass-end", 633 | "hourglass", 634 | "hand-grab-o", 635 | "hand-rock-o", 636 | "hand-stop-o", 637 | "hand-paper-o", 638 | "hand-scissors-o", 639 | "hand-lizard-o", 640 | "hand-spock-o", 641 | "hand-pointer-o", 642 | "hand-peace-o", 643 | "trademark", 644 | "registered", 645 | "creative-commons", 646 | "gg", 647 | "gg-circle", 648 | "tripadvisor", 649 | "odnoklassniki", 650 | "odnoklassniki-square", 651 | "get-pocket", 652 | "wikipedia-w", 653 | "safari", 654 | "chrome", 655 | "firefox", 656 | "opera", 657 | "internet-explorer", 658 | "tv", 659 | "television", 660 | "contao", 661 | "500px", 662 | "amazon", 663 | "calendar-plus-o", 664 | "calendar-minus-o", 665 | "calendar-times-o", 666 | "calendar-check-o", 667 | "industry", 668 | "map-pin", 669 | "map-signs", 670 | "map-o", 671 | "map", 672 | "commenting", 673 | "commenting-o", 674 | "houzz", 675 | "vimeo", 676 | "black-tie", 677 | "fonticons", 678 | "reddit-alien", 679 | "edge", 680 | "credit-card-alt", 681 | "codiepie", 682 | "modx", 683 | "fort-awesome", 684 | "usb", 685 | "product-hunt", 686 | "mixcloud", 687 | "scribd", 688 | "pause-circle", 689 | "pause-circle-o", 690 | "stop-circle", 691 | "stop-circle-o", 692 | "shopping-bag", 693 | "shopping-basket", 694 | "hashtag", 695 | "bluetooth", 696 | "bluetooth-b", 697 | "percent", 698 | "gitlab", 699 | "wpbeginner", 700 | "wpforms", 701 | "envira", 702 | "universal-access", 703 | "wheelchair-alt", 704 | "question-circle-o", 705 | "blind", 706 | "audio-description", 707 | "volume-control-phone", 708 | "braille", 709 | "assistive-listening-systems", 710 | "asl-interpreting", 711 | "american-sign-language-interpreting", 712 | "deafness", 713 | "hard-of-hearing", 714 | "deaf", 715 | "glide", 716 | "glide-g", 717 | "signing", 718 | "sign-language", 719 | "low-vision", 720 | "viadeo", 721 | "viadeo-square", 722 | "snapchat", 723 | "snapchat-ghost", 724 | "snapchat-square", 725 | "pied-piper", 726 | "first-order", 727 | "yoast", 728 | "themeisle", 729 | "google-plus-circle", 730 | "google-plus-official", 731 | "fa", 732 | "font-awesome", 733 | "handshake-o", 734 | "envelope-open", 735 | "envelope-open-o", 736 | "linode", 737 | "address-book", 738 | "address-book-o", 739 | "vcard", 740 | "address-card", 741 | "vcard-o", 742 | "address-card-o", 743 | "user-circle", 744 | "user-circle-o", 745 | "user-o", 746 | "id-badge", 747 | "drivers-license", 748 | "id-card", 749 | "drivers-license-o", 750 | "id-card-o", 751 | "quora", 752 | "free-code-camp", 753 | "telegram", 754 | "thermometer-4", 755 | "thermometer", 756 | "thermometer-full", 757 | "thermometer-3", 758 | "thermometer-three-quarters", 759 | "thermometer-2", 760 | "thermometer-half", 761 | "thermometer-1", 762 | "thermometer-quarter", 763 | "thermometer-0", 764 | "thermometer-empty", 765 | "shower", 766 | "bathtub", 767 | "s15", 768 | "bath", 769 | "podcast", 770 | "window-maximize", 771 | "window-minimize", 772 | "window-restore", 773 | "times-rectangle", 774 | "window-close", 775 | "times-rectangle-o", 776 | "window-close-o", 777 | "bandcamp", 778 | "grav", 779 | "etsy", 780 | "imdb", 781 | "ravelry", 782 | "eercast", 783 | "microchip", 784 | "snowflake-o", 785 | "superpowers", 786 | "wpexplorer", 787 | "meetup" 788 | ] -------------------------------------------------------------------------------- /src/icon-list/FontAwesome5.js: -------------------------------------------------------------------------------- 1 | export default fontAwesome5 = [ 2 | "500px", 3 | "accessible-icon", 4 | "accusoft", 5 | "acquisitions-incorporated", 6 | "ad", 7 | "address-book", 8 | "address-card", 9 | "adjust", 10 | "adn", 11 | "adversal", 12 | "affiliatetheme", 13 | "air-freshener", 14 | "algolia", 15 | "align-center", 16 | "align-justify", 17 | "align-left", 18 | "align-right", 19 | "alipay", 20 | "allergies", 21 | "amazon", 22 | "amazon-pay", 23 | "ambulance", 24 | "american-sign-language-interpreting", 25 | "amilia", 26 | "anchor", 27 | "android", 28 | "angellist", 29 | "angle-double-down", 30 | "angle-double-left", 31 | "angle-double-right", 32 | "angle-double-up", 33 | "angle-down", 34 | "angle-left", 35 | "angle-right", 36 | "angle-up", 37 | "angry", 38 | "angrycreative", 39 | "angular", 40 | "ankh", 41 | "app-store", 42 | "app-store-ios", 43 | "apper", 44 | "apple", 45 | "apple-alt", 46 | "apple-pay", 47 | "archive", 48 | "archway", 49 | "arrow-alt-circle-down", 50 | "arrow-alt-circle-left", 51 | "arrow-alt-circle-right", 52 | "arrow-alt-circle-up", 53 | "arrow-circle-down", 54 | "arrow-circle-left", 55 | "arrow-circle-right", 56 | "arrow-circle-up", 57 | "arrow-down", 58 | "arrow-left", 59 | "arrow-right", 60 | "arrow-up", 61 | "arrows-alt", 62 | "arrows-alt-h", 63 | "arrows-alt-v", 64 | "assistive-listening-systems", 65 | "asterisk", 66 | "asymmetrik", 67 | "at", 68 | "atlas", 69 | "atom", 70 | "audible", 71 | "audio-description", 72 | "autoprefixer", 73 | "avianex", 74 | "aviato", 75 | "award", 76 | "aws", 77 | "backspace", 78 | "backward", 79 | "balance-scale", 80 | "ban", 81 | "band-aid", 82 | "bandcamp", 83 | "barcode", 84 | "bars", 85 | "baseball-ball", 86 | "basketball-ball", 87 | "bath", 88 | "battery-empty", 89 | "battery-full", 90 | "battery-half", 91 | "battery-quarter", 92 | "battery-three-quarters", 93 | "bed", 94 | "beer", 95 | "behance", 96 | "behance-square", 97 | "bell", 98 | "bell-slash", 99 | "bezier-curve", 100 | "bible", 101 | "bicycle", 102 | "bimobject", 103 | "binoculars", 104 | "birthday-cake", 105 | "bitbucket", 106 | "bitcoin", 107 | "bity", 108 | "black-tie", 109 | "blackberry", 110 | "blender", 111 | "blender-phone", 112 | "blind", 113 | "blogger", 114 | "blogger-b", 115 | "bluetooth", 116 | "bluetooth-b", 117 | "bold", 118 | "bolt", 119 | "bomb", 120 | "bone", 121 | "bong", 122 | "book", 123 | "book-dead", 124 | "book-open", 125 | "book-reader", 126 | "bookmark", 127 | "bowling-ball", 128 | "box", 129 | "box-open", 130 | "boxes", 131 | "braille", 132 | "brain", 133 | "briefcase", 134 | "briefcase-medical", 135 | "broadcast-tower", 136 | "broom", 137 | "brush", 138 | "btc", 139 | "bug", 140 | "building", 141 | "bullhorn", 142 | "bullseye", 143 | "burn", 144 | "buromobelexperte", 145 | "bus", 146 | "bus-alt", 147 | "business-time", 148 | "buysellads", 149 | "calculator", 150 | "calendar", 151 | "calendar-alt", 152 | "calendar-check", 153 | "calendar-minus", 154 | "calendar-plus", 155 | "calendar-times", 156 | "camera", 157 | "camera-retro", 158 | "campground", 159 | "cannabis", 160 | "capsules", 161 | "car", 162 | "car-alt", 163 | "car-battery", 164 | "car-crash", 165 | "car-side", 166 | "caret-down", 167 | "caret-left", 168 | "caret-right", 169 | "caret-square-down", 170 | "caret-square-left", 171 | "caret-square-right", 172 | "caret-square-up", 173 | "caret-up", 174 | "cart-arrow-down", 175 | "cart-plus", 176 | "cat", 177 | "cc-amazon-pay", 178 | "cc-amex", 179 | "cc-apple-pay", 180 | "cc-diners-club", 181 | "cc-discover", 182 | "cc-jcb", 183 | "cc-mastercard", 184 | "cc-paypal", 185 | "cc-stripe", 186 | "cc-visa", 187 | "centercode", 188 | "certificate", 189 | "chair", 190 | "chalkboard", 191 | "chalkboard-teacher", 192 | "charging-station", 193 | "chart-area", 194 | "chart-bar", 195 | "chart-line", 196 | "chart-pie", 197 | "check", 198 | "check-circle", 199 | "check-double", 200 | "check-square", 201 | "chess", 202 | "chess-bishop", 203 | "chess-board", 204 | "chess-king", 205 | "chess-knight", 206 | "chess-pawn", 207 | "chess-queen", 208 | "chess-rook", 209 | "chevron-circle-down", 210 | "chevron-circle-left", 211 | "chevron-circle-right", 212 | "chevron-circle-up", 213 | "chevron-down", 214 | "chevron-left", 215 | "chevron-right", 216 | "chevron-up", 217 | "child", 218 | "chrome", 219 | "church", 220 | "circle", 221 | "circle-notch", 222 | "city", 223 | "clipboard", 224 | "clipboard-check", 225 | "clipboard-list", 226 | "clock", 227 | "clone", 228 | "closed-captioning", 229 | "cloud", 230 | "cloud-download-alt", 231 | "cloud-meatball", 232 | "cloud-moon", 233 | "cloud-moon-rain", 234 | "cloud-rain", 235 | "cloud-showers-heavy", 236 | "cloud-sun", 237 | "cloud-sun-rain", 238 | "cloud-upload-alt", 239 | "cloudscale", 240 | "cloudsmith", 241 | "cloudversify", 242 | "cocktail", 243 | "code", 244 | "code-branch", 245 | "codepen", 246 | "codiepie", 247 | "coffee", 248 | "cog", 249 | "cogs", 250 | "coins", 251 | "columns", 252 | "comment", 253 | "comment-alt", 254 | "comment-dollar", 255 | "comment-dots", 256 | "comment-slash", 257 | "comments", 258 | "comments-dollar", 259 | "compact-disc", 260 | "compass", 261 | "compress", 262 | "concierge-bell", 263 | "connectdevelop", 264 | "contao", 265 | "cookie", 266 | "cookie-bite", 267 | "copy", 268 | "copyright", 269 | "couch", 270 | "cpanel", 271 | "creative-commons", 272 | "creative-commons-by", 273 | "creative-commons-nc", 274 | "creative-commons-nc-eu", 275 | "creative-commons-nc-jp", 276 | "creative-commons-nd", 277 | "creative-commons-pd", 278 | "creative-commons-pd-alt", 279 | "creative-commons-remix", 280 | "creative-commons-sa", 281 | "creative-commons-sampling", 282 | "creative-commons-sampling-plus", 283 | "creative-commons-share", 284 | "creative-commons-zero", 285 | "credit-card", 286 | "critical-role", 287 | "crop", 288 | "crop-alt", 289 | "cross", 290 | "crosshairs", 291 | "crow", 292 | "crown", 293 | "css3", 294 | "css3-alt", 295 | "cube", 296 | "cubes", 297 | "cut", 298 | "cuttlefish", 299 | "d-and-d", 300 | "d-and-d-beyond", 301 | "dashcube", 302 | "database", 303 | "deaf", 304 | "delicious", 305 | "democrat", 306 | "deploydog", 307 | "deskpro", 308 | "desktop", 309 | "dev", 310 | "deviantart", 311 | "dharmachakra", 312 | "diagnoses", 313 | "dice", 314 | "dice-d20", 315 | "dice-d6", 316 | "dice-five", 317 | "dice-four", 318 | "dice-one", 319 | "dice-six", 320 | "dice-three", 321 | "dice-two", 322 | "digg", 323 | "digital-ocean", 324 | "digital-tachograph", 325 | "directions", 326 | "discord", 327 | "discourse", 328 | "divide", 329 | "dizzy", 330 | "dna", 331 | "dochub", 332 | "docker", 333 | "dog", 334 | "dollar-sign", 335 | "dolly", 336 | "dolly-flatbed", 337 | "donate", 338 | "door-closed", 339 | "door-open", 340 | "dot-circle", 341 | "dove", 342 | "download", 343 | "draft2digital", 344 | "drafting-compass", 345 | "dragon", 346 | "draw-polygon", 347 | "dribbble", 348 | "dribbble-square", 349 | "dropbox", 350 | "drum", 351 | "drum-steelpan", 352 | "drumstick-bite", 353 | "drupal", 354 | "dumbbell", 355 | "dungeon", 356 | "dyalog", 357 | "earlybirds", 358 | "ebay", 359 | "edge", 360 | "edit", 361 | "eject", 362 | "elementor", 363 | "ellipsis-h", 364 | "ellipsis-v", 365 | "ello", 366 | "ember", 367 | "empire", 368 | "envelope", 369 | "envelope-open", 370 | "envelope-open-text", 371 | "envelope-square", 372 | "envira", 373 | "equals", 374 | "eraser", 375 | "erlang", 376 | "ethereum", 377 | "etsy", 378 | "euro-sign", 379 | "exchange-alt", 380 | "exclamation", 381 | "exclamation-circle", 382 | "exclamation-triangle", 383 | "expand", 384 | "expand-arrows-alt", 385 | "expeditedssl", 386 | "external-link-alt", 387 | "external-link-square-alt", 388 | "eye", 389 | "eye-dropper", 390 | "eye-slash", 391 | "facebook", 392 | "facebook-f", 393 | "facebook-messenger", 394 | "facebook-square", 395 | "fantasy-flight-games", 396 | "fast-backward", 397 | "fast-forward", 398 | "fax", 399 | "feather", 400 | "feather-alt", 401 | "female", 402 | "fighter-jet", 403 | "file", 404 | "file-alt", 405 | "file-archive", 406 | "file-audio", 407 | "file-code", 408 | "file-contract", 409 | "file-csv", 410 | "file-download", 411 | "file-excel", 412 | "file-export", 413 | "file-image", 414 | "file-import", 415 | "file-invoice", 416 | "file-invoice-dollar", 417 | "file-medical", 418 | "file-medical-alt", 419 | "file-pdf", 420 | "file-powerpoint", 421 | "file-prescription", 422 | "file-signature", 423 | "file-upload", 424 | "file-video", 425 | "file-word", 426 | "fill", 427 | "fill-drip", 428 | "film", 429 | "filter", 430 | "fingerprint", 431 | "fire", 432 | "fire-extinguisher", 433 | "firefox", 434 | "first-aid", 435 | "first-order", 436 | "first-order-alt", 437 | "firstdraft", 438 | "fish", 439 | "fist-raised", 440 | "flag", 441 | "flag-checkered", 442 | "flag-usa", 443 | "flask", 444 | "flickr", 445 | "flipboard", 446 | "flushed", 447 | "fly", 448 | "folder", 449 | "folder-minus", 450 | "folder-open", 451 | "folder-plus", 452 | "font", 453 | "font-awesome", 454 | "font-awesome-alt", 455 | "font-awesome-flag", 456 | "font-awesome-logo-full", 457 | "fonticons", 458 | "fonticons-fi", 459 | "football-ball", 460 | "fort-awesome", 461 | "fort-awesome-alt", 462 | "forumbee", 463 | "forward", 464 | "foursquare", 465 | "free-code-camp", 466 | "freebsd", 467 | "frog", 468 | "frown", 469 | "frown-open", 470 | "fulcrum", 471 | "funnel-dollar", 472 | "futbol", 473 | "galactic-republic", 474 | "galactic-senate", 475 | "gamepad", 476 | "gas-pump", 477 | "gavel", 478 | "gem", 479 | "genderless", 480 | "get-pocket", 481 | "gg", 482 | "gg-circle", 483 | "ghost", 484 | "gift", 485 | "git", 486 | "git-square", 487 | "github", 488 | "github-alt", 489 | "github-square", 490 | "gitkraken", 491 | "gitlab", 492 | "gitter", 493 | "glass-martini", 494 | "glass-martini-alt", 495 | "glasses", 496 | "glide", 497 | "glide-g", 498 | "globe", 499 | "globe-africa", 500 | "globe-americas", 501 | "globe-asia", 502 | "gofore", 503 | "golf-ball", 504 | "goodreads", 505 | "goodreads-g", 506 | "google", 507 | "google-drive", 508 | "google-play", 509 | "google-plus", 510 | "google-plus-g", 511 | "google-plus-square", 512 | "google-wallet", 513 | "gopuram", 514 | "graduation-cap", 515 | "gratipay", 516 | "grav", 517 | "greater-than", 518 | "greater-than-equal", 519 | "grimace", 520 | "grin", 521 | "grin-alt", 522 | "grin-beam", 523 | "grin-beam-sweat", 524 | "grin-hearts", 525 | "grin-squint", 526 | "grin-squint-tears", 527 | "grin-stars", 528 | "grin-tears", 529 | "grin-tongue", 530 | "grin-tongue-squint", 531 | "grin-tongue-wink", 532 | "grin-wink", 533 | "grip-horizontal", 534 | "grip-vertical", 535 | "gripfire", 536 | "grunt", 537 | "gulp", 538 | "h-square", 539 | "hacker-news", 540 | "hacker-news-square", 541 | "hackerrank", 542 | "hammer", 543 | "hamsa", 544 | "hand-holding", 545 | "hand-holding-heart", 546 | "hand-holding-usd", 547 | "hand-lizard", 548 | "hand-paper", 549 | "hand-peace", 550 | "hand-point-down", 551 | "hand-point-left", 552 | "hand-point-right", 553 | "hand-point-up", 554 | "hand-pointer", 555 | "hand-rock", 556 | "hand-scissors", 557 | "hand-spock", 558 | "hands", 559 | "hands-helping", 560 | "handshake", 561 | "hanukiah", 562 | "hashtag", 563 | "hat-wizard", 564 | "haykal", 565 | "hdd", 566 | "heading", 567 | "headphones", 568 | "headphones-alt", 569 | "headset", 570 | "heart", 571 | "heartbeat", 572 | "helicopter", 573 | "highlighter", 574 | "hiking", 575 | "hippo", 576 | "hips", 577 | "hire-a-helper", 578 | "history", 579 | "hockey-puck", 580 | "home", 581 | "hooli", 582 | "hornbill", 583 | "horse", 584 | "hospital", 585 | "hospital-alt", 586 | "hospital-symbol", 587 | "hot-tub", 588 | "hotel", 589 | "hotjar", 590 | "hourglass", 591 | "hourglass-end", 592 | "hourglass-half", 593 | "hourglass-start", 594 | "house-damage", 595 | "houzz", 596 | "hryvnia", 597 | "html5", 598 | "hubspot", 599 | "i-cursor", 600 | "id-badge", 601 | "id-card", 602 | "id-card-alt", 603 | "image", 604 | "images", 605 | "imdb", 606 | "inbox", 607 | "indent", 608 | "industry", 609 | "infinity", 610 | "info", 611 | "info-circle", 612 | "instagram", 613 | "internet-explorer", 614 | "ioxhost", 615 | "italic", 616 | "itunes", 617 | "itunes-note", 618 | "java", 619 | "jedi", 620 | "jedi-order", 621 | "jenkins", 622 | "joget", 623 | "joint", 624 | "joomla", 625 | "journal-whills", 626 | "js", 627 | "js-square", 628 | "jsfiddle", 629 | "kaaba", 630 | "kaggle", 631 | "key", 632 | "keybase", 633 | "keyboard", 634 | "keycdn", 635 | "khanda", 636 | "kickstarter", 637 | "kickstarter-k", 638 | "kiss", 639 | "kiss-beam", 640 | "kiss-wink-heart", 641 | "kiwi-bird", 642 | "korvue", 643 | "landmark", 644 | "language", 645 | "laptop", 646 | "laptop-code", 647 | "laravel", 648 | "lastfm", 649 | "lastfm-square", 650 | "laugh", 651 | "laugh-beam", 652 | "laugh-squint", 653 | "laugh-wink", 654 | "layer-group", 655 | "leaf", 656 | "leanpub", 657 | "lemon", 658 | "less", 659 | "less-than", 660 | "less-than-equal", 661 | "level-down-alt", 662 | "level-up-alt", 663 | "life-ring", 664 | "lightbulb", 665 | "line", 666 | "link", 667 | "linkedin", 668 | "linkedin-in", 669 | "linode", 670 | "linux", 671 | "lira-sign", 672 | "list", 673 | "list-alt", 674 | "list-ol", 675 | "list-ul", 676 | "location-arrow", 677 | "lock", 678 | "lock-open", 679 | "long-arrow-alt-down", 680 | "long-arrow-alt-left", 681 | "long-arrow-alt-right", 682 | "long-arrow-alt-up", 683 | "low-vision", 684 | "luggage-cart", 685 | "lyft", 686 | "magento", 687 | "magic", 688 | "magnet", 689 | "mail-bulk", 690 | "mailchimp", 691 | "male", 692 | "mandalorian", 693 | "map", 694 | "map-marked", 695 | "map-marked-alt", 696 | "map-marker", 697 | "map-marker-alt", 698 | "map-pin", 699 | "map-signs", 700 | "markdown", 701 | "marker", 702 | "mars", 703 | "mars-double", 704 | "mars-stroke", 705 | "mars-stroke-h", 706 | "mars-stroke-v", 707 | "mask", 708 | "mastodon", 709 | "maxcdn", 710 | "medal", 711 | "medapps", 712 | "medium", 713 | "medium-m", 714 | "medkit", 715 | "medrt", 716 | "meetup", 717 | "megaport", 718 | "meh", 719 | "meh-blank", 720 | "meh-rolling-eyes", 721 | "memory", 722 | "menorah", 723 | "mercury", 724 | "meteor", 725 | "microchip", 726 | "microphone", 727 | "microphone-alt", 728 | "microphone-alt-slash", 729 | "microphone-slash", 730 | "microscope", 731 | "microsoft", 732 | "minus", 733 | "minus-circle", 734 | "minus-square", 735 | "mix", 736 | "mixcloud", 737 | "mizuni", 738 | "mobile", 739 | "mobile-alt", 740 | "modx", 741 | "monero", 742 | "money-bill", 743 | "money-bill-alt", 744 | "money-bill-wave", 745 | "money-bill-wave-alt", 746 | "money-check", 747 | "money-check-alt", 748 | "monument", 749 | "moon", 750 | "mortar-pestle", 751 | "mosque", 752 | "motorcycle", 753 | "mountain", 754 | "mouse-pointer", 755 | "music", 756 | "napster", 757 | "neos", 758 | "network-wired", 759 | "neuter", 760 | "newspaper", 761 | "nimblr", 762 | "nintendo-switch", 763 | "node", 764 | "node-js", 765 | "not-equal", 766 | "notes-medical", 767 | "npm", 768 | "ns8", 769 | "nutritionix", 770 | "object-group", 771 | "object-ungroup", 772 | "odnoklassniki", 773 | "odnoklassniki-square", 774 | "oil-can", 775 | "old-republic", 776 | "om", 777 | "opencart", 778 | "openid", 779 | "opera", 780 | "optin-monster", 781 | "osi", 782 | "otter", 783 | "outdent", 784 | "page4", 785 | "pagelines", 786 | "paint-brush", 787 | "paint-roller", 788 | "palette", 789 | "palfed", 790 | "pallet", 791 | "paper-plane", 792 | "paperclip", 793 | "parachute-box", 794 | "paragraph", 795 | "parking", 796 | "passport", 797 | "pastafarianism", 798 | "paste", 799 | "patreon", 800 | "pause", 801 | "pause-circle", 802 | "paw", 803 | "paypal", 804 | "peace", 805 | "pen", 806 | "pen-alt", 807 | "pen-fancy", 808 | "pen-nib", 809 | "pen-square", 810 | "pencil-alt", 811 | "pencil-ruler", 812 | "penny-arcade", 813 | "people-carry", 814 | "percent", 815 | "percentage", 816 | "periscope", 817 | "person-booth", 818 | "phabricator", 819 | "phoenix-framework", 820 | "phoenix-squadron", 821 | "phone", 822 | "phone-slash", 823 | "phone-square", 824 | "phone-volume", 825 | "php", 826 | "pied-piper", 827 | "pied-piper-alt", 828 | "pied-piper-hat", 829 | "pied-piper-pp", 830 | "piggy-bank", 831 | "pills", 832 | "pinterest", 833 | "pinterest-p", 834 | "pinterest-square", 835 | "place-of-worship", 836 | "plane", 837 | "plane-arrival", 838 | "plane-departure", 839 | "play", 840 | "play-circle", 841 | "playstation", 842 | "plug", 843 | "plus", 844 | "plus-circle", 845 | "plus-square", 846 | "podcast", 847 | "poll", 848 | "poll-h", 849 | "poo", 850 | "poo-storm", 851 | "poop", 852 | "portrait", 853 | "pound-sign", 854 | "power-off", 855 | "pray", 856 | "praying-hands", 857 | "prescription", 858 | "prescription-bottle", 859 | "prescription-bottle-alt", 860 | "print", 861 | "procedures", 862 | "product-hunt", 863 | "project-diagram", 864 | "pushed", 865 | "puzzle-piece", 866 | "python", 867 | "qq", 868 | "qrcode", 869 | "question", 870 | "question-circle", 871 | "quidditch", 872 | "quinscape", 873 | "quora", 874 | "quote-left", 875 | "quote-right", 876 | "quran", 877 | "r-project", 878 | "rainbow", 879 | "random", 880 | "ravelry", 881 | "react", 882 | "reacteurope", 883 | "readme", 884 | "rebel", 885 | "receipt", 886 | "recycle", 887 | "red-river", 888 | "reddit", 889 | "reddit-alien", 890 | "reddit-square", 891 | "redo", 892 | "redo-alt", 893 | "registered", 894 | "renren", 895 | "reply", 896 | "reply-all", 897 | "replyd", 898 | "republican", 899 | "researchgate", 900 | "resolving", 901 | "retweet", 902 | "rev", 903 | "ribbon", 904 | "ring", 905 | "road", 906 | "robot", 907 | "rocket", 908 | "rocketchat", 909 | "rockrms", 910 | "route", 911 | "rss", 912 | "rss-square", 913 | "ruble-sign", 914 | "ruler", 915 | "ruler-combined", 916 | "ruler-horizontal", 917 | "ruler-vertical", 918 | "running", 919 | "rupee-sign", 920 | "sad-cry", 921 | "sad-tear", 922 | "safari", 923 | "sass", 924 | "save", 925 | "schlix", 926 | "school", 927 | "screwdriver", 928 | "scribd", 929 | "scroll", 930 | "search", 931 | "search-dollar", 932 | "search-location", 933 | "search-minus", 934 | "search-plus", 935 | "searchengin", 936 | "seedling", 937 | "sellcast", 938 | "sellsy", 939 | "server", 940 | "servicestack", 941 | "shapes", 942 | "share", 943 | "share-alt", 944 | "share-alt-square", 945 | "share-square", 946 | "shekel-sign", 947 | "shield-alt", 948 | "ship", 949 | "shipping-fast", 950 | "shirtsinbulk", 951 | "shoe-prints", 952 | "shopping-bag", 953 | "shopping-basket", 954 | "shopping-cart", 955 | "shopware", 956 | "shower", 957 | "shuttle-van", 958 | "sign", 959 | "sign-in-alt", 960 | "sign-language", 961 | "sign-out-alt", 962 | "signal", 963 | "signature", 964 | "simplybuilt", 965 | "sistrix", 966 | "sitemap", 967 | "sith", 968 | "skull", 969 | "skull-crossbones", 970 | "skyatlas", 971 | "skype", 972 | "slack", 973 | "slack-hash", 974 | "slash", 975 | "sliders-h", 976 | "slideshare", 977 | "smile", 978 | "smile-beam", 979 | "smile-wink", 980 | "smog", 981 | "smoking", 982 | "smoking-ban", 983 | "snapchat", 984 | "snapchat-ghost", 985 | "snapchat-square", 986 | "snowflake", 987 | "socks", 988 | "solar-panel", 989 | "sort", 990 | "sort-alpha-down", 991 | "sort-alpha-up", 992 | "sort-amount-down", 993 | "sort-amount-up", 994 | "sort-down", 995 | "sort-numeric-down", 996 | "sort-numeric-up", 997 | "sort-up", 998 | "soundcloud", 999 | "spa", 1000 | "space-shuttle", 1001 | "speakap", 1002 | "spider", 1003 | "spinner", 1004 | "splotch", 1005 | "spotify", 1006 | "spray-can", 1007 | "square", 1008 | "square-full", 1009 | "square-root-alt", 1010 | "squarespace", 1011 | "stack-exchange", 1012 | "stack-overflow", 1013 | "stamp", 1014 | "star", 1015 | "star-and-crescent", 1016 | "star-half", 1017 | "star-half-alt", 1018 | "star-of-david", 1019 | "star-of-life", 1020 | "staylinked", 1021 | "steam", 1022 | "steam-square", 1023 | "steam-symbol", 1024 | "step-backward", 1025 | "step-forward", 1026 | "stethoscope", 1027 | "sticker-mule", 1028 | "sticky-note", 1029 | "stop", 1030 | "stop-circle", 1031 | "stopwatch", 1032 | "store", 1033 | "store-alt", 1034 | "strava", 1035 | "stream", 1036 | "street-view", 1037 | "strikethrough", 1038 | "stripe", 1039 | "stripe-s", 1040 | "stroopwafel", 1041 | "studiovinari", 1042 | "stumbleupon", 1043 | "stumbleupon-circle", 1044 | "subscript", 1045 | "subway", 1046 | "suitcase", 1047 | "suitcase-rolling", 1048 | "sun", 1049 | "superpowers", 1050 | "superscript", 1051 | "supple", 1052 | "surprise", 1053 | "swatchbook", 1054 | "swimmer", 1055 | "swimming-pool", 1056 | "synagogue", 1057 | "sync", 1058 | "sync-alt", 1059 | "syringe", 1060 | "table", 1061 | "table-tennis", 1062 | "tablet", 1063 | "tablet-alt", 1064 | "tablets", 1065 | "tachometer-alt", 1066 | "tag", 1067 | "tags", 1068 | "tape", 1069 | "tasks", 1070 | "taxi", 1071 | "teamspeak", 1072 | "teeth", 1073 | "teeth-open", 1074 | "telegram", 1075 | "telegram-plane", 1076 | "temperature-high", 1077 | "temperature-low", 1078 | "tencent-weibo", 1079 | "terminal", 1080 | "text-height", 1081 | "text-width", 1082 | "th", 1083 | "th-large", 1084 | "th-list", 1085 | "the-red-yeti", 1086 | "theater-masks", 1087 | "themeco", 1088 | "themeisle", 1089 | "thermometer", 1090 | "thermometer-empty", 1091 | "thermometer-full", 1092 | "thermometer-half", 1093 | "thermometer-quarter", 1094 | "thermometer-three-quarters", 1095 | "think-peaks", 1096 | "thumbs-down", 1097 | "thumbs-up", 1098 | "thumbtack", 1099 | "ticket-alt", 1100 | "times", 1101 | "times-circle", 1102 | "tint", 1103 | "tint-slash", 1104 | "tired", 1105 | "toggle-off", 1106 | "toggle-on", 1107 | "toilet-paper", 1108 | "toolbox", 1109 | "tooth", 1110 | "torah", 1111 | "torii-gate", 1112 | "tractor", 1113 | "trade-federation", 1114 | "trademark", 1115 | "traffic-light", 1116 | "train", 1117 | "transgender", 1118 | "transgender-alt", 1119 | "trash", 1120 | "trash-alt", 1121 | "tree", 1122 | "trello", 1123 | "tripadvisor", 1124 | "trophy", 1125 | "truck", 1126 | "truck-loading", 1127 | "truck-monster", 1128 | "truck-moving", 1129 | "truck-pickup", 1130 | "tshirt", 1131 | "tty", 1132 | "tumblr", 1133 | "tumblr-square", 1134 | "tv", 1135 | "twitch", 1136 | "twitter", 1137 | "twitter-square", 1138 | "typo3", 1139 | "uber", 1140 | "uikit", 1141 | "umbrella", 1142 | "umbrella-beach", 1143 | "underline", 1144 | "undo", 1145 | "undo-alt", 1146 | "uniregistry", 1147 | "universal-access", 1148 | "university", 1149 | "unlink", 1150 | "unlock", 1151 | "unlock-alt", 1152 | "untappd", 1153 | "upload", 1154 | "usb", 1155 | "user", 1156 | "user-alt", 1157 | "user-alt-slash", 1158 | "user-astronaut", 1159 | "user-check", 1160 | "user-circle", 1161 | "user-clock", 1162 | "user-cog", 1163 | "user-edit", 1164 | "user-friends", 1165 | "user-graduate", 1166 | "user-injured", 1167 | "user-lock", 1168 | "user-md", 1169 | "user-minus", 1170 | "user-ninja", 1171 | "user-plus", 1172 | "user-secret", 1173 | "user-shield", 1174 | "user-slash", 1175 | "user-tag", 1176 | "user-tie", 1177 | "user-times", 1178 | "users", 1179 | "users-cog", 1180 | "ussunnah", 1181 | "utensil-spoon", 1182 | "utensils", 1183 | "vaadin", 1184 | "vector-square", 1185 | "venus", 1186 | "venus-double", 1187 | "venus-mars", 1188 | "viacoin", 1189 | "viadeo", 1190 | "viadeo-square", 1191 | "vial", 1192 | "vials", 1193 | "viber", 1194 | "video", 1195 | "video-slash", 1196 | "vihara", 1197 | "vimeo", 1198 | "vimeo-square", 1199 | "vimeo-v", 1200 | "vine", 1201 | "vk", 1202 | "vnv", 1203 | "volleyball-ball", 1204 | "volume-down", 1205 | "volume-mute", 1206 | "volume-off", 1207 | "volume-up", 1208 | "vote-yea", 1209 | "vr-cardboard", 1210 | "vuejs", 1211 | "walking", 1212 | "wallet", 1213 | "warehouse", 1214 | "water", 1215 | "weebly", 1216 | "weibo", 1217 | "weight", 1218 | "weight-hanging", 1219 | "weixin", 1220 | "whatsapp", 1221 | "whatsapp-square", 1222 | "wheelchair", 1223 | "whmcs", 1224 | "wifi", 1225 | "wikipedia-w", 1226 | "wind", 1227 | "window-close", 1228 | "window-maximize", 1229 | "window-minimize", 1230 | "window-restore", 1231 | "windows", 1232 | "wine-bottle", 1233 | "wine-glass", 1234 | "wine-glass-alt", 1235 | "wix", 1236 | "wizards-of-the-coast", 1237 | "wolf-pack-battalion", 1238 | "won-sign", 1239 | "wordpress", 1240 | "wordpress-simple", 1241 | "wpbeginner", 1242 | "wpexplorer", 1243 | "wpforms", 1244 | "wpressr", 1245 | "wrench", 1246 | "x-ray", 1247 | "xbox", 1248 | "xing", 1249 | "xing-square", 1250 | "y-combinator", 1251 | "yahoo", 1252 | "yandex", 1253 | "yandex-international", 1254 | "yelp", 1255 | "yen-sign", 1256 | "yin-yang", 1257 | "yoast", 1258 | "youtube", 1259 | "youtube-square", 1260 | "zhihu" 1261 | ] -------------------------------------------------------------------------------- /src/icon-list/Foundation.js: -------------------------------------------------------------------------------- 1 | export default foundation = [ 2 | "address-book", 3 | "alert", 4 | "align-center", 5 | "align-justify", 6 | "align-left", 7 | "align-right", 8 | "anchor", 9 | "annotate", 10 | "archive", 11 | "arrow-down", 12 | "arrow-left", 13 | "arrow-right", 14 | "arrow-up", 15 | "arrows-compress", 16 | "arrows-expand", 17 | "arrows-in", 18 | "arrows-out", 19 | "asl", 20 | "asterisk", 21 | "at-sign", 22 | "background-color", 23 | "battery-empty", 24 | "battery-full", 25 | "battery-half", 26 | "bitcoin-circle", 27 | "bitcoin", 28 | "blind", 29 | "bluetooth", 30 | "bold", 31 | "book-bookmark", 32 | "book", 33 | "bookmark", 34 | "braille", 35 | "burst-new", 36 | "burst-sale", 37 | "burst", 38 | "calendar", 39 | "camera", 40 | "check", 41 | "checkbox", 42 | "clipboard-notes", 43 | "clipboard-pencil", 44 | "clipboard", 45 | "clock", 46 | "closed-caption", 47 | "cloud", 48 | "comment-minus", 49 | "comment-quotes", 50 | "comment-video", 51 | "comment", 52 | "comments", 53 | "compass", 54 | "contrast", 55 | "credit-card", 56 | "crop", 57 | "crown", 58 | "css3", 59 | "database", 60 | "die-five", 61 | "die-four", 62 | "die-one", 63 | "die-six", 64 | "die-three", 65 | "die-two", 66 | "dislike", 67 | "dollar-bill", 68 | "dollar", 69 | "download", 70 | "eject", 71 | "elevator", 72 | "euro", 73 | "eye", 74 | "fast-forward", 75 | "female-symbol", 76 | "female", 77 | "filter", 78 | "first-aid", 79 | "flag", 80 | "folder-add", 81 | "folder-lock", 82 | "folder", 83 | "foot", 84 | "foundation", 85 | "graph-bar", 86 | "graph-horizontal", 87 | "graph-pie", 88 | "graph-trend", 89 | "guide-dog", 90 | "hearing-aid", 91 | "heart", 92 | "home", 93 | "html5", 94 | "indent-less", 95 | "indent-more", 96 | "info", 97 | "italic", 98 | "key", 99 | "laptop", 100 | "layout", 101 | "lightbulb", 102 | "like", 103 | "link", 104 | "list-bullet", 105 | "list-number", 106 | "list-thumbnails", 107 | "list", 108 | "lock", 109 | "loop", 110 | "magnifying-glass", 111 | "mail", 112 | "male-female", 113 | "male-symbol", 114 | "male", 115 | "map", 116 | "marker", 117 | "megaphone", 118 | "microphone", 119 | "minus-circle", 120 | "minus", 121 | "mobile-signal", 122 | "mobile", 123 | "monitor", 124 | "mountains", 125 | "music", 126 | "next", 127 | "no-dogs", 128 | "no-smoking", 129 | "page-add", 130 | "page-copy", 131 | "page-csv", 132 | "page-delete", 133 | "page-doc", 134 | "page-edit", 135 | "page-export-csv", 136 | "page-export-doc", 137 | "page-export-pdf", 138 | "page-export", 139 | "page-filled", 140 | "page-multiple", 141 | "page-pdf", 142 | "page-remove", 143 | "page-search", 144 | "page", 145 | "paint-bucket", 146 | "paperclip", 147 | "pause", 148 | "paw", 149 | "paypal", 150 | "pencil", 151 | "photo", 152 | "play-circle", 153 | "play-video", 154 | "play", 155 | "plus", 156 | "pound", 157 | "power", 158 | "previous", 159 | "price-tag", 160 | "pricetag-multiple", 161 | "print", 162 | "prohibited", 163 | "projection-screen", 164 | "puzzle", 165 | "quote", 166 | "record", 167 | "refresh", 168 | "results-demographics", 169 | "results", 170 | "rewind-ten", 171 | "rewind", 172 | "rss", 173 | "safety-cone", 174 | "save", 175 | "share", 176 | "sheriff-badge", 177 | "shield", 178 | "shopping-bag", 179 | "shopping-cart", 180 | "shuffle", 181 | "skull", 182 | "social-500px", 183 | "social-adobe", 184 | "social-amazon", 185 | "social-android", 186 | "social-apple", 187 | "social-behance", 188 | "social-bing", 189 | "social-blogger", 190 | "social-delicious", 191 | "social-designer-news", 192 | "social-deviant-art", 193 | "social-digg", 194 | "social-dribbble", 195 | "social-drive", 196 | "social-dropbox", 197 | "social-evernote", 198 | "social-facebook", 199 | "social-flickr", 200 | "social-forrst", 201 | "social-foursquare", 202 | "social-game-center", 203 | "social-github", 204 | "social-google-plus", 205 | "social-hacker-news", 206 | "social-hi5", 207 | "social-instagram", 208 | "social-joomla", 209 | "social-lastfm", 210 | "social-linkedin", 211 | "social-medium", 212 | "social-myspace", 213 | "social-orkut", 214 | "social-path", 215 | "social-picasa", 216 | "social-pinterest", 217 | "social-rdio", 218 | "social-reddit", 219 | "social-skillshare", 220 | "social-skype", 221 | "social-smashing-mag", 222 | "social-snapchat", 223 | "social-spotify", 224 | "social-squidoo", 225 | "social-stack-overflow", 226 | "social-steam", 227 | "social-stumbleupon", 228 | "social-treehouse", 229 | "social-tumblr", 230 | "social-twitter", 231 | "social-vimeo", 232 | "social-windows", 233 | "social-xbox", 234 | "social-yahoo", 235 | "social-yelp", 236 | "social-youtube", 237 | "social-zerply", 238 | "social-zurb", 239 | "sound", 240 | "star", 241 | "stop", 242 | "strikethrough", 243 | "subscript", 244 | "superscript", 245 | "tablet-landscape", 246 | "tablet-portrait", 247 | "target-two", 248 | "target", 249 | "telephone-accessible", 250 | "telephone", 251 | "text-color", 252 | "thumbnails", 253 | "ticket", 254 | "torso-business", 255 | "torso-female", 256 | "torso", 257 | "torsos-all-female", 258 | "torsos-all", 259 | "torsos-female-male", 260 | "torsos-male-female", 261 | "torsos", 262 | "trash", 263 | "trees", 264 | "trophy", 265 | "underline", 266 | "universal-access", 267 | "unlink", 268 | "unlock", 269 | "upload-cloud", 270 | "upload", 271 | "usb", 272 | "video", 273 | "volume-none", 274 | "volume-strike", 275 | "volume", 276 | "web", 277 | "wheelchair", 278 | "widget", 279 | "wrench", 280 | "x-circle", 281 | "x", 282 | "yen", 283 | "zoom-in", 284 | "zoom-out" 285 | ] -------------------------------------------------------------------------------- /src/icon-list/Ionicons.js: -------------------------------------------------------------------------------- 1 | export default ionicons = [ 2 | "ios-add", 3 | "ios-add-circle", 4 | "ios-add-circle-outline", 5 | "ios-airplane", 6 | "ios-alarm", 7 | "ios-albums", 8 | "ios-alert", 9 | "ios-american-football", 10 | "ios-analytics", 11 | "ios-aperture", 12 | "ios-apps", 13 | "ios-appstore", 14 | "ios-archive", 15 | "ios-arrow-back", 16 | "ios-arrow-down", 17 | "ios-arrow-dropdown", 18 | "ios-arrow-dropdown-circle", 19 | "ios-arrow-dropleft", 20 | "ios-arrow-dropleft-circle", 21 | "ios-arrow-dropright", 22 | "ios-arrow-dropright-circle", 23 | "ios-arrow-dropup", 24 | "ios-arrow-dropup-circle", 25 | "ios-arrow-forward", 26 | "ios-arrow-round-back", 27 | "ios-arrow-round-down", 28 | "ios-arrow-round-forward", 29 | "ios-arrow-round-up", 30 | "ios-arrow-up", 31 | "ios-at", 32 | "ios-attach", 33 | "ios-backspace", 34 | "ios-barcode", 35 | "ios-baseball", 36 | "ios-basket", 37 | "ios-basketball", 38 | "ios-battery-charging", 39 | "ios-battery-dead", 40 | "ios-battery-full", 41 | "ios-beaker", 42 | "ios-bed", 43 | "ios-beer", 44 | "ios-bicycle", 45 | "ios-bluetooth", 46 | "ios-boat", 47 | "ios-body", 48 | "ios-bonfire", 49 | "ios-book", 50 | "ios-bookmark", 51 | "ios-bookmarks", 52 | "ios-bowtie", 53 | "ios-briefcase", 54 | "ios-browsers", 55 | "ios-brush", 56 | "ios-bug", 57 | "ios-build", 58 | "ios-bulb", 59 | "ios-bus", 60 | "ios-business", 61 | "ios-cafe", 62 | "ios-calculator", 63 | "ios-calendar", 64 | "ios-call", 65 | "ios-camera", 66 | "ios-car", 67 | "ios-card", 68 | "ios-cart", 69 | "ios-cash", 70 | "ios-cellular", 71 | "ios-chatboxes", 72 | "ios-chatbubbles", 73 | "ios-checkbox", 74 | "ios-checkbox-outline", 75 | "ios-checkmark", 76 | "ios-checkmark-circle", 77 | "ios-checkmark-circle-outline", 78 | "ios-clipboard", 79 | "ios-clock", 80 | "ios-close", 81 | "ios-close-circle", 82 | "ios-close-circle-outline", 83 | "ios-cloud", 84 | "ios-cloud-circle", 85 | "ios-cloud-done", 86 | "ios-cloud-download", 87 | "ios-cloud-outline", 88 | "ios-cloud-upload", 89 | "ios-cloudy", 90 | "ios-cloudy-night", 91 | "ios-code", 92 | "ios-code-download", 93 | "ios-code-working", 94 | "ios-cog", 95 | "ios-color-fill", 96 | "ios-color-filter", 97 | "ios-color-palette", 98 | "ios-color-wand", 99 | "ios-compass", 100 | "ios-construct", 101 | "ios-contact", 102 | "ios-contacts", 103 | "ios-contract", 104 | "ios-contrast", 105 | "ios-copy", 106 | "ios-create", 107 | "ios-crop", 108 | "ios-cube", 109 | "ios-cut", 110 | "ios-desktop", 111 | "ios-disc", 112 | "ios-document", 113 | "ios-done-all", 114 | "ios-download", 115 | "ios-easel", 116 | "ios-egg", 117 | "ios-exit", 118 | "ios-expand", 119 | "ios-eye", 120 | "ios-eye-off", 121 | "ios-fastforward", 122 | "ios-female", 123 | "ios-filing", 124 | "ios-film", 125 | "ios-finger-print", 126 | "ios-fitness", 127 | "ios-flag", 128 | "ios-flame", 129 | "ios-flash", 130 | "ios-flash-off", 131 | "ios-flashlight", 132 | "ios-flask", 133 | "ios-flower", 134 | "ios-folder", 135 | "ios-folder-open", 136 | "ios-football", 137 | "ios-funnel", 138 | "ios-gift", 139 | "ios-git-branch", 140 | "ios-git-commit", 141 | "ios-git-compare", 142 | "ios-git-merge", 143 | "ios-git-network", 144 | "ios-git-pull-request", 145 | "ios-glasses", 146 | "ios-globe", 147 | "ios-grid", 148 | "ios-hammer", 149 | "ios-hand", 150 | "ios-happy", 151 | "ios-headset", 152 | "ios-heart", 153 | "ios-heart-dislike", 154 | "ios-heart-empty", 155 | "ios-heart-half", 156 | "ios-help", 157 | "ios-help-buoy", 158 | "ios-help-circle", 159 | "ios-help-circle-outline", 160 | "ios-home", 161 | "ios-hourglass", 162 | "ios-ice-cream", 163 | "ios-image", 164 | "ios-images", 165 | "ios-infinite", 166 | "ios-information", 167 | "ios-information-circle", 168 | "ios-information-circle-outline", 169 | "ios-jet", 170 | "ios-journal", 171 | "ios-key", 172 | "ios-keypad", 173 | "ios-laptop", 174 | "ios-leaf", 175 | "ios-link", 176 | "ios-list", 177 | "ios-list-box", 178 | "ios-locate", 179 | "ios-lock", 180 | "ios-log-in", 181 | "ios-log-out", 182 | "ios-magnet", 183 | "ios-mail", 184 | "ios-mail-open", 185 | "ios-mail-unread", 186 | "ios-male", 187 | "ios-man", 188 | "ios-map", 189 | "ios-medal", 190 | "ios-medical", 191 | "ios-medkit", 192 | "ios-megaphone", 193 | "ios-menu", 194 | "ios-mic", 195 | "ios-mic-off", 196 | "ios-microphone", 197 | "ios-moon", 198 | "ios-more", 199 | "ios-move", 200 | "ios-musical-note", 201 | "ios-musical-notes", 202 | "ios-navigate", 203 | "ios-notifications", 204 | "ios-notifications-off", 205 | "ios-notifications-outline", 206 | "ios-nuclear", 207 | "ios-nutrition", 208 | "ios-open", 209 | "ios-options", 210 | "ios-outlet", 211 | "ios-paper", 212 | "ios-paper-plane", 213 | "ios-partly-sunny", 214 | "ios-pause", 215 | "ios-paw", 216 | "ios-people", 217 | "ios-person", 218 | "ios-person-add", 219 | "ios-phone-landscape", 220 | "ios-phone-portrait", 221 | "ios-photos", 222 | "ios-pie", 223 | "ios-pin", 224 | "ios-pint", 225 | "ios-pizza", 226 | "ios-planet", 227 | "ios-play", 228 | "ios-play-circle", 229 | "ios-podium", 230 | "ios-power", 231 | "ios-pricetag", 232 | "ios-pricetags", 233 | "ios-print", 234 | "ios-pulse", 235 | "ios-qr-scanner", 236 | "ios-quote", 237 | "ios-radio", 238 | "ios-radio-button-off", 239 | "ios-radio-button-on", 240 | "ios-rainy", 241 | "ios-recording", 242 | "ios-redo", 243 | "ios-refresh", 244 | "ios-refresh-circle", 245 | "ios-remove", 246 | "ios-remove-circle", 247 | "ios-remove-circle-outline", 248 | "ios-reorder", 249 | "ios-repeat", 250 | "ios-resize", 251 | "ios-restaurant", 252 | "ios-return-left", 253 | "ios-return-right", 254 | "ios-reverse-camera", 255 | "ios-rewind", 256 | "ios-ribbon", 257 | "ios-rocket", 258 | "ios-rose", 259 | "ios-sad", 260 | "ios-save", 261 | "ios-school", 262 | "ios-search", 263 | "ios-send", 264 | "ios-settings", 265 | "ios-share", 266 | "ios-share-alt", 267 | "ios-shirt", 268 | "ios-shuffle", 269 | "ios-skip-backward", 270 | "ios-skip-forward", 271 | "ios-snow", 272 | "ios-speedometer", 273 | "ios-square", 274 | "ios-square-outline", 275 | "ios-star", 276 | "ios-star-half", 277 | "ios-star-outline", 278 | "ios-stats", 279 | "ios-stopwatch", 280 | "ios-subway", 281 | "ios-sunny", 282 | "ios-swap", 283 | "ios-switch", 284 | "ios-sync", 285 | "ios-tablet-landscape", 286 | "ios-tablet-portrait", 287 | "ios-tennisball", 288 | "ios-text", 289 | "ios-thermometer", 290 | "ios-thumbs-down", 291 | "ios-thumbs-up", 292 | "ios-thunderstorm", 293 | "ios-time", 294 | "ios-timer", 295 | "ios-today", 296 | "ios-train", 297 | "ios-transgender", 298 | "ios-trash", 299 | "ios-trending-down", 300 | "ios-trending-up", 301 | "ios-trophy", 302 | "ios-tv", 303 | "ios-umbrella", 304 | "ios-undo", 305 | "ios-unlock", 306 | "ios-videocam", 307 | "ios-volume-high", 308 | "ios-volume-low", 309 | "ios-volume-mute", 310 | "ios-volume-off", 311 | "ios-walk", 312 | "ios-wallet", 313 | "ios-warning", 314 | "ios-watch", 315 | "ios-water", 316 | "ios-wifi", 317 | "ios-wine", 318 | "ios-woman", 319 | "logo-android", 320 | "logo-angular", 321 | "logo-apple", 322 | "logo-bitbucket", 323 | "logo-bitcoin", 324 | "logo-buffer", 325 | "logo-chrome", 326 | "logo-closed-captioning", 327 | "logo-codepen", 328 | "logo-css3", 329 | "logo-designernews", 330 | "logo-dribbble", 331 | "logo-dropbox", 332 | "logo-euro", 333 | "logo-facebook", 334 | "logo-flickr", 335 | "logo-foursquare", 336 | "logo-freebsd-devil", 337 | "logo-game-controller-a", 338 | "logo-game-controller-b", 339 | "logo-github", 340 | "logo-google", 341 | "logo-googleplus", 342 | "logo-hackernews", 343 | "logo-html5", 344 | "logo-instagram", 345 | "logo-ionic", 346 | "logo-ionitron", 347 | "logo-javascript", 348 | "logo-linkedin", 349 | "logo-markdown", 350 | "logo-model-s", 351 | "logo-no-smoking", 352 | "logo-nodejs", 353 | "logo-npm", 354 | "logo-octocat", 355 | "logo-pinterest", 356 | "logo-playstation", 357 | "logo-polymer", 358 | "logo-python", 359 | "logo-reddit", 360 | "logo-rss", 361 | "logo-sass", 362 | "logo-skype", 363 | "logo-slack", 364 | "logo-snapchat", 365 | "logo-steam", 366 | "logo-tumblr", 367 | "logo-tux", 368 | "logo-twitch", 369 | "logo-twitter", 370 | "logo-usd", 371 | "logo-vimeo", 372 | "logo-vk", 373 | "logo-whatsapp", 374 | "logo-windows", 375 | "logo-wordpress", 376 | "logo-xbox", 377 | "logo-xing", 378 | "logo-yahoo", 379 | "logo-yen", 380 | "logo-youtube", 381 | "md-add", 382 | "md-add-circle", 383 | "md-add-circle-outline", 384 | "md-airplane", 385 | "md-alarm", 386 | "md-albums", 387 | "md-alert", 388 | "md-american-football", 389 | "md-analytics", 390 | "md-aperture", 391 | "md-apps", 392 | "md-appstore", 393 | "md-archive", 394 | "md-arrow-back", 395 | "md-arrow-down", 396 | "md-arrow-dropdown", 397 | "md-arrow-dropdown-circle", 398 | "md-arrow-dropleft", 399 | "md-arrow-dropleft-circle", 400 | "md-arrow-dropright", 401 | "md-arrow-dropright-circle", 402 | "md-arrow-dropup", 403 | "md-arrow-dropup-circle", 404 | "md-arrow-forward", 405 | "md-arrow-round-back", 406 | "md-arrow-round-down", 407 | "md-arrow-round-forward", 408 | "md-arrow-round-up", 409 | "md-arrow-up", 410 | "md-at", 411 | "md-attach", 412 | "md-backspace", 413 | "md-barcode", 414 | "md-baseball", 415 | "md-basket", 416 | "md-basketball", 417 | "md-battery-charging", 418 | "md-battery-dead", 419 | "md-battery-full", 420 | "md-beaker", 421 | "md-bed", 422 | "md-beer", 423 | "md-bicycle", 424 | "md-bluetooth", 425 | "md-boat", 426 | "md-body", 427 | "md-bonfire", 428 | "md-book", 429 | "md-bookmark", 430 | "md-bookmarks", 431 | "md-bowtie", 432 | "md-briefcase", 433 | "md-browsers", 434 | "md-brush", 435 | "md-bug", 436 | "md-build", 437 | "md-bulb", 438 | "md-bus", 439 | "md-business", 440 | "md-cafe", 441 | "md-calculator", 442 | "md-calendar", 443 | "md-call", 444 | "md-camera", 445 | "md-car", 446 | "md-card", 447 | "md-cart", 448 | "md-cash", 449 | "md-cellular", 450 | "md-chatboxes", 451 | "md-chatbubbles", 452 | "md-checkbox", 453 | "md-checkbox-outline", 454 | "md-checkmark", 455 | "md-checkmark-circle", 456 | "md-checkmark-circle-outline", 457 | "md-clipboard", 458 | "md-clock", 459 | "md-close", 460 | "md-close-circle", 461 | "md-close-circle-outline", 462 | "md-cloud", 463 | "md-cloud-circle", 464 | "md-cloud-done", 465 | "md-cloud-download", 466 | "md-cloud-outline", 467 | "md-cloud-upload", 468 | "md-cloudy", 469 | "md-cloudy-night", 470 | "md-code", 471 | "md-code-download", 472 | "md-code-working", 473 | "md-cog", 474 | "md-color-fill", 475 | "md-color-filter", 476 | "md-color-palette", 477 | "md-color-wand", 478 | "md-compass", 479 | "md-construct", 480 | "md-contact", 481 | "md-contacts", 482 | "md-contract", 483 | "md-contrast", 484 | "md-copy", 485 | "md-create", 486 | "md-crop", 487 | "md-cube", 488 | "md-cut", 489 | "md-desktop", 490 | "md-disc", 491 | "md-document", 492 | "md-done-all", 493 | "md-download", 494 | "md-easel", 495 | "md-egg", 496 | "md-exit", 497 | "md-expand", 498 | "md-eye", 499 | "md-eye-off", 500 | "md-fastforward", 501 | "md-female", 502 | "md-filing", 503 | "md-film", 504 | "md-finger-print", 505 | "md-fitness", 506 | "md-flag", 507 | "md-flame", 508 | "md-flash", 509 | "md-flash-off", 510 | "md-flashlight", 511 | "md-flask", 512 | "md-flower", 513 | "md-folder", 514 | "md-folder-open", 515 | "md-football", 516 | "md-funnel", 517 | "md-gift", 518 | "md-git-branch", 519 | "md-git-commit", 520 | "md-git-compare", 521 | "md-git-merge", 522 | "md-git-network", 523 | "md-git-pull-request", 524 | "md-glasses", 525 | "md-globe", 526 | "md-grid", 527 | "md-hammer", 528 | "md-hand", 529 | "md-happy", 530 | "md-headset", 531 | "md-heart", 532 | "md-heart-dislike", 533 | "md-heart-empty", 534 | "md-heart-half", 535 | "md-help", 536 | "md-help-buoy", 537 | "md-help-circle", 538 | "md-help-circle-outline", 539 | "md-home", 540 | "md-hourglass", 541 | "md-ice-cream", 542 | "md-image", 543 | "md-images", 544 | "md-infinite", 545 | "md-information", 546 | "md-information-circle", 547 | "md-information-circle-outline", 548 | "md-jet", 549 | "md-journal", 550 | "md-key", 551 | "md-keypad", 552 | "md-laptop", 553 | "md-leaf", 554 | "md-link", 555 | "md-list", 556 | "md-list-box", 557 | "md-locate", 558 | "md-lock", 559 | "md-log-in", 560 | "md-log-out", 561 | "md-magnet", 562 | "md-mail", 563 | "md-mail-open", 564 | "md-mail-unread", 565 | "md-male", 566 | "md-man", 567 | "md-map", 568 | "md-medal", 569 | "md-medical", 570 | "md-medkit", 571 | "md-megaphone", 572 | "md-menu", 573 | "md-mic", 574 | "md-mic-off", 575 | "md-microphone", 576 | "md-moon", 577 | "md-more", 578 | "md-move", 579 | "md-musical-note", 580 | "md-musical-notes", 581 | "md-navigate", 582 | "md-notifications", 583 | "md-notifications-off", 584 | "md-notifications-outline", 585 | "md-nuclear", 586 | "md-nutrition", 587 | "md-open", 588 | "md-options", 589 | "md-outlet", 590 | "md-paper", 591 | "md-paper-plane", 592 | "md-partly-sunny", 593 | "md-pause", 594 | "md-paw", 595 | "md-people", 596 | "md-person", 597 | "md-person-add", 598 | "md-phone-landscape", 599 | "md-phone-portrait", 600 | "md-photos", 601 | "md-pie", 602 | "md-pin", 603 | "md-pint", 604 | "md-pizza", 605 | "md-planet", 606 | "md-play", 607 | "md-play-circle", 608 | "md-podium", 609 | "md-power", 610 | "md-pricetag", 611 | "md-pricetags", 612 | "md-print", 613 | "md-pulse", 614 | "md-qr-scanner", 615 | "md-quote", 616 | "md-radio", 617 | "md-radio-button-off", 618 | "md-radio-button-on", 619 | "md-rainy", 620 | "md-recording", 621 | "md-redo", 622 | "md-refresh", 623 | "md-refresh-circle", 624 | "md-remove", 625 | "md-remove-circle", 626 | "md-remove-circle-outline", 627 | "md-reorder", 628 | "md-repeat", 629 | "md-resize", 630 | "md-restaurant", 631 | "md-return-left", 632 | "md-return-right", 633 | "md-reverse-camera", 634 | "md-rewind", 635 | "md-ribbon", 636 | "md-rocket", 637 | "md-rose", 638 | "md-sad", 639 | "md-save", 640 | "md-school", 641 | "md-search", 642 | "md-send", 643 | "md-settings", 644 | "md-share", 645 | "md-share-alt", 646 | "md-shirt", 647 | "md-shuffle", 648 | "md-skip-backward", 649 | "md-skip-forward", 650 | "md-snow", 651 | "md-speedometer", 652 | "md-square", 653 | "md-square-outline", 654 | "md-star", 655 | "md-star-half", 656 | "md-star-outline", 657 | "md-stats", 658 | "md-stopwatch", 659 | "md-subway", 660 | "md-sunny", 661 | "md-swap", 662 | "md-switch", 663 | "md-sync", 664 | "md-tablet-landscape", 665 | "md-tablet-portrait", 666 | "md-tennisball", 667 | "md-text", 668 | "md-thermometer", 669 | "md-thumbs-down", 670 | "md-thumbs-up", 671 | "md-thunderstorm", 672 | "md-time", 673 | "md-timer", 674 | "md-today", 675 | "md-train", 676 | "md-transgender", 677 | "md-trash", 678 | "md-trending-down", 679 | "md-trending-up", 680 | "md-trophy", 681 | "md-tv", 682 | "md-umbrella", 683 | "md-undo", 684 | "md-unlock", 685 | "md-videocam", 686 | "md-volume-high", 687 | "md-volume-low", 688 | "md-volume-mute", 689 | "md-volume-off", 690 | "md-walk", 691 | "md-wallet", 692 | "md-warning", 693 | "md-watch", 694 | "md-water", 695 | "md-wifi", 696 | "md-wine", 697 | "md-woman" 698 | ] -------------------------------------------------------------------------------- /src/icon-list/MaterialIcons.js: -------------------------------------------------------------------------------- 1 | export default materialIcons = [ 2 | "3d-rotation", 3 | "ac-unit", 4 | "access-alarm", 5 | "access-alarms", 6 | "access-time", 7 | "accessibility", 8 | "accessible", 9 | "account-balance", 10 | "account-balance-wallet", 11 | "account-box", 12 | "account-circle", 13 | "adb", 14 | "add", 15 | "add-a-photo", 16 | "add-alarm", 17 | "add-alert", 18 | "add-box", 19 | "add-circle", 20 | "add-circle-outline", 21 | "add-location", 22 | "add-shopping-cart", 23 | "add-to-photos", 24 | "add-to-queue", 25 | "adjust", 26 | "airline-seat-flat", 27 | "airline-seat-flat-angled", 28 | "airline-seat-individual-suite", 29 | "airline-seat-legroom-extra", 30 | "airline-seat-legroom-normal", 31 | "airline-seat-legroom-reduced", 32 | "airline-seat-recline-extra", 33 | "airline-seat-recline-normal", 34 | "airplanemode-active", 35 | "airplanemode-inactive", 36 | "airplay", 37 | "airport-shuttle", 38 | "alarm", 39 | "alarm-add", 40 | "alarm-off", 41 | "alarm-on", 42 | "album", 43 | "all-inclusive", 44 | "all-out", 45 | "android", 46 | "announcement", 47 | "apps", 48 | "archive", 49 | "arrow-back", 50 | "arrow-downward", 51 | "arrow-drop-down", 52 | "arrow-drop-down-circle", 53 | "arrow-drop-up", 54 | "arrow-forward", 55 | "arrow-upward", 56 | "art-track", 57 | "aspect-ratio", 58 | "assessment", 59 | "assignment", 60 | "assignment-ind", 61 | "assignment-late", 62 | "assignment-return", 63 | "assignment-returned", 64 | "assignment-turned-in", 65 | "assistant", 66 | "assistant-photo", 67 | "attach-file", 68 | "attach-money", 69 | "attachment", 70 | "audiotrack", 71 | "autorenew", 72 | "av-timer", 73 | "backspace", 74 | "backup", 75 | "battery-alert", 76 | "battery-charging-full", 77 | "battery-full", 78 | "battery-std", 79 | "battery-unknown", 80 | "beach-access", 81 | "beenhere", 82 | "block", 83 | "bluetooth", 84 | "bluetooth-audio", 85 | "bluetooth-connected", 86 | "bluetooth-disabled", 87 | "bluetooth-searching", 88 | "blur-circular", 89 | "blur-linear", 90 | "blur-off", 91 | "blur-on", 92 | "book", 93 | "bookmark", 94 | "bookmark-border", 95 | "border-all", 96 | "border-bottom", 97 | "border-clear", 98 | "border-color", 99 | "border-horizontal", 100 | "border-inner", 101 | "border-left", 102 | "border-outer", 103 | "border-right", 104 | "border-style", 105 | "border-top", 106 | "border-vertical", 107 | "branding-watermark", 108 | "brightness-1", 109 | "brightness-2", 110 | "brightness-3", 111 | "brightness-4", 112 | "brightness-5", 113 | "brightness-6", 114 | "brightness-7", 115 | "brightness-auto", 116 | "brightness-high", 117 | "brightness-low", 118 | "brightness-medium", 119 | "broken-image", 120 | "brush", 121 | "bubble-chart", 122 | "bug-report", 123 | "build", 124 | "burst-mode", 125 | "business", 126 | "business-center", 127 | "cached", 128 | "cake", 129 | "call", 130 | "call-end", 131 | "call-made", 132 | "call-merge", 133 | "call-missed", 134 | "call-missed-outgoing", 135 | "call-received", 136 | "call-split", 137 | "call-to-action", 138 | "camera", 139 | "camera-alt", 140 | "camera-enhance", 141 | "camera-front", 142 | "camera-rear", 143 | "camera-roll", 144 | "cancel", 145 | "card-giftcard", 146 | "card-membership", 147 | "card-travel", 148 | "casino", 149 | "cast", 150 | "cast-connected", 151 | "center-focus-strong", 152 | "center-focus-weak", 153 | "change-history", 154 | "chat", 155 | "chat-bubble", 156 | "chat-bubble-outline", 157 | "check", 158 | "check-box", 159 | "check-box-outline-blank", 160 | "check-circle", 161 | "chevron-left", 162 | "chevron-right", 163 | "child-care", 164 | "child-friendly", 165 | "chrome-reader-mode", 166 | "class", 167 | "clear", 168 | "clear-all", 169 | "close", 170 | "closed-caption", 171 | "cloud", 172 | "cloud-circle", 173 | "cloud-done", 174 | "cloud-download", 175 | "cloud-off", 176 | "cloud-queue", 177 | "cloud-upload", 178 | "code", 179 | "collections", 180 | "collections-bookmark", 181 | "color-lens", 182 | "colorize", 183 | "comment", 184 | "compare", 185 | "compare-arrows", 186 | "computer", 187 | "confirmation-number", 188 | "contact-mail", 189 | "contact-phone", 190 | "contacts", 191 | "content-copy", 192 | "content-cut", 193 | "content-paste", 194 | "control-point", 195 | "control-point-duplicate", 196 | "copyright", 197 | "create", 198 | "create-new-folder", 199 | "credit-card", 200 | "crop", 201 | "crop-16-9", 202 | "crop-3-2", 203 | "crop-5-4", 204 | "crop-7-5", 205 | "crop-din", 206 | "crop-free", 207 | "crop-landscape", 208 | "crop-original", 209 | "crop-portrait", 210 | "crop-rotate", 211 | "crop-square", 212 | "dashboard", 213 | "data-usage", 214 | "date-range", 215 | "dehaze", 216 | "delete", 217 | "delete-forever", 218 | "delete-sweep", 219 | "description", 220 | "desktop-mac", 221 | "desktop-windows", 222 | "details", 223 | "developer-board", 224 | "developer-mode", 225 | "device-hub", 226 | "devices", 227 | "devices-other", 228 | "dialer-sip", 229 | "dialpad", 230 | "directions", 231 | "directions-bike", 232 | "directions-boat", 233 | "directions-bus", 234 | "directions-car", 235 | "directions-railway", 236 | "directions-run", 237 | "directions-subway", 238 | "directions-transit", 239 | "directions-walk", 240 | "disc-full", 241 | "dns", 242 | "do-not-disturb", 243 | "do-not-disturb-alt", 244 | "do-not-disturb-off", 245 | "do-not-disturb-on", 246 | "dock", 247 | "domain", 248 | "done", 249 | "done-all", 250 | "donut-large", 251 | "donut-small", 252 | "drafts", 253 | "drag-handle", 254 | "drive-eta", 255 | "dvr", 256 | "edit", 257 | "edit-location", 258 | "eject", 259 | "email", 260 | "enhanced-encryption", 261 | "equalizer", 262 | "error", 263 | "error-outline", 264 | "euro-symbol", 265 | "ev-station", 266 | "event", 267 | "event-available", 268 | "event-busy", 269 | "event-note", 270 | "event-seat", 271 | "exit-to-app", 272 | "expand-less", 273 | "expand-more", 274 | "explicit", 275 | "explore", 276 | "exposure", 277 | "exposure-neg-1", 278 | "exposure-neg-2", 279 | "exposure-plus-1", 280 | "exposure-plus-2", 281 | "exposure-zero", 282 | "extension", 283 | "face", 284 | "fast-forward", 285 | "fast-rewind", 286 | "favorite", 287 | "favorite-border", 288 | "featured-play-list", 289 | "featured-video", 290 | "feedback", 291 | "fiber-dvr", 292 | "fiber-manual-record", 293 | "fiber-new", 294 | "fiber-pin", 295 | "fiber-smart-record", 296 | "file-download", 297 | "file-upload", 298 | "filter", 299 | "filter-1", 300 | "filter-2", 301 | "filter-3", 302 | "filter-4", 303 | "filter-5", 304 | "filter-6", 305 | "filter-7", 306 | "filter-8", 307 | "filter-9", 308 | "filter-9-plus", 309 | "filter-b-and-w", 310 | "filter-center-focus", 311 | "filter-drama", 312 | "filter-frames", 313 | "filter-hdr", 314 | "filter-list", 315 | "filter-none", 316 | "filter-tilt-shift", 317 | "filter-vintage", 318 | "find-in-page", 319 | "find-replace", 320 | "fingerprint", 321 | "first-page", 322 | "fitness-center", 323 | "flag", 324 | "flare", 325 | "flash-auto", 326 | "flash-off", 327 | "flash-on", 328 | "flight", 329 | "flight-land", 330 | "flight-takeoff", 331 | "flip", 332 | "flip-to-back", 333 | "flip-to-front", 334 | "folder", 335 | "folder-open", 336 | "folder-shared", 337 | "folder-special", 338 | "font-download", 339 | "format-align-center", 340 | "format-align-justify", 341 | "format-align-left", 342 | "format-align-right", 343 | "format-bold", 344 | "format-clear", 345 | "format-color-fill", 346 | "format-color-reset", 347 | "format-color-text", 348 | "format-indent-decrease", 349 | "format-indent-increase", 350 | "format-italic", 351 | "format-line-spacing", 352 | "format-list-bulleted", 353 | "format-list-numbered", 354 | "format-paint", 355 | "format-quote", 356 | "format-shapes", 357 | "format-size", 358 | "format-strikethrough", 359 | "format-textdirection-l-to-r", 360 | "format-textdirection-r-to-l", 361 | "format-underlined", 362 | "forum", 363 | "forward", 364 | "forward-10", 365 | "forward-30", 366 | "forward-5", 367 | "free-breakfast", 368 | "fullscreen", 369 | "fullscreen-exit", 370 | "functions", 371 | "g-translate", 372 | "gamepad", 373 | "games", 374 | "gavel", 375 | "gesture", 376 | "get-app", 377 | "gif", 378 | "golf-course", 379 | "gps-fixed", 380 | "gps-not-fixed", 381 | "gps-off", 382 | "grade", 383 | "gradient", 384 | "grain", 385 | "graphic-eq", 386 | "grid-off", 387 | "grid-on", 388 | "group", 389 | "group-add", 390 | "group-work", 391 | "hd", 392 | "hdr-off", 393 | "hdr-on", 394 | "hdr-strong", 395 | "hdr-weak", 396 | "headset", 397 | "headset-mic", 398 | "healing", 399 | "hearing", 400 | "help", 401 | "help-outline", 402 | "high-quality", 403 | "highlight", 404 | "highlight-off", 405 | "history", 406 | "home", 407 | "hot-tub", 408 | "hotel", 409 | "hourglass-empty", 410 | "hourglass-full", 411 | "http", 412 | "https", 413 | "image", 414 | "image-aspect-ratio", 415 | "import-contacts", 416 | "import-export", 417 | "important-devices", 418 | "inbox", 419 | "indeterminate-check-box", 420 | "info", 421 | "info-outline", 422 | "input", 423 | "insert-chart", 424 | "insert-comment", 425 | "insert-drive-file", 426 | "insert-emoticon", 427 | "insert-invitation", 428 | "insert-link", 429 | "insert-photo", 430 | "invert-colors", 431 | "invert-colors-off", 432 | "iso", 433 | "keyboard", 434 | "keyboard-arrow-down", 435 | "keyboard-arrow-left", 436 | "keyboard-arrow-right", 437 | "keyboard-arrow-up", 438 | "keyboard-backspace", 439 | "keyboard-capslock", 440 | "keyboard-hide", 441 | "keyboard-return", 442 | "keyboard-tab", 443 | "keyboard-voice", 444 | "kitchen", 445 | "label", 446 | "label-outline", 447 | "landscape", 448 | "language", 449 | "laptop", 450 | "laptop-chromebook", 451 | "laptop-mac", 452 | "laptop-windows", 453 | "last-page", 454 | "launch", 455 | "layers", 456 | "layers-clear", 457 | "leak-add", 458 | "leak-remove", 459 | "lens", 460 | "library-add", 461 | "library-books", 462 | "library-music", 463 | "lightbulb-outline", 464 | "line-style", 465 | "line-weight", 466 | "linear-scale", 467 | "link", 468 | "linked-camera", 469 | "list", 470 | "live-help", 471 | "live-tv", 472 | "local-activity", 473 | "local-airport", 474 | "local-atm", 475 | "local-bar", 476 | "local-cafe", 477 | "local-car-wash", 478 | "local-convenience-store", 479 | "local-dining", 480 | "local-drink", 481 | "local-florist", 482 | "local-gas-station", 483 | "local-grocery-store", 484 | "local-hospital", 485 | "local-hotel", 486 | "local-laundry-service", 487 | "local-library", 488 | "local-mall", 489 | "local-movies", 490 | "local-offer", 491 | "local-parking", 492 | "local-pharmacy", 493 | "local-phone", 494 | "local-pizza", 495 | "local-play", 496 | "local-post-office", 497 | "local-printshop", 498 | "local-see", 499 | "local-shipping", 500 | "local-taxi", 501 | "location-city", 502 | "location-disabled", 503 | "location-off", 504 | "location-on", 505 | "location-searching", 506 | "lock", 507 | "lock-open", 508 | "lock-outline", 509 | "looks", 510 | "looks-3", 511 | "looks-4", 512 | "looks-5", 513 | "looks-6", 514 | "looks-one", 515 | "looks-two", 516 | "loop", 517 | "loupe", 518 | "low-priority", 519 | "loyalty", 520 | "mail", 521 | "mail-outline", 522 | "map", 523 | "markunread", 524 | "markunread-mailbox", 525 | "memory", 526 | "menu", 527 | "merge-type", 528 | "message", 529 | "mic", 530 | "mic-none", 531 | "mic-off", 532 | "mms", 533 | "mode-comment", 534 | "mode-edit", 535 | "monetization-on", 536 | "money-off", 537 | "monochrome-photos", 538 | "mood", 539 | "mood-bad", 540 | "more", 541 | "more-horiz", 542 | "more-vert", 543 | "motorcycle", 544 | "mouse", 545 | "move-to-inbox", 546 | "movie", 547 | "movie-creation", 548 | "movie-filter", 549 | "multiline-chart", 550 | "music-note", 551 | "music-video", 552 | "my-location", 553 | "nature", 554 | "nature-people", 555 | "navigate-before", 556 | "navigate-next", 557 | "navigation", 558 | "near-me", 559 | "network-cell", 560 | "network-check", 561 | "network-locked", 562 | "network-wifi", 563 | "new-releases", 564 | "next-week", 565 | "nfc", 566 | "no-encryption", 567 | "no-sim", 568 | "not-interested", 569 | "note", 570 | "note-add", 571 | "notifications", 572 | "notifications-active", 573 | "notifications-none", 574 | "notifications-off", 575 | "notifications-paused", 576 | "offline-pin", 577 | "ondemand-video", 578 | "opacity", 579 | "open-in-browser", 580 | "open-in-new", 581 | "open-with", 582 | "pages", 583 | "pageview", 584 | "palette", 585 | "pan-tool", 586 | "panorama", 587 | "panorama-fish-eye", 588 | "panorama-horizontal", 589 | "panorama-vertical", 590 | "panorama-wide-angle", 591 | "party-mode", 592 | "pause", 593 | "pause-circle-filled", 594 | "pause-circle-outline", 595 | "payment", 596 | "people", 597 | "people-outline", 598 | "perm-camera-mic", 599 | "perm-contact-calendar", 600 | "perm-data-setting", 601 | "perm-device-information", 602 | "perm-identity", 603 | "perm-media", 604 | "perm-phone-msg", 605 | "perm-scan-wifi", 606 | "person", 607 | "person-add", 608 | "person-outline", 609 | "person-pin", 610 | "person-pin-circle", 611 | "personal-video", 612 | "pets", 613 | "phone", 614 | "phone-android", 615 | "phone-bluetooth-speaker", 616 | "phone-forwarded", 617 | "phone-in-talk", 618 | "phone-iphone", 619 | "phone-locked", 620 | "phone-missed", 621 | "phone-paused", 622 | "phonelink", 623 | "phonelink-erase", 624 | "phonelink-lock", 625 | "phonelink-off", 626 | "phonelink-ring", 627 | "phonelink-setup", 628 | "photo", 629 | "photo-album", 630 | "photo-camera", 631 | "photo-filter", 632 | "photo-library", 633 | "photo-size-select-actual", 634 | "photo-size-select-large", 635 | "photo-size-select-small", 636 | "picture-as-pdf", 637 | "picture-in-picture", 638 | "picture-in-picture-alt", 639 | "pie-chart", 640 | "pie-chart-outlined", 641 | "pin-drop", 642 | "place", 643 | "play-arrow", 644 | "play-circle-filled", 645 | "play-circle-outline", 646 | "play-for-work", 647 | "playlist-add", 648 | "playlist-add-check", 649 | "playlist-play", 650 | "plus-one", 651 | "poll", 652 | "polymer", 653 | "pool", 654 | "portable-wifi-off", 655 | "portrait", 656 | "power", 657 | "power-input", 658 | "power-settings-new", 659 | "pregnant-woman", 660 | "present-to-all", 661 | "print", 662 | "priority-high", 663 | "public", 664 | "publish", 665 | "query-builder", 666 | "question-answer", 667 | "queue", 668 | "queue-music", 669 | "queue-play-next", 670 | "radio", 671 | "radio-button-checked", 672 | "radio-button-unchecked", 673 | "rate-review", 674 | "receipt", 675 | "recent-actors", 676 | "record-voice-over", 677 | "redeem", 678 | "redo", 679 | "refresh", 680 | "remove", 681 | "remove-circle", 682 | "remove-circle-outline", 683 | "remove-from-queue", 684 | "remove-red-eye", 685 | "remove-shopping-cart", 686 | "reorder", 687 | "repeat", 688 | "repeat-one", 689 | "replay", 690 | "replay-10", 691 | "replay-30", 692 | "replay-5", 693 | "reply", 694 | "reply-all", 695 | "report", 696 | "report-problem", 697 | "restaurant", 698 | "restaurant-menu", 699 | "restore", 700 | "restore-page", 701 | "ring-volume", 702 | "room", 703 | "room-service", 704 | "rotate-90-degrees-ccw", 705 | "rotate-left", 706 | "rotate-right", 707 | "rounded-corner", 708 | "router", 709 | "rowing", 710 | "rss-feed", 711 | "rv-hookup", 712 | "satellite", 713 | "save", 714 | "scanner", 715 | "schedule", 716 | "school", 717 | "screen-lock-landscape", 718 | "screen-lock-portrait", 719 | "screen-lock-rotation", 720 | "screen-rotation", 721 | "screen-share", 722 | "sd-card", 723 | "sd-storage", 724 | "search", 725 | "security", 726 | "select-all", 727 | "send", 728 | "sentiment-dissatisfied", 729 | "sentiment-neutral", 730 | "sentiment-satisfied", 731 | "sentiment-very-dissatisfied", 732 | "sentiment-very-satisfied", 733 | "settings", 734 | "settings-applications", 735 | "settings-backup-restore", 736 | "settings-bluetooth", 737 | "settings-brightness", 738 | "settings-cell", 739 | "settings-ethernet", 740 | "settings-input-antenna", 741 | "settings-input-component", 742 | "settings-input-composite", 743 | "settings-input-hdmi", 744 | "settings-input-svideo", 745 | "settings-overscan", 746 | "settings-phone", 747 | "settings-power", 748 | "settings-remote", 749 | "settings-system-daydream", 750 | "settings-voice", 751 | "share", 752 | "shop", 753 | "shop-two", 754 | "shopping-basket", 755 | "shopping-cart", 756 | "short-text", 757 | "show-chart", 758 | "shuffle", 759 | "signal-cellular-4-bar", 760 | "signal-cellular-connected-no-internet-4-bar", 761 | "signal-cellular-no-sim", 762 | "signal-cellular-null", 763 | "signal-cellular-off", 764 | "signal-wifi-4-bar", 765 | "signal-wifi-4-bar-lock", 766 | "signal-wifi-off", 767 | "sim-card", 768 | "sim-card-alert", 769 | "skip-next", 770 | "skip-previous", 771 | "slideshow", 772 | "slow-motion-video", 773 | "smartphone", 774 | "smoke-free", 775 | "smoking-rooms", 776 | "sms", 777 | "sms-failed", 778 | "snooze", 779 | "sort", 780 | "sort-by-alpha", 781 | "spa", 782 | "space-bar", 783 | "speaker", 784 | "speaker-group", 785 | "speaker-notes", 786 | "speaker-notes-off", 787 | "speaker-phone", 788 | "spellcheck", 789 | "star", 790 | "star-border", 791 | "star-half", 792 | "stars", 793 | "stay-current-landscape", 794 | "stay-current-portrait", 795 | "stay-primary-landscape", 796 | "stay-primary-portrait", 797 | "stop", 798 | "stop-screen-share", 799 | "storage", 800 | "store", 801 | "store-mall-directory", 802 | "straighten", 803 | "streetview", 804 | "strikethrough-s", 805 | "style", 806 | "subdirectory-arrow-left", 807 | "subdirectory-arrow-right", 808 | "subject", 809 | "subscriptions", 810 | "subtitles", 811 | "subway", 812 | "supervisor-account", 813 | "surround-sound", 814 | "swap-calls", 815 | "swap-horiz", 816 | "swap-vert", 817 | "swap-vertical-circle", 818 | "switch-camera", 819 | "switch-video", 820 | "sync", 821 | "sync-disabled", 822 | "sync-problem", 823 | "system-update", 824 | "system-update-alt", 825 | "tab", 826 | "tab-unselected", 827 | "tablet", 828 | "tablet-android", 829 | "tablet-mac", 830 | "tag-faces", 831 | "tap-and-play", 832 | "terrain", 833 | "text-fields", 834 | "text-format", 835 | "textsms", 836 | "texture", 837 | "theaters", 838 | "thumb-down", 839 | "thumb-up", 840 | "thumbs-up-down", 841 | "time-to-leave", 842 | "timelapse", 843 | "timeline", 844 | "timer", 845 | "timer-10", 846 | "timer-3", 847 | "timer-off", 848 | "title", 849 | "toc", 850 | "today", 851 | "toll", 852 | "tonality", 853 | "touch-app", 854 | "toys", 855 | "track-changes", 856 | "traffic", 857 | "train", 858 | "tram", 859 | "transfer-within-a-station", 860 | "transform", 861 | "translate", 862 | "trending-down", 863 | "trending-flat", 864 | "trending-up", 865 | "tune", 866 | "turned-in", 867 | "turned-in-not", 868 | "tv", 869 | "unarchive", 870 | "undo", 871 | "unfold-less", 872 | "unfold-more", 873 | "update", 874 | "usb", 875 | "verified-user", 876 | "vertical-align-bottom", 877 | "vertical-align-center", 878 | "vertical-align-top", 879 | "vibration", 880 | "video-call", 881 | "video-label", 882 | "video-library", 883 | "videocam", 884 | "videocam-off", 885 | "videogame-asset", 886 | "view-agenda", 887 | "view-array", 888 | "view-carousel", 889 | "view-column", 890 | "view-comfy", 891 | "view-compact", 892 | "view-day", 893 | "view-headline", 894 | "view-list", 895 | "view-module", 896 | "view-quilt", 897 | "view-stream", 898 | "view-week", 899 | "vignette", 900 | "visibility", 901 | "visibility-off", 902 | "voice-chat", 903 | "voicemail", 904 | "volume-down", 905 | "volume-mute", 906 | "volume-off", 907 | "volume-up", 908 | "vpn-key", 909 | "vpn-lock", 910 | "wallpaper", 911 | "warning", 912 | "watch", 913 | "watch-later", 914 | "wb-auto", 915 | "wb-cloudy", 916 | "wb-incandescent", 917 | "wb-iridescent", 918 | "wb-sunny", 919 | "wc", 920 | "web", 921 | "web-asset", 922 | "weekend", 923 | "whatshot", 924 | "widgets", 925 | "wifi", 926 | "wifi-lock", 927 | "wifi-tethering", 928 | "work", 929 | "wrap-text", 930 | "youtube-searched-for", 931 | "zoom-in", 932 | "zoom-out", 933 | "zoom-out-map" 934 | ] -------------------------------------------------------------------------------- /src/icon-list/Octicons.js: -------------------------------------------------------------------------------- 1 | export default octicons = [ 2 | "alert", 3 | "arrow-down", 4 | "arrow-left", 5 | "arrow-right", 6 | "arrow-small-down", 7 | "arrow-small-left", 8 | "arrow-small-right", 9 | "arrow-small-up", 10 | "arrow-up", 11 | "beaker", 12 | "bell", 13 | "bold", 14 | "book", 15 | "bookmark", 16 | "briefcase", 17 | "broadcast", 18 | "browser", 19 | "bug", 20 | "calendar", 21 | "check", 22 | "checklist", 23 | "chevron-down", 24 | "chevron-left", 25 | "chevron-right", 26 | "chevron-up", 27 | "circle-slash", 28 | "circuit-board", 29 | "clippy", 30 | "clock", 31 | "cloud-download", 32 | "cloud-upload", 33 | "code", 34 | "comment", 35 | "comment-discussion", 36 | "credit-card", 37 | "dash", 38 | "dashboard", 39 | "database", 40 | "desktop-download", 41 | "device-camera", 42 | "device-camera-video", 43 | "device-desktop", 44 | "device-mobile", 45 | "diff", 46 | "diff-added", 47 | "diff-ignored", 48 | "diff-modified", 49 | "diff-removed", 50 | "diff-renamed", 51 | "ellipsis", 52 | "eye", 53 | "file", 54 | "file-binary", 55 | "file-code", 56 | "file-directory", 57 | "file-media", 58 | "file-pdf", 59 | "file-submodule", 60 | "file-symlink-directory", 61 | "file-symlink-file", 62 | "file-text", 63 | "file-zip", 64 | "flame", 65 | "fold", 66 | "gear", 67 | "gift", 68 | "gist", 69 | "gist-secret", 70 | "git-branch", 71 | "git-commit", 72 | "git-compare", 73 | "git-merge", 74 | "git-pull-request", 75 | "globe", 76 | "grabber", 77 | "graph", 78 | "heart", 79 | "history", 80 | "home", 81 | "horizontal-rule", 82 | "hubot", 83 | "inbox", 84 | "info", 85 | "issue-closed", 86 | "issue-opened", 87 | "issue-reopened", 88 | "italic", 89 | "jersey", 90 | "kebab-horizontal", 91 | "kebab-vertical", 92 | "key", 93 | "keyboard", 94 | "law", 95 | "light-bulb", 96 | "link", 97 | "link-external", 98 | "list-ordered", 99 | "list-unordered", 100 | "location", 101 | "lock", 102 | "logo-gist", 103 | "logo-github", 104 | "mail", 105 | "mail-read", 106 | "mail-reply", 107 | "mark-github", 108 | "markdown", 109 | "megaphone", 110 | "mention", 111 | "milestone", 112 | "mirror", 113 | "mortar-board", 114 | "mute", 115 | "no-newline", 116 | "note", 117 | "octoface", 118 | "organization", 119 | "package", 120 | "paintcan", 121 | "pencil", 122 | "person", 123 | "pin", 124 | "plug", 125 | "plus", 126 | "plus-small", 127 | "primitive-dot", 128 | "primitive-square", 129 | "project", 130 | "pulse", 131 | "question", 132 | "quote", 133 | "radio-tower", 134 | "reply", 135 | "repo", 136 | "repo-clone", 137 | "repo-force-push", 138 | "repo-forked", 139 | "repo-pull", 140 | "repo-push", 141 | "rocket", 142 | "rss", 143 | "ruby", 144 | "screen-full", 145 | "screen-normal", 146 | "search", 147 | "server", 148 | "settings", 149 | "shield", 150 | "sign-in", 151 | "sign-out", 152 | "smiley", 153 | "squirrel", 154 | "star", 155 | "stop", 156 | "sync", 157 | "tag", 158 | "tasklist", 159 | "telescope", 160 | "terminal", 161 | "text-size", 162 | "three-bars", 163 | "thumbsdown", 164 | "thumbsup", 165 | "tools", 166 | "trashcan", 167 | "triangle-down", 168 | "triangle-left", 169 | "triangle-right", 170 | "triangle-up", 171 | "unfold", 172 | "unmute", 173 | "unverified", 174 | "verified", 175 | "versions", 176 | "watch", 177 | "x", 178 | "zap" 179 | ] -------------------------------------------------------------------------------- /src/icon-list/SimpleLineIcons.js: -------------------------------------------------------------------------------- 1 | export default simpleLineIcons = [ 2 | "user", 3 | "people", 4 | "user-female", 5 | "user-follow", 6 | "user-following", 7 | "user-unfollow", 8 | "login", 9 | "logout", 10 | "emotsmile", 11 | "phone", 12 | "call-end", 13 | "call-in", 14 | "call-out", 15 | "map", 16 | "location-pin", 17 | "direction", 18 | "directions", 19 | "compass", 20 | "layers", 21 | "menu", 22 | "list", 23 | "options-vertical", 24 | "options", 25 | "arrow-down", 26 | "arrow-left", 27 | "arrow-right", 28 | "arrow-up", 29 | "arrow-up-circle", 30 | "arrow-left-circle", 31 | "arrow-right-circle", 32 | "arrow-down-circle", 33 | "check", 34 | "clock", 35 | "plus", 36 | "minus", 37 | "close", 38 | "event", 39 | "exclamation", 40 | "organization", 41 | "trophy", 42 | "screen-smartphone", 43 | "screen-desktop", 44 | "plane", 45 | "notebook", 46 | "mustache", 47 | "mouse", 48 | "magnet", 49 | "energy", 50 | "disc", 51 | "cursor", 52 | "cursor-move", 53 | "crop", 54 | "chemistry", 55 | "speedometer", 56 | "shield", 57 | "screen-tablet", 58 | "magic-wand", 59 | "hourglass", 60 | "graduation", 61 | "ghost", 62 | "game-controller", 63 | "fire", 64 | "eyeglass", 65 | "envelope-open", 66 | "envelope-letter", 67 | "bell", 68 | "badge", 69 | "anchor", 70 | "wallet", 71 | "vector", 72 | "speech", 73 | "puzzle", 74 | "printer", 75 | "present", 76 | "playlist", 77 | "pin", 78 | "picture", 79 | "handbag", 80 | "globe-alt", 81 | "globe", 82 | "folder-alt", 83 | "folder", 84 | "film", 85 | "feed", 86 | "drop", 87 | "drawer", 88 | "docs", 89 | "doc", 90 | "diamond", 91 | "cup", 92 | "calculator", 93 | "bubbles", 94 | "briefcase", 95 | "book-open", 96 | "basket-loaded", 97 | "basket", 98 | "bag", 99 | "action-undo", 100 | "action-redo", 101 | "wrench", 102 | "umbrella", 103 | "trash", 104 | "tag", 105 | "support", 106 | "frame", 107 | "size-fullscreen", 108 | "size-actual", 109 | "shuffle", 110 | "share-alt", 111 | "share", 112 | "rocket", 113 | "question", 114 | "pie-chart", 115 | "pencil", 116 | "note", 117 | "loop", 118 | "home", 119 | "grid", 120 | "graph", 121 | "microphone", 122 | "music-tone-alt", 123 | "music-tone", 124 | "earphones-alt", 125 | "earphones", 126 | "equalizer", 127 | "like", 128 | "dislike", 129 | "control-start", 130 | "control-rewind", 131 | "control-play", 132 | "control-pause", 133 | "control-forward", 134 | "control-end", 135 | "volume-1", 136 | "volume-2", 137 | "volume-off", 138 | "calendar", 139 | "bulb", 140 | "chart", 141 | "ban", 142 | "bubble", 143 | "camrecorder", 144 | "camera", 145 | "cloud-download", 146 | "cloud-upload", 147 | "envelope", 148 | "eye", 149 | "flag", 150 | "heart", 151 | "info", 152 | "key", 153 | "link", 154 | "lock", 155 | "lock-open", 156 | "magnifier", 157 | "magnifier-add", 158 | "magnifier-remove", 159 | "paper-clip", 160 | "paper-plane", 161 | "power", 162 | "refresh", 163 | "reload", 164 | "settings", 165 | "star", 166 | "symbol-female", 167 | "symbol-male", 168 | "target", 169 | "credit-card", 170 | "paypal", 171 | "social-tumblr", 172 | "social-twitter", 173 | "social-facebook", 174 | "social-instagram", 175 | "social-linkedin", 176 | "social-pinterest", 177 | "social-github", 178 | "social-google", 179 | "social-reddit", 180 | "social-skype", 181 | "social-dribbble", 182 | "social-behance", 183 | "social-foursqare", 184 | "social-soundcloud", 185 | "social-spotify", 186 | "social-stumbleupon", 187 | "social-youtube", 188 | "social-dropbox", 189 | "social-vkontakte", 190 | "social-steam" 191 | 192 | ] -------------------------------------------------------------------------------- /src/icon-list/Zocial.js: -------------------------------------------------------------------------------- 1 | export default zocial = [ 2 | "acrobat", 3 | "amazon", 4 | "android", 5 | "angellist", 6 | "aol", 7 | "appnet", 8 | "appstore", 9 | "bitbucket", 10 | "bitcoin", 11 | "blogger", 12 | "buffer", 13 | "cal", 14 | "call", 15 | "cart", 16 | "chrome", 17 | "cloudapp", 18 | "creativecommons", 19 | "delicious", 20 | "digg", 21 | "disqus", 22 | "dribbble", 23 | "dropbox", 24 | "drupal", 25 | "dwolla", 26 | "email", 27 | "eventasaurus", 28 | "eventbrite", 29 | "eventful", 30 | "evernote", 31 | "facebook", 32 | "fivehundredpx", 33 | "flattr", 34 | "flickr", 35 | "forrst", 36 | "foursquare", 37 | "github", 38 | "gmail", 39 | "google", 40 | "googleplay", 41 | "googleplus", 42 | "gowalla", 43 | "grooveshark", 44 | "guest", 45 | "html5", 46 | "ie", 47 | "instagram", 48 | "instapaper", 49 | "intensedebate", 50 | "itunes", 51 | "klout", 52 | "lanyrd", 53 | "lastfm", 54 | "lego", 55 | "linkedin", 56 | "lkdto", 57 | "logmein", 58 | "macstore", 59 | "meetup", 60 | "myspace", 61 | "ninetyninedesigns", 62 | "openid", 63 | "opentable", 64 | "paypal", 65 | "persona", 66 | "pinboard", 67 | "pinterest", 68 | "plancast", 69 | "plurk", 70 | "pocket", 71 | "podcast", 72 | "posterous", 73 | "print", 74 | "quora", 75 | "reddit", 76 | "rss", 77 | "scribd", 78 | "skype", 79 | "smashing", 80 | "songkick", 81 | "soundcloud", 82 | "spotify", 83 | "stackoverflow", 84 | "statusnet", 85 | "steam", 86 | "stripe", 87 | "stumbleupon", 88 | "tumblr", 89 | "twitter", 90 | "viadeo", 91 | "vimeo", 92 | "vk", 93 | "weibo", 94 | "wikipedia", 95 | "windows", 96 | "wordpress", 97 | "xing", 98 | "yahoo", 99 | "ycombinator", 100 | "yelp", 101 | "youtube" 102 | ] --------------------------------------------------------------------------------