import React from 'react'; import { Text, TextProps, Platform, StyleSheet } from 'react-native'; import { OnboardingColors } from '@/constants/OnboardingTheme'; interface SerifTextProps extends TextProps { weight?: 'regular' | 'bold'; } export function SerifText({ style, weight = 'regular', ...otherProps }: SerifTextProps) { return ( ); } const styles = StyleSheet.create({ text: { fontFamily: Platform.select({ ios: 'Georgia', android: 'serif', default: 'serif' }), color: OnboardingColors.textPrimary, }, bold: { fontWeight: 'bold', }, });