mirror of
https://github.com/kennethnym/aris.git
synced 2026-04-14 22:01:17 +01:00
oxfmt was reformatting generated drizzle migration snapshots and crashing on .ona/review/comments.json. Also runs the formatter across the full codebase. Co-authored-by: Ona <no-reply@ona.com>
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
import { Text, type TextProps } from "react-native"
|
|
import tw from "twrnc"
|
|
|
|
export function SerifText({ children, style, ...props }: TextProps) {
|
|
return (
|
|
<Text
|
|
style={[tw`text-stone-800 dark:text-stone-200`, { fontFamily: "Source Serif 4" }, style]}
|
|
{...props}
|
|
>
|
|
{children}
|
|
</Text>
|
|
)
|
|
}
|