vechain / picasso

General purpose deterministic identity icon library in svg format, mostly for vechain thor addresses.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Picasso

npm version

General purpose deterministic identity icon library in svg format, mostly for vechain thor addresses.

sample

Install

By CDN

Picasso is available at jsDelivr, you can import it directly.

<script src="https://cdn.jsdelivr.net/npm/@vechain/picasso"></script>

By NPM

# NPM
npm install --save @vechain/picasso

# Yarn
yarn add @vechain/picasso

Usage

import { picasso } from '@vechain/picasso' // not required if imported from script tag

const div = document.createElement("div")
const svg = picasso('0xf6e78a5584c06e2dec5c675d357f050a5402a730')
div.style.background = `no-repeat url('data:image/svg+xml;utf8,${svg}')`
div.style.height = '200px' 
div.style.width = '200px' 

document.body.appendChild(div);

License

picasso is licensed under the GNU Lesser General Public License v3.0, also included in LICENSE file in repository.

About

General purpose deterministic identity icon library in svg format, mostly for vechain thor addresses.

License:GNU Lesser General Public License v3.0


Languages

Language:TypeScript 63.6%Language:HTML 23.8%Language:JavaScript 12.7%