iconoir/packages/iconoir-react/src/Wallet.tsx
2021-10-13 16:29:32 +02:00

40 lines
908 B
TypeScript

import * as React from 'react';
function SvgWallet(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
strokeWidth={1.5}
height="1.5em"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M19 20H5a2 2 0 01-2-2V9a2 2 0 012-2h14a2 2 0 012 2v9a2 2 0 01-2 2z"
stroke="currentColor"
/>
<path
d="M16.5 14a.5.5 0 110-1 .5.5 0 010 1z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18 7V5.603a2 2 0 00-2.515-1.932l-11 2.933A2 2 0 003 8.537V9"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgWallet);
export default ForwardRef;