chore: add preview

This commit is contained in:
Jakub Grzywacz 2021-07-10 16:07:16 +02:00
parent 095a1fda25
commit 6dae766f77
No known key found for this signature in database
GPG Key ID: 5BBB685871FF63C4
3 changed files with 1 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# react-native-emoji-keyboard # react-native-emoji-keyboard
. ![Preview](/example/assets/preview-small.gif)
## Usage ## Usage
@ -16,9 +16,6 @@ export default function App() {
"emoji": "❤️", "emoji": "❤️",
"name": "red heart", "name": "red heart",
"slug": "red_heart", "slug": "red_heart",
"skin_tone_support": false,
"unicode_version": "0.6",
"emoji_version": "0.6"
}, },
*/ */
}; };

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@ -2,9 +2,6 @@ export type EmojiType = {
emoji: string; emoji: string;
name: string; name: string;
slug: string; slug: string;
skin_tone_support: boolean;
unicode_version: string;
emoji_version: string;
}; };
export type CategoryTypes = export type CategoryTypes =