@totvs-agro/mobile-components
Version:
Componentes Mobile Totvs (Front-End) para utilização dos estilos do T-Faces e Ionic v3
21 lines • 806 B
JavaScript
import { Component, Input, ViewChild } from '@angular/core';
var HTML_TEMPLATE = "\n<span #container class=\"thf-icon thf-icon-{{name}}\"></span>\n";
var ThfIconComponent = /** @class */ (function () {
function ThfIconComponent() {
}
ThfIconComponent.decorators = [
{ type: Component, args: [{
selector: 'thf-icon',
template: HTML_TEMPLATE
},] },
];
/** @nocollapse */
ThfIconComponent.ctorParameters = function () { return []; };
ThfIconComponent.propDecorators = {
"name": [{ type: Input, args: ['name',] },],
"container": [{ type: ViewChild, args: ['container',] },],
};
return ThfIconComponent;
}());
export { ThfIconComponent };
//# sourceMappingURL=thf-icon.js.map