/** * notion-enhancer: outliner * (c) 2024 dragonwocky (https://dragonwocky.me/) * (https://notion-enhancer.github.io/) under the MIT license */ function Heading({ indent, ...props }, ...children) { const { html } = globalThis.__enhancerApi; return html`
${children}
`; } export { Heading };