Files
tuono/apps/documentation/src/components/MdxProvider/MdxBold/MdxBold.tsx
T
2025-01-15 16:59:36 +01:00

7 lines
209 B
TypeScript

import type { JSX } from 'react'
import { Text, type TextProps } from '@mantine/core'
export default function MdxBold(props: TextProps): JSX.Element {
return <Text component="span" fw={700} {...props} />
}