iconoir/iconoir.com/components/MDXRemote.tsx
2023-10-29 14:33:17 +01:00

24 lines
531 B
TypeScript

import { MDXRemote as CoreMDXRemote, MDXRemoteProps } from 'next-mdx-remote';
import { Table } from './Table';
import { Body, Code, InlineCode, H1, H2, H3, Pre, Li } from './Typography';
export function MDXRemote(props: MDXRemoteProps) {
return (
<CoreMDXRemote
{...props}
components={{
...props.components,
pre: Pre,
blockquote: Code,
p: Body,
h1: H1,
h2: H2,
h3: H3,
table: Table,
code: InlineCode,
li: Li,
}}
/>
);
}