Fas 2 steg 3: Household Trust Score (admin + i18n status i appen)

This commit is contained in:
Sven (AAMOS AI)
2026-08-06 23:45:28 +07:00
parent bcf932d2ff
commit 4385fe5125
21 changed files with 396 additions and 23 deletions
+3 -2
View File
@@ -9,6 +9,7 @@ import {
View,
type StyleProp,
type TextInputProps,
type TextStyle,
type ViewStyle,
} from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
@@ -46,8 +47,8 @@ export function Heading({ children }: { children: ReactNode }) {
export function Body({ children, muted = false }: { children: ReactNode; muted?: boolean }) {
return <Text style={[typography.body, muted && { color: colors.textMuted }]}>{children}</Text>;
}
export function Small({ children }: { children: ReactNode }) {
return <Text style={typography.small}>{children}</Text>;
export function Small({ children, style }: { children: ReactNode; style?: StyleProp<TextStyle> }) {
return <Text style={[typography.small, style]}>{children}</Text>;
}
export function Card({