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

Dat UI elements.
Usage
var Loader = require('dat-elements/loader')
var Sprite = require('dat-elements/sprite')
var Icon = require('dat-elements/icon')
var sprite = Sprite()
document.body.appendChild(sprite)
var icon = Icon('happy-dat')
document.body.appendChild(icon)
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