Skip to content

Instantly share code, notes, and snippets.

View MostafaAdly's full-sized avatar
🚩
「死が私たちを引き裂くまで」

Mostafa A. A. MostafaAdly

🚩
「死が私たちを引き裂くまで」
View GitHub Profile
@MostafaAdly
MostafaAdly / CountryFlag.tsx
Last active September 22, 2025 14:52
React Native Phone Input setup
import React, { memo } from 'react';
import RNCountryFlag from 'react-native-country-flag';
type CountryFlagProps = React.ComponentProps<typeof RNCountryFlag>;
export const CountryFlag = memo(({ name, ...props }: { name: string } & Partial<CountryFlagProps>) => {
return <RNCountryFlag isoCode={name} size={20} {...props} />;
});
CountryFlag.displayName = 'CountryFlag';