/** * LanguageIcon — custom SVG für Sprache-Setting (statt Ionicons language-outline). * * SVG-Source: User-provided (24×24 viewBox, currentColor stroke). * Pattern: A-glyph + speech-bubble + Aa-letters → Translation/Language-Picker affordance. */ import { Svg, G, Path } from 'react-native-svg'; type Props = { size?: number; color?: string; }; export function LanguageIcon({ size = 24, color = 'currentColor' }: Props) { return ( ); }