Divider.js 370 Bytes
import template from "./Divider.html";
import style from "antd/lib/divider/style/index.css";
angular.module("esNgAntd").directive("antdDivider", ["esNgAntd", function (esNgAntd) {
  return {
    template: template,
    restrict: "E",
    replace: true,
    transclude: true,
    link: function ($scope) {
      esNgAntd.createStyle("ant-divider", style);
    }
  };
}]);