emoji-store
v2.0.1
Published
A JavaScript library for platform independent Emojis π.
Downloads
88
Maintainers
Readme
Emoji Store
A JavaScript library for platform independent Emojis π.
Supports most of the web technologies : React, React-Native Vue, Angular, Preact, Lit, Svelte etc.
Install
npm i emoji-store
Use
import emoji, { Apple160 } from 'emoji-store';
function App() {
return (
<div>
<img src={emoji('β€οΈβπ₯')} /> {/*Default Apple64*/}
<img src={emoji('β€οΈβπ₯', Apple160)} />
</div>
);
}
export default App;
import { Emoji, Facebook96 } from 'emoji-store';
const customEmoji = Emoji(Facebook96);
function App() {
return (
<div>
<img src={customEmoji('β€οΈβπ₯')} />
</div>
);
}
Custom Emoji Config
const props = {
author: 'apple',
size: 160,
type: 'png',
};
const customEmoji = Emoji(props);
console.log(customEmoji('π«’'));
console.log(customEmoji('β€οΈβπ₯'));
console.log(customEmoji('ππ»ββοΈ'));
console.log(customEmoji('π§π»βπ»'));
Supporting Emojis
| Platform | Type | Size(px) | Constant | | -------- | ---- | -------- | ---------- | | Apple | PNG | 64 | Apple64 | | Apple | PNG | 160 | Apple160 | | Facebook | PNG | 64 | Facebook64 | | Facebook | PNG | 96 | Facebook96 |
How it works
It returns the link of the specified emoji that is displayed in the browser.