// @ts-check import classNameProp from "class-name-prop"; import React from "react"; /** CSS dependency URLs for the React component {@linkcode Html}. */ export const css = new Set([ new URL("./Blockquote.css", import.meta.url).href, new URL("./Code.css", import.meta.url).href, new URL("./Heading.css", import.meta.url).href, new URL("./LinkText.css", import.meta.url).href, new URL("./ListOrdered.css", import.meta.url).href, new URL("./ListUnordered.css", import.meta.url).href, new URL("./Para.css", import.meta.url).href, new URL("./Pre.css", import.meta.url).href, new URL("./Table.css", import.meta.url).href, new URL("./Html.css", import.meta.url).href, ]); /** * React component for rendering simple HTML with styles, typically derived from * Markdown. Supported HTML: * * - [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1), * [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2), * [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3), * [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4), * [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5), * [`
`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6) * - [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p) * - [`

`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote) * - [`