react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 443 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgEnglishInput(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M14 10h2v.757a4.5 4.5 0 017 3.743V20h-2v-5.5c0-1.43-1.175-2.5-2.5-2.5S16 13.07 16 14.5V20h-2V10zm-2-6v2H4v5h8v2H4v5h8v2H2V4h10z" />
</Svg>
);
}
export default SvgEnglishInput;