2018-02-10 15:18:01 +00:00
|
|
|
import ngModule from '../../module';
|
2017-04-28 13:04:29 +00:00
|
|
|
import './style.css';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2018-02-10 15:18:01 +00:00
|
|
|
ngModule.component('vnIcon', {
|
2017-06-15 13:00:43 +00:00
|
|
|
template: '<i class="material-icons">{{::$ctrl.icon}}</i>',
|
2017-06-13 11:08:06 +00:00
|
|
|
bindings: {
|
|
|
|
icon: '@'
|
2017-06-15 13:00:43 +00:00
|
|
|
}
|
2017-06-13 11:08:06 +00:00
|
|
|
});
|