File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 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+ ) ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ export { IconCoins } from "./icons/coins";
44export { IconCopy } from "./icons/copy" ;
55export { IconDroplet } from "./icons/droplet" ;
66export { IconEdit } from "./icons/edit" ;
7+ export { IconWallet } from "./icons/wallet" ;
78export { IconExpand } from "./icons/expand" ;
89export { IconExternal } from "./icons/external" ;
910export { IconFire } from "./icons/fire" ;
You can’t perform that action at this time.
0 commit comments