Files
aris/apps/aelis-client/src/components/ui/sans-serif-text.tsx

14 lines
299 B
TypeScript
Raw Normal View History

import { Text, type TextProps } from "react-native"
import tw from "twrnc"
export function SansSerifText({ children, style, ...props }: TextProps) {
return (
<Text
style={[tw`text-stone-800 dark:text-stone-200`, { fontFamily: "Inter" }, style]}
{...props}
>
{children}
</Text>
)
}