Cyber Circles are randomly generated circles containing smaller circles inside.
Compression
Size
Smooth Edges
You can install the Cyber Circle Identicon library locally using:
npm install cyber-circle-identiconWith 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,
});