Skip to content

Commit

Permalink
Add icon for COU WL
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya-67 committed Jan 2, 2024
1 parent 497158b commit f8cd152
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 0 deletions.
23 changes: 23 additions & 0 deletions assets/icons/svgs/svgPictograms/BoxWithCoin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/iconSpecificStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ export const iconSpecificStyles: IconStylesTypes = {
secondary : "#42CACD",
},

[PictogramsNames.BoxWithCoin]: {
base : "#D3BFEE",
primary : "#FFFFFF"
},

[PictogramsNames.BoxWithMobile]: {
base : "#b7cde1",
primary : "#42cacd",
Expand Down
51 changes: 51 additions & 0 deletions src/icons/reactPictograms/BoxWithCoin.tsx
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;
1 change: 1 addition & 0 deletions src/icons/reactPictograms/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export { default as Book } from "./Book";
export { default as BookWithKarmaSymbol } from "./BookWithKarmaSymbol";
export { default as BoxWithBraces } from "./BoxWithBraces";
export { default as BoxWithCash } from "./BoxWithCash";
export { default as BoxWithCoin } from "./BoxWithCoin";
export { default as BoxWithMobile } from "./BoxWithMobile";
export { default as BoxWithShapes } from "./BoxWithShapes";
export { default as BoxWithStar } from "./BoxWithStar";
Expand Down
1 change: 1 addition & 0 deletions src/iconsIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export { default as Book } from "./icons/reactPictograms/Book";
export { default as BookWithKarmaSymbol } from "./icons/reactPictograms/BookWithKarmaSymbol";
export { default as BoxWithBraces } from "./icons/reactPictograms/BoxWithBraces";
export { default as BoxWithCash } from "./icons/reactPictograms/BoxWithCash";
export { default as BoxWithCoin } from "./icons/reactPictograms/BoxWithCoin";
export { default as BoxWithMobile } from "./icons/reactPictograms/BoxWithMobile";
export { default as BoxWithShapes } from "./icons/reactPictograms/BoxWithShapes";
export { default as BoxWithStar } from "./icons/reactPictograms/BoxWithStar";
Expand Down
1 change: 1 addition & 0 deletions src/iconsNames.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const PictogramsNames = {
Book : "Book" ,
BoxWithBraces : "BoxWithBraces",
BoxWithCash : "BoxWithCash",
BoxWithCoin : "BoxWithCoin",
BoxWithMobile : "BoxWithMobile" ,
BoxWithShapes : "BoxWithShapes" ,
BoxWithStar : "BoxWithStar" ,
Expand Down

0 comments on commit f8cd152

Please sign in to comment.