2018-02-10 15:18:01 +00:00
|
|
|
import ngModule from '../../module';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2018-02-10 15:18:01 +00:00
|
|
|
ngModule.component('vnIconButton', {
|
2017-06-13 11:08:06 +00:00
|
|
|
template: require('./icon-button.html'),
|
|
|
|
bindings: {
|
|
|
|
icon: '@',
|
2017-06-15 13:00:43 +00:00
|
|
|
className: '@?',
|
2017-06-13 11:08:06 +00:00
|
|
|
enabled: '<?',
|
|
|
|
label: '@?'
|
2017-06-15 09:22:47 +00:00
|
|
|
}
|
2017-06-13 11:08:06 +00:00
|
|
|
});
|
|
|
|
|