-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,51 @@ | ||
// GENERATED BY /script/build.js | ||
// DO NOT EDIT MANUALLY | ||
|
||
import * as React from "react"; | ||
import { PictogramIconProps } from "../../types"; | ||
import { SVGPictogramWrapper } from "../../styles"; | ||
import { PictogramsNames } from "../../iconsNames"; | ||
|
||
export const BoxWithCoin = React.forwardRef<SVGSVGElement, PictogramIconProps>( | ||
({ width = 64, height = 64, ...props }, forwardedRef) => { | ||
return ( | ||
<SVGPictogramWrapper icon={PictogramsNames.BoxWithCoin} {...props}> | ||
<svg | ||
width={width} | ||
height={height} | ||
ref={forwardedRef} | ||
viewBox="0 0 64 64" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<defs></defs> | ||
<circle cx="31.5" cy="19.5" r="10.5" className="base" /> | ||
<path | ||
d="M4.0796 41C4.02364 41.0995 3.99624 41.2125 4.00042 41.3266C4.00459 41.4407 4.04018 41.5514 4.10327 41.6465C4.16635 41.7417 4.25448 41.8176 4.35793 41.8658C4.46139 41.9141 4.57616 41.9328 4.6896 41.92H58.6896C58.803 41.9328 58.9178 41.9141 59.0213 41.8658C59.1247 41.8176 59.2128 41.7417 59.2759 41.6465C59.339 41.5514 59.3746 41.4407 59.3788 41.3266C59.383 41.2125 59.3556 41.0995 59.2996 41L56.6896 34.92C56.5621 34.6558 56.3657 34.4308 56.1211 34.2689C55.8764 34.107 55.5926 34.0141 55.2996 34H8.0496C7.76178 34.0193 7.48423 34.1146 7.2453 34.2762C7.00636 34.4379 6.8146 34.66 6.6896 34.92L4.0796 41Z" | ||
className="base" | ||
/> | ||
<path | ||
d="M54.6333 41H8.36673C7.61191 41 7 41.5495 7 42.2273V58.7727C7 59.4505 7.61191 60 8.36673 60H54.6333C55.3881 60 56 59.4505 56 58.7727V42.2273C56 41.5495 55.3881 41 54.6333 41Z" | ||
className="base" | ||
/> | ||
<g className="mix-blend-multiply"> | ||
<path | ||
d="M4.0796 41C4.02364 41.0995 3.99624 41.2125 4.00042 41.3266C4.00459 41.4407 4.04018 41.5514 4.10327 41.6465C4.16635 41.7417 4.25448 41.8176 4.35793 41.8658C4.46139 41.9141 4.57616 41.9328 4.6896 41.92H58.6896C58.803 41.9328 58.9178 41.9141 59.0213 41.8658C59.1247 41.8176 59.2128 41.7417 59.2759 41.6465C59.339 41.5514 59.3746 41.4407 59.3788 41.3266C59.383 41.2125 59.3556 41.0995 59.2996 41L56.6896 34.92C56.5621 34.6558 56.3657 34.4308 56.1211 34.2689C55.8764 34.107 55.5926 34.0141 55.2996 34H8.0496C7.76178 34.0193 7.48423 34.1146 7.2453 34.2762C7.00636 34.4379 6.8146 34.66 6.6896 34.92L4.0796 41Z" | ||
className="base" | ||
/> | ||
</g> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M27.03 14H36.53V15.15H32.53C33.0689 15.6924 33.4194 16.3935 33.53 17.15H36.53V18.29H33.45C33.3096 18.9988 32.9615 19.6497 32.45 20.16C32.1358 20.4941 31.7586 20.7626 31.34 20.95L34.26 25.95H32.92L30.19 21.29H27V20.12H30.05C30.707 20.1181 31.3364 19.8555 31.8 19.39C32.1152 19.0833 32.34 18.6958 32.45 18.27H27.03V17.13H32.53C32.4137 16.5695 32.1094 16.0656 31.6674 15.7018C31.2254 15.3381 30.6724 15.1363 30.1 15.13H27V14.03L27.03 14Z" | ||
className="primary" | ||
/> | ||
</svg> | ||
</SVGPictogramWrapper> | ||
); | ||
} | ||
); | ||
|
||
BoxWithCoin.displayName = "BoxWithCoin"; | ||
|
||
export default BoxWithCoin; |
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
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