Fas 2 steg 3: Household Trust Score (admin + i18n status i appen)
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user