parcel-resolver-svgmoji
v1.0.1
Published
Parcel plugin for various svgmojis as images
Downloads
3
Maintainers
Readme
parcel-resolver-svgmoji
create images from your favorite emojis!
// first, add the resolver in .parcelrc
"resolvers": ["parcel-resolver-svgmoji", "..."]
<!-- set your favicon as a burger -->
<link rel="icon" type="image/x-icon" href="twemoji/🍔.svg" sizes="any" />
<!-- or maybe place it in an image? -->
<img src="notomoji/🚀.svg" width="40px" height="40px" />
<!-- you don't *have* to specify dimensions, but then you'll get a big emoji -->
<img src="blobmoji/💃.svg" />
// even use it in URLs!
const fishURL = new URL("openmoji/🐟.svg", import.meta.url);
Credits
Check out the emoji repositories svgmoji uses:
- google's notoemoji
- a fork of google's notoemoji, blobmoji
- twitter's twemoji (remember! they are CC-BY-4.0, and have preferred attribution requirements.)
- openmoji
Contributing
Go to the contributing guide to learn how to contribute to this project.