Files
tuono/apps/documentation/src/components/mdx-provider/mdx-code/mdx-code.tsx
T

9 lines
241 B
TypeScript
Raw Normal View History

import type { JSX, HTMLAttributes } from 'react'
2024-07-27 11:33:34 +02:00
import { Code } from '@mantine/core'
export default function MdxCode(
props: HTMLAttributes<HTMLPreElement>,
): JSX.Element {
return <Code {...props} style={{ fontSize: 'inherit' }} />
2024-07-27 11:33:34 +02:00
}