Cyber Circles

What Are Cyber Circles?

Cyber Circles are randomly generated circles containing smaller circles inside.

Generate Cyber Circles

Compression

Size

Smooth Edges

Use With Your JavaScript

You can install the Cyber Circle Identicon library locally using:

npm install cyber-circle-identicon

With the package install, you could import it into your code and use it like this:

import { createIdenticon } from 'cyber-circle-identicon';

const userIdenticon = createIdenticon('Hello World!');

Options could be feed through the second parameter like this:

import { createIdenticon } from 'cyber-circle-identicon';

const userIdenticon = createIdenticon('Hello World!', {
	size: 128,
	compression: 1,
	clipped: false,
});