1
import template from "./InputGroup.html";
2
angular.module("esNgAntd").directive("antdInputGroup", function () {
3 4 5 6 7 8 9 10 11 12
return { template: template, restrict: "E", replace: true, transclude: true, scope: { compact: "=" } }; });