discourse/app/assets/javascripts/discourse-common/addon/helpers/d-icon.js
2020-09-04 13:42:47 +02:00

8 lines
280 B
JavaScript

import { registerUnbound } from "discourse-common/lib/helpers";
import { renderIcon } from "discourse-common/lib/icon-library";
import { htmlSafe } from "@ember/template";
registerUnbound("d-icon", function (id, params) {
return htmlSafe(renderIcon("string", id, params));
});