@suenot/jazzicon
TypeScript icon, indicating that this package has built-in type declarations

2.0.7 • Public • Published

@metamask/jazzicon

⭐️ View demo

Say goodbye to boring, blocky identicons that look like they came out of the '70s and replace them with jazzy, colorful collages that more likely came out of the '80s!

Installation

npm install @metamask/jazzicon

Usage

This library exports a single function which:

  • takes two numbers, the diameter of the icon in pixels and a seed for randomly generating patterns
  • gives you back a DOM element representing the icon to use as you wish

For example:

const jazzicon = require('@metamask/jazzicon');

// Generate 60 icons
for (let i = 0; i < 60; i++) {
  // Use 100px as the diameter for each icon and a random number for the seed
  const icon = jazzicon(100, Math.round(Math.random() * 10000000));
  // Add the new icon to the page
  document.body.appendChild(icon);
}

Generating the demo

You can generate and run the demo locally by running npm run build-demo, then opening demo-build/index.html in your browser.

Readme

Keywords

Package Sidebar

Install

npm i @suenot/jazzicon

Weekly Downloads

1

Version

2.0.7

License

ISC

Unpacked Size

8.19 kB

Total Files

8

Last publish

Collaborators

  • suenot