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