JSFiddle - React, Tailwind, and code Playground

by Michele Marcucci

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">'
    }
});