Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
,
```