npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

dat-button

2.3.0

@juliangruber

npmHomeRepoSnykSocket
Downloads:215
$ npm install dat-button
DailyWeeklyMonthlyYearly

dat-button

A dat style button.

WIP

Example

const button = require('dat-button')

const el = button({
  text: 'BUTTON',
  style: {
    color: 'black'
  },
  click: () => console.log('click'),
  klass: 'my-class'
}, onclick)

document.body.appendChild(el)

API

button({ text, style, click })