Files
AppDev/FastNotes/components/themed-text.tsx
2026-03-16 17:42:22 +01:00

36 lines
937 B
TypeScript

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 (
<Text
style={[
{ color },
type === 'default' ? styles.default : undefined,
type === 'title' ? styles.title : undefined,
type === 'defaultSemiBold' ? styles.defaultSemiBold : undefined,
type === 'subtitle' ? styles.subtitle : undefined,
type === 'link' ? styles.link : undefined,
style,
]}
{...rest}
/>
)
}