gitextract_y23idbfu/ ├── .gitattributes ├── .gitignore ├── IconicExample/ │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── __tests__/ │ │ └── App.js │ ├── android/ │ │ ├── .project │ │ ├── .settings/ │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── app/ │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings/ │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── iconicexample/ │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res/ │ │ │ └── values/ │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores/ │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── index.js │ ├── ios/ │ │ ├── IconicExample/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── IconicExample-tvOS/ │ │ │ └── Info.plist │ │ ├── IconicExample-tvOSTests/ │ │ │ └── Info.plist │ │ ├── IconicExample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── IconicExample-tvOS.xcscheme │ │ │ └── IconicExample.xcscheme │ │ └── IconicExampleTests/ │ │ ├── IconicExampleTests.m │ │ └── Info.plist │ └── package.json ├── LICENSE ├── README.md ├── RNIconic.js ├── android/ │ ├── .classpath │ ├── .project │ ├── .settings/ │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ └── java/ │ └── ui/ │ └── iconic/ │ ├── RNIconic.java │ ├── RNIconicEvent.java │ ├── RNIconicModule.java │ └── RNIconicPackage.java ├── ios/ │ ├── Podfile │ ├── RNIconic.h │ ├── RNIconic.m │ ├── RNIconic.xcodeproj/ │ │ └── project.pbxproj │ └── RNIconic.xcworkspace/ │ └── contents.xcworkspacedata ├── package.json └── scripts/ └── installer.js