-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWalletIcon.tsx
More file actions
34 lines (33 loc) · 1.18 KB
/
WalletIcon.tsx
File metadata and controls
34 lines (33 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const WalletIcon = ({ size = 20, className = '' }) => (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<path
d="M18.9617 5.46094H5.03832C3.9126 5.46094 3 6.37354 3 7.49926V16.4993C3 17.625 3.9126 18.5376 5.03832 18.5376H18.9617C20.0874 18.5376 21 17.625 21 16.4993V7.49926C21 6.37354 20.0874 5.46094 18.9617 5.46094Z"
stroke="#FCD15A"
strokeWidth="1.56"
strokeLinecap="round"
stroke-linejoin="round"
/>
<path
d="M21 9.96019C21 8.83447 20.0874 7.92188 18.9617 7.92188H5.03832C3.9126 7.92188 3 8.83447 3 9.96019"
stroke="#FCD15A"
strokeWidth="1.56"
strokeLinecap="round"
stroke-linejoin="round"
/>
<path
d="M21 12.5383C21 11.4126 20.0874 10.5 18.9617 10.5H15.4116C15.1471 10.5 14.8924 10.6001 14.6986 10.7802L12.713 12.6257C12.311 12.9992 11.689 12.9992 11.287 12.6257L9.30144 10.7802C9.10764 10.6001 8.853 10.5 8.5884 10.5H5.03832C3.9126 10.5 3 11.4126 3 12.5383"
stroke="#FCD15A"
strokeWidth="1.56"
strokeLinecap="round"
stroke-linejoin="round"
/>
</svg>
);
export default WalletIcon;