aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/handlebars/statusIcon.js
blob: 76d9b4869d2f379bddb87fc3a3cf0fc611deb8f5 (plain)
1
2
3
4
5
6
7
import Handlebars from 'handlebars/runtime';

module.exports = function (status) {
  return new Handlebars.default.SafeString(
      '<i class="icon-status-' + status.toLowerCase() + '"></i>'
  );
};