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, $element, $attrs, $controllers, $transclude) { esNgAntd.createStyle("ant-breadcrumb", style); } }; }]);