2.0.0 • Published 3 years ago

@appbak3r/sushi-identicon v2.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

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.