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