"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.fontStyle = void 0;
var fontStyle = function fontStyle(obj) {
return "".concat(obj.fontWeight, " ").concat(obj.fontSize, " ").concat(obj.fontFamily);
};
exports.fontStyle = fontStyle;