mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
|
|
import { Text, type TextProps } from '@mantine/core'
|
||
|
|
|
||
|
|
export default function MdxBold(props: TextProps): JSX.Element {
|
||
|
|
return <Text fw={700} {...props} />
|
||
|
|
}
|