Files
tuono/apps/documentation/src/components/MdxProvider/MdxBold/MdxBold.tsx
T

7 lines
209 B
TypeScript
Raw Normal View History

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} />
}