@appbak3r/sushi-identicon

Yet another identicon library. Get unique icon as SVG

Usage no npm install needed!

<script type="module">
  import appbak3rSushiIdenticon from 'https://cdn.skypack.dev/@appbak3r/sushi-identicon';
</script>

README

Sushi Identicon

Yet another tiny identicon library.

Get unique identicon as SVG.

Example

Usage

Install

npm install @appbak3r/sushi-identicon

Or with yarn

yarn add @appbak3r/sushi-identicon

Output as a SVG Element

import { generateIdentIcon } from "@appbak3r/sushi-identicon";

document.body.appendChild(generateIdentIcon("hash"));

Output as a string

import { generateIdentIcon } from "@appbak3r/sushi-identicon";

export const App = () => {
  const svgString = generateIdentIcon("hash", true);

  return <div dangerouslySetInnerHTML={{ __html: svgString }} />;
};

License

Distributed under the MIT License. See LICENSE for more information.