react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 411 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgWubiInput = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M3 21v-2h3.662l1.234-7H5v-2h3.249l.881-5H4V3h16v2h-8.839l-.882 5H18v9h3v2zm13-9H9.927l-1.235 7H16z" />
</Svg>
);
export default SvgWubiInput;