JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="myApp" ng-controller="dummy">
<icon icon="icon"></icon>
</div>
JavaScript
angular.module('myApp', [])
.controller('dummy', ['$scope', function ($scope) {
$scope.icon = 'home';
}])
.directive('icon', function () {
return {
restrict: 'E',
template: '<img ng-src="img/icons/{{icon}}.svg">'
}
});