ListButton.js 418 B

123456789101112131415
  1. export default class ListButton{
  2. constructor(icon, actions){
  3. this.icon = icon;
  4. this.actions = actions;
  5. }
  6. render() {
  7. this.actionButton = document.createElement('button');
  8. this.actionButton.classList.add('btn', 'btn-outline-secondary');
  9. this.actionButton.innerHTML = `<i class="fa fa-${this.icon}" aria-hidden="true"></i>`;
  10. return this.actionButton;
  11. }
  12. }