import {Text, type TextProps} from 'react-native'; import {useThemeColor} from '@/hooks/useThemeColor'; import {useTextStyles} from '@/hooks/useTextStyles'; export type ThemedTextProps = TextProps & { lightColor?: string; darkColor?: string; type?: 'default' | 'title' | 'defaultSemiBold' | 'subtitle' | 'link'; }; export function ThemedText({ style, lightColor, darkColor, type = 'default', ...rest }: ThemedTextProps) { const color = useThemeColor({light: lightColor, dark: darkColor}, 'text'); const styles = useTextStyles(); return ( ); }