switch-emoji
v1.0.17
Published
[](https://www.npmjs.com/package/switch-emoji) [](https://github.com/MauricioRobayo/switch-emoji/actions/workflows/ma
Maintainers
Readme
Switch Emoji 💃
No longer mantained. Consider using svg-emojis.
Consistent emojis across devices.
Choose your emoji flavor from Twemoji, GitHub emojis, or OpenMoji.
| GitHub | Twitter | OpenMoji | | --------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------ | | | | | | | | | | | | | | | | |
Installation
npm install --save switch-emojiUsage
import { Semoji } from "switch-emoji";
export function SomeComponent() {
return <Semoji emoji="👋" source="GitHub" />;
}You can wrap Semoji to create you own Emoji React component with your flavor of choice:
import React from "react";
import { Semoji, SemojiProps } from "switch-emoji";
type Props = Omit<SemojiProps, "source">;
export function Emoji(props: Props): JSX.Element | null {
return <Semoji {...props} source="Twitter" />;
}Read the documentation 📘.
TypeScript
The component is written in TypeScript and type definitions are included.
Contributing
All type of contributions are welcome!
Show your support
Give a ⭐️ if you like this project!
