1
0
mirror of synced 2026-01-06 06:02:35 -05:00
Files
docs/components/ui/MarkdownContent/MarkdownContent.tsx
Mike Surowiec d76c16da19 Scope markdown body (#21082)
* update article content to markdown ui component

* decouple lunr indexing from class name

* remove summary outline none rule, apply utility class instead

* improve typing

* scope more styles down to markdown-body/extended-markdown

* move all markdown-body style overrides to MarkdownContent component

* fix class targeting within css module

* clean up MarkdownContent header style

* rename data-lunr to data-search

* fix: inline code color issue

* fix: update article markdown to work with MarkdownContent
2021-08-30 14:24:49 +00:00

27 lines
588 B
TypeScript

import { ReactNode } from 'react'
import cx from 'classnames'
import styles from './MarkdownContent.module.scss'
type Props = {
children: string | ReactNode
className?: string
as?: keyof JSX.IntrinsicElements
}
export const MarkdownContent = ({
children,
as: Component = 'div',
className,
...restProps
}: Props) => {
return (
<Component
{...restProps}
className={cx(styles.markdownBody, 'markdown-body', className)}
{...(typeof children === 'string'
? { dangerouslySetInnerHTML: { __html: children } }
: { children })}
/>
)
}