Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richie-south/local-emoji-picker
local-emoji-picker
https://github.com/richie-south/local-emoji-picker
emoji emoji-picker react
Last synced: about 5 hours ago
JSON representation
local-emoji-picker
- Host: GitHub
- URL: https://github.com/richie-south/local-emoji-picker
- Owner: richie-south
- License: mit
- Created: 2019-04-30T06:29:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-09T07:32:32.000Z (almost 3 years ago)
- Last Synced: 2024-02-01T21:04:12.418Z (10 months ago)
- Topics: emoji, emoji-picker, react
- Language: TypeScript
- Homepage: https://local-emoji-picker.richardsoderman.se/
- Size: 1.38 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# local-emoji-picker
emoji picker for local emojis
## [live example](https://local-emoji-picker.richardsoderman.se/)
**props**
- categorySelector: boolean
- default: false
- search: boolean
- default: false
- frequentlyUsed: boolean
- default: false
- categories: categories
- default: preset, example { category: 'people', symbol: '😄' }
- onClick: function(data)
- data: { value: string, keywords: Array }
- idPrefix: string
- default: ''### examples
```javascript
const onClick = (data) => {
console.log(data) /*
{
value: '',
keywords: ['', ...],
}
*/
}
// only search
// only category selector
// custom category selector
,// only frequently used
,// none
,
```