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

9 lines
234 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 {
2024-10-17 09:03:05 +02:00
return <Code {...props} style={{ fontSize: 14 }} />
2024-07-27 11:33:34 +02:00
}