1.1.1 • Published 2 years ago

dat-elements v1.1.1

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

deprecated

More info on active projects and modules at dat-ecosystem.org


dat-elements

npm version build status downloads js-standard-style

Dat UI elements.

Usage

var Loader = require('dat-elements/loader')
var Sprite = require('dat-elements/sprite')
var Icon = require('dat-elements/icon')

// load the SVG sprite containing all icons onto the DOM
var sprite = Sprite()
document.body.appendChild(sprite)

// select an icon from the sprite!
var icon = Icon('happy-dat')
document.body.appendChild(icon)

// create a loader element
var loader = Loader()
document.body.appendChild(loader)

API

loader = Loader()

Create a smooth, pulsating loader.

sprite = Sprite()

Create a new SVG sprite that must be loaded onto the DOM as the first child element. Allows the icon element to work.

icon = Icon(iconName, [options])

Create a new icon element, referencing an icon from the sprite.

Installation

$ npm install dat-elements

See Also

License

MIT