// RN-Port der Vue-Card aus apps/rebreak/app/components/urge/UrgeGamePicker.vue // 2x2-Grid-Kachel mit SVG-Icon (56x56), Titel, descKey und Star-Rating. import { View, Text, TouchableOpacity } from 'react-native'; import { SvgXml } from 'react-native-svg'; import { useTranslation } from 'react-i18next'; import { GameRatingStars } from './GameRatingStars'; import type { GameType } from '../urge/UrgeGames'; export interface GameCardProps { id: GameType; svg: string; titleKey: string; descKey: string; avgStars: number; count: number; onPress: (id: GameType) => void; } export function GameCard({ id, svg, titleKey, descKey, avgStars, count, onPress, }: GameCardProps) { const { t } = useTranslation(); return ( onPress(id)} activeOpacity={0.85} style={{ width: '100%' }} > {t(titleKey)} {t(descKey)} ); }