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