fabric8-planner
Version:
A planner front-end for Fabric8.
23 lines • 963 B
JavaScript
import { Component, Input } from '@angular/core';
var UserAvatarComponent = /** @class */ (function () {
function UserAvatarComponent() {
}
UserAvatarComponent.prototype.ngOnInit = function () { };
UserAvatarComponent.decorators = [
{ type: Component, args: [{
selector: 'user-avatar',
template: require('./user-avatar.component.html'),
styles: [require('./user-avatar.component.css').toString()]
},] },
];
/** @nocollapse */
UserAvatarComponent.ctorParameters = function () { return []; };
UserAvatarComponent.propDecorators = {
'imgSrc': [{ type: Input, args: ['imgSrc',] },],
'imgTooltip': [{ type: Input, args: ['imgTooltip',] },],
'imgPlacement': [{ type: Input, args: ['imgPlacement',] },],
};
return UserAvatarComponent;
}());
export { UserAvatarComponent };
//# sourceMappingURL=user-avatar.component.js.map