@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 378 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgEnglishInput = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M14 10h2v.757a4.5 4.5 0 0 1 7 3.743V20h-2v-5.5c0-1.43-1.174-2.5-2.5-2.5S16 13.07 16 14.5V20h-2V10Zm-2-6v2H4v5h8v2H4v5h8v2H2V4h10Z" />
</Svg>
);
export default SvgEnglishInput;