Files
tuono/apps/documentation/src/components/mdx-provider/mdx-bold/mdx-bold.tsx
T

6 lines
159 B
TypeScript
Raw Normal View History

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