0.1.1 • Published 2 years ago

icon-ipsum v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Icon Ipsum

Lorem Ipsum, for icons.

Usage EsModules

import { IconIpsum } from 'icon-ipsum'

const iconIpsum = new IconIpsum({ strokeWidth : 2, width: 64, height: 64 })
const svg = iconIpsum.icon()

Usage CommonJS

const modulePromise = require('icon-ipsum')

modulePromise.then(({ IconIpsum }) => {
  const iconIpsum = new IconIpsum({ strokeWidth : 2, width: 64, height: 64 })
  const svg = iconIpsum.icon()
})