Can the content of a CSS class be used in a directive to display different icons from FontAwesome?
template
<div class="modal-tooltip" tabindex="-1">
<span class="CSS-CLASS-I-WANT-TO-PASS-IN"></span>
<div class="tooltip-body">
<span ng-transclude></span>
</div>
</div>
directive
restrict = "E";
scope = {
alignment: "@"
};
template = Templates.toolTip;
transclude = true;
controller = ["$scope", ($scope) => {
}];
.MY-CSS-CLASS-I-WANT-TO-CHANGE-THE-CONTENT-OF
content: "\f059";