mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
|
|
import { Text, type TextProps } from "react-native"
|
||
|
|
import tw from "twrnc"
|
||
|
|
|
||
|
|
export function MonospaceText({ children, style, ...props }: TextProps) {
|
||
|
|
return (
|
||
|
|
<Text style={[tw`text-stone-800 dark:text-stone-200`, { fontFamily: "Menlo" }, style]} {...props}>
|
||
|
|
{children}
|
||
|
|
</Text>
|
||
|
|
)
|
||
|
|
}
|