gitextract_eixd0uz8/ ├── .editorconfig ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .node-version ├── .npmignore ├── .prettierignore ├── LICENSE ├── README.md ├── jest/ │ └── esm-transformer.js ├── jest.config.js ├── package.json ├── packages/ │ ├── emoji-mart/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src/ │ │ ├── __tests__/ │ │ │ ├── config.test.js │ │ │ └── utils.test.js │ │ ├── browser.js │ │ ├── components/ │ │ │ ├── Emoji/ │ │ │ │ ├── Emoji.tsx │ │ │ │ ├── EmojiElement.jsx │ │ │ │ ├── EmojiProps.ts │ │ │ │ └── index.ts │ │ │ ├── HOCs/ │ │ │ │ ├── PureInlineComponent.ts │ │ │ │ └── index.ts │ │ │ ├── HTMLElement/ │ │ │ │ ├── HTMLElement.ts │ │ │ │ ├── ShadowElement.ts │ │ │ │ └── index.ts │ │ │ ├── Navigation/ │ │ │ │ ├── Navigation.tsx │ │ │ │ └── index.ts │ │ │ └── Picker/ │ │ │ ├── Picker.tsx │ │ │ ├── PickerElement.tsx │ │ │ ├── PickerProps.ts │ │ │ ├── PickerStyles.scss │ │ │ └── index.ts │ │ ├── config.ts │ │ ├── declaration.d.ts │ │ ├── helpers/ │ │ │ ├── __tests__/ │ │ │ │ ├── frequently-used.test.js │ │ │ │ ├── native-support.test.js │ │ │ │ ├── search-index.test.js │ │ │ │ └── store.test.js │ │ │ ├── frequently-used.ts │ │ │ ├── index.ts │ │ │ ├── native-support.ts │ │ │ ├── search-index.ts │ │ │ └── store.ts │ │ ├── icons.tsx │ │ ├── index.ts │ │ └── utils.ts │ ├── emoji-mart-data/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.js │ │ ├── i18n/ │ │ │ ├── ar.json │ │ │ ├── be.json │ │ │ ├── cs.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── sa.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ └── zh.json │ │ ├── index.d.ts │ │ ├── package.json │ │ └── sets/ │ │ ├── 1/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 11/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 12/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 12.1/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 13/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 13.1/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 14/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 15/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 2/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 3/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ ├── 4/ │ │ │ ├── all.json │ │ │ ├── apple.json │ │ │ ├── facebook.json │ │ │ ├── google.json │ │ │ ├── native.json │ │ │ └── twitter.json │ │ └── 5/ │ │ ├── all.json │ │ ├── apple.json │ │ ├── facebook.json │ │ ├── google.json │ │ ├── native.json │ │ └── twitter.json │ ├── emoji-mart-react/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── react.tsx │ └── emoji-mart-website/ │ ├── .posthtmlrc │ ├── example-categories.html │ ├── example-custom-font.html │ ├── example-custom-styles.html │ ├── example-dynamic-width.html │ ├── example-emoji-component.html │ ├── example-headless-search.html │ ├── example-slack-colors.html │ ├── examples.html │ ├── index.html │ ├── layout.html │ ├── package.json │ └── styles.scss └── tsconfig.json