mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 21:02:45 -07:00
bcf7e5b5ab
Co-authored-by: Valerio Ageno <valerio.ageno@qonto.com> Co-authored-by: Marco Pasqualetti <marco.pasqualetti@live.com>
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import type { JSX, HTMLAttributes } from 'react'
|
|
import { Code } from '@mantine/core'
|
|
|
|
export default function MdxCode(
|
|
props: HTMLAttributes<HTMLPreElement>,
|
|
): JSX.Element {
|
|
return <Code {...props} style={{ fontSize: 'inherit' }} />
|
|
}
|