11 lines
352 B
JavaScript
Raw Normal View History

import { htmlSafe } from "@ember/template";
import { registerRawHelper } from "discourse-common/lib/helpers";
2018-06-15 17:03:24 +02:00
import { renderIcon } from "discourse-common/lib/icon-library";
registerRawHelper("check-icon", checkIcon);
export default function checkIcon(value) {
let icon = value ? "check" : "xmark";
return htmlSafe(renderIcon("string", icon));
}