Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | import { ClassAttributes, HTMLAttributes } from "react";
import type { ReactNode } from "react";
import { ReactMarkdownProps } from "react-markdown/src/ast-to-react";
// HRs are abused in API reference docs so a temporary hack is to simply filter
// them out until we remove them from the generated docs.
export const Hr = (
_props: ClassAttributes<HTMLHRElement> &
HTMLAttributes<HTMLHRElement> &
ReactMarkdownProps
): ReactNode => <></>;
|