-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
export function MassaWallet({ ...props }) { | ||
return ( | ||
<div className={`bg-primary w-fit rounded-full`} data-testid="svg-icon"> | ||
<svg | ||
width={props.size ?? 40} | ||
height={props.size ?? 40} | ||
viewBox="0 0 40 40" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<g clip-path="url(#clip0_1854_17276)"> | ||
<rect width="40" height="40" rx="8" fill="#151A26" /> | ||
<mask | ||
id="mask0_1854_17276" | ||
maskUnits="userSpaceOnUse" | ||
x="0" | ||
y="0" | ||
width="40" | ||
height="40" | ||
> | ||
<path d="M40 0H0V40H40V0Z" fill="white" /> | ||
</mask> | ||
<g mask="url(#mask0_1854_17276)"> | ||
<path | ||
d="M19.999 40V28.7938L0 19.999H11.2063L19.999 0V11.2063L40 19.999H28.7938L19.999 40Z" | ||
fill="#1AE19D" | ||
/> | ||
</g> | ||
</g> | ||
<defs> | ||
<clipPath id="clip0_1854_17276"> | ||
<rect width="40" height="40" rx="8" fill="white" /> | ||
</clipPath> | ||
</defs> | ||
</svg> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from "./MassaLogo"; | ||
export * from "./MassaToken"; | ||
export * from "./MassaWallet"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters