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