react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 478 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgWallet3Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M22.005 7h1v10h-1v3a1 1 0 0 1-1 1h-18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1zm-2 10h-6a5 5 0 0 1 0-10h6V5h-16v14h16zm1-2V9h-7a3 3 0 1 0 0 6zm-7-4h3v2h-3z" />
</Svg>
);
export default SvgWallet3Line;