@codedoc/core
Version:
Create beautiful modern documentation websites.
16 lines • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ToCHeading = exports.ToCHeadingStyle = void 0;
var jss_theme_1 = require("@connectv/jss-theme");
exports.ToCHeadingStyle = jss_theme_1.themedStyle(function (theme) { return ({
heading: {
fontWeight: 'bold',
fontSize: 18,
}
}); });
function ToCHeading(_, renderer, content) {
var classes = this.theme.classes(exports.ToCHeadingStyle);
return renderer.create("div", { class: classes.heading }, content);
}
exports.ToCHeading = ToCHeading;
//# sourceMappingURL=heading.js.map