Skip to content

Commit 32be3f7

Browse files
committed
fix: wallet icon added
1 parent 5fbff0e commit 32be3f7

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

src/icons/wallet.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from "react";
2+
3+
import { IconProps } from "../core/icon";
4+
5+
export const IconWallet = ({ style, onClick, size = 24 }: IconProps) => (
6+
<svg
7+
width={size}
8+
height={size}
9+
style={style}
10+
onClick={onClick}
11+
viewBox="0 0 19 18"
12+
fill="none"
13+
xmlns="http://www.w3.org/2000/svg"
14+
>
15+
<path
16+
d="M18 15V16C18 16.5304 17.7893 17.0391 17.4142 17.4142C17.0391 17.7893 16.5304 18 16 18H2C0.89 18 0 17.1 0 16V2C0 1.46957 0.210714 0.960859 0.585786 0.585786C0.960859 0.210714 1.46957 0 2 0H16C16.5304 0 17.0391 0.210714 17.4142 0.585786C17.7893 0.960859 18 1.46957 18 2V3H9C7.89 3 7 3.9 7 5V13C7 13.5304 7.21071 14.0391 7.58579 14.4142C7.96086 14.7893 8.46957 15 9 15H18ZM9 13H19V5H9V13ZM13 10.5C12.6022 10.5 12.2206 10.342 11.9393 10.0607C11.658 9.77936 11.5 9.39782 11.5 9C11.5 8.60218 11.658 8.22064 11.9393 7.93934C12.2206 7.65804 12.6022 7.5 13 7.5C13.3978 7.5 13.7794 7.65804 14.0607 7.93934C14.342 8.22064 14.5 8.60218 14.5 9C14.5 9.39782 14.342 9.77936 14.0607 10.0607C13.7794 10.342 13.3978 10.5 13 10.5Z"
17+
fill="white"
18+
/>
19+
</svg>
20+
);

src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export { IconCoins } from "./icons/coins";
44
export { IconCopy } from "./icons/copy";
55
export { IconDroplet } from "./icons/droplet";
66
export { IconEdit } from "./icons/edit";
7+
export { IconWallet } from "./icons/wallet";
78
export { IconExpand } from "./icons/expand";
89
export { IconExternal } from "./icons/external";
910
export { IconFire } from "./icons/fire";

0 commit comments

Comments
 (0)