@netdata/netdata-ui
Version:
netdata UI kit
9 lines (8 loc) • 341 B
JavaScript
;
exports.__esModule = true;
exports["default"] = void 0;
var textDecorations = new Set(["underline", "none", "line-through"]);
var _default = exports["default"] = function _default(_ref) {
var textDecoration = _ref.textDecoration;
return textDecorations.has(textDecoration) && "text-decoration: " + textDecoration + ";";
};