import angular from 'angular' import template from './badge.html' angular.module('app').directive('mflyBadge', function mflyBadge () { return { restrict: 'E', replace: true, scope: { icon: '@' }, template, } })