Directory

bu-button - Vaadin Add-on Directory

(no summary available) bu-button - Vaadin Add-on Directory
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/owner/my-element) # bu-button bu-button is a button. It has some types such as submit, google and facebook. ```html ``` ## Installation ``` npm install --save bu-button ``` ## Usage ### In an html file ``` ``` ### In a Polymer 3 element ``` import {PolymerElement, html} from '@polymer/polymer'; import './bu-button.js'; class SampleElement extends PolymerElement { static get template() { return html` `; } } customElements.define('sample-element', SampleElement); ``` ## Contributing 1. Fork it! 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request :D