mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
7 lines
209 B
TypeScript
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} />
|
|
}
|