import Svg, { ClipPath, G, Path } from 'react-native-svg'; import { useColorScheme } from 'react-native'; export const Visa = (props: any) => { const isLightTheme = useColorScheme() === 'light'; return isLightTheme ? ( ) : ( ); };