InputGroup.js 301 Bytes
import template from "./InputGroup.html";
angular.module("esNgAntd").directive("antdInputGroup", function () {
    return {
        controllerAs: "antdInputGroup",
        restrict: "E",
        transclude: true,
        replace: true,
        scope: {
            compact: "@",
        },
    };
});