@codedoc/core
Version:
Create beautiful modern documentation websites.
12 lines • 413 B
JavaScript
import { themedStyle } from '@connectv/jss-theme';
export const ToCHeadingStyle = /*#__PURE__*/ themedStyle(theme => ({
heading: {
fontWeight: 'bold',
fontSize: 18,
}
}));
export function ToCHeading(_, renderer, content) {
const classes = this.theme.classes(ToCHeadingStyle);
return renderer.create("div", { class: classes.heading }, content);
}
//# sourceMappingURL=heading.js.map