import { Component, Input, OnChanges } from '@angular/core';

import { HelperService }               from '../../../../services/svc.helper'

@Component({
    moduleId: module.id+ '',
    selector: 'extra-action-button',
    templateUrl: './template.extra-action-button.pug',
    styleUrls: ['./structure.extra-action-button.scss','./visual.extra-action-button.scss']
})

export class ExtraActionButtonComponent {


    constructor (
        private _helper: HelperService
    ) {  }

}