import { ReactNode } from 'react' import cx from 'classnames' import styles from './MarkdownContent.module.scss' export type MarkdownContentPropsT = { children: string | ReactNode className?: string as?: keyof JSX.IntrinsicElements } export const MarkdownContent = ({ children, as: Component = 'div', className, ...restProps }: MarkdownContentPropsT) => { return ( ) }