import { Text, type TextProps } from 'react-native' import { useThemeColor } from '@/hooks/use-theme-color' import { themedTextStyles as styles } from '@/src/styles/app-styles' 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') return ( ) }