├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.ts ├── package.json ├── screenshot.png ├── scripts └── fetch.js └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/scripts/fetch.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staltz/react-native-emoji-modal/HEAD/tsconfig.json --------------------------------------------------------------------------------