From c340767cc757387dbffb65c6022fdb8e65a62038 Mon Sep 17 00:00:00 2001 From: pankajdwivedi Date: Mon, 29 Apr 2024 21:39:37 +0530 Subject: [PATCH 1/3] Add 4 pfm icons --- assets/icons/svgs/svgPictograms/Groceries.svg | 44 +++++++ .../icons/svgs/svgPictograms/ShoppingBags.svg | 56 +++++++++ .../svgs/svgPictograms/SunsetWithCoin.svg | 34 ++++++ .../svgPictograms/UmbrellaWithCoinAndCash.svg | 52 ++++++++ src/iconSpecificStyles.tsx | 27 +++++ src/icons/reactPictograms/Groceries.tsx | 59 +++++++++ src/icons/reactPictograms/ShoppingBags.tsx | 113 ++++++++++++++++++ src/icons/reactPictograms/SunsetWithCoin.tsx | 68 +++++++++++ .../UmbrellaWithCoinAndCash.tsx | 90 ++++++++++++++ src/icons/reactPictograms/index.ts | 4 + src/iconsIndex.tsx | 4 + src/iconsNames.tsx | 4 + 12 files changed, 555 insertions(+) create mode 100644 assets/icons/svgs/svgPictograms/Groceries.svg create mode 100644 assets/icons/svgs/svgPictograms/ShoppingBags.svg create mode 100644 assets/icons/svgs/svgPictograms/SunsetWithCoin.svg create mode 100644 assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg create mode 100644 src/icons/reactPictograms/Groceries.tsx create mode 100644 src/icons/reactPictograms/ShoppingBags.tsx create mode 100644 src/icons/reactPictograms/SunsetWithCoin.tsx create mode 100644 src/icons/reactPictograms/UmbrellaWithCoinAndCash.tsx diff --git a/assets/icons/svgs/svgPictograms/Groceries.svg b/assets/icons/svgs/svgPictograms/Groceries.svg new file mode 100644 index 0000000..0a98b08 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/Groceries.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/ShoppingBags.svg b/assets/icons/svgs/svgPictograms/ShoppingBags.svg new file mode 100644 index 0000000..d64a0a7 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/ShoppingBags.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg b/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg new file mode 100644 index 0000000..c431569 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg b/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg new file mode 100644 index 0000000..0910c95 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/iconSpecificStyles.tsx b/src/iconSpecificStyles.tsx index b96ffbc..cdf4f46 100644 --- a/src/iconSpecificStyles.tsx +++ b/src/iconSpecificStyles.tsx @@ -494,6 +494,13 @@ export const iconSpecificStyles: IconStylesTypes = { primary : "#00cfcf", }, + [PictogramsNames.Groceries]: { + base : "#b7cde1", + primary : "#42cacd", + secondary : "#1482ff", + tertiary : "#f7993b" + }, + [PictogramsNames.GrowthMindset]: { base : "#ffab00", primary : "#00ccce", @@ -923,6 +930,12 @@ export const iconSpecificStyles: IconStylesTypes = { secondary : "#ffffff", }, + [PictogramsNames.ShoppingBags]: { + base : "#b7cde1", + primary : "#42cacd", + secondary : "#feb452", + }, + [PictogramsNames.Signpost]: { base : "#b7cde1", primary : "#42cacd", @@ -947,6 +960,12 @@ export const iconSpecificStyles: IconStylesTypes = { secondary : "#feb452", }, + [PictogramsNames.SunsetWithCoin]: { + base : "#feb452", + primary : "#b7cde1", + secondary : "#ffffff", + }, + [PictogramsNames.TabletWithPen]: { base : "#b7cde1", primary : "#1482ff", @@ -991,6 +1010,14 @@ export const iconSpecificStyles: IconStylesTypes = { primary : "#42cacd", }, + [PictogramsNames.UmbrellaWithCoinAndCash]: { + base : "#b7cde1", + primary : "#36a168", + secondary : "#FEB452", + tertiary : "#ffffff", + + }, + [PictogramsNames.UPI]: { base : "#C3E3D2", primary : "#1482FF", diff --git a/src/icons/reactPictograms/Groceries.tsx b/src/icons/reactPictograms/Groceries.tsx new file mode 100644 index 0000000..ad396fb --- /dev/null +++ b/src/icons/reactPictograms/Groceries.tsx @@ -0,0 +1,59 @@ +// 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 Groceries = React.forwardRef( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + ); + } +); + +Groceries.displayName = "Groceries"; + +export default Groceries; diff --git a/src/icons/reactPictograms/ShoppingBags.tsx b/src/icons/reactPictograms/ShoppingBags.tsx new file mode 100644 index 0000000..b616066 --- /dev/null +++ b/src/icons/reactPictograms/ShoppingBags.tsx @@ -0,0 +1,113 @@ +// 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 ShoppingBags = React.forwardRef( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); + } +); + +ShoppingBags.displayName = "ShoppingBags"; + +export default ShoppingBags; diff --git a/src/icons/reactPictograms/SunsetWithCoin.tsx b/src/icons/reactPictograms/SunsetWithCoin.tsx new file mode 100644 index 0000000..be11149 --- /dev/null +++ b/src/icons/reactPictograms/SunsetWithCoin.tsx @@ -0,0 +1,68 @@ +// 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 SunsetWithCoin = React.forwardRef( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + + + + + + + ); + } +); + +SunsetWithCoin.displayName = "SunsetWithCoin"; + +export default SunsetWithCoin; diff --git a/src/icons/reactPictograms/UmbrellaWithCoinAndCash.tsx b/src/icons/reactPictograms/UmbrellaWithCoinAndCash.tsx new file mode 100644 index 0000000..9258038 --- /dev/null +++ b/src/icons/reactPictograms/UmbrellaWithCoinAndCash.tsx @@ -0,0 +1,90 @@ +// 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 UmbrellaWithCoinAndCash = React.forwardRef( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); + } +); + +UmbrellaWithCoinAndCash.displayName = "UmbrellaWithCoinAndCash"; + +export default UmbrellaWithCoinAndCash; diff --git a/src/icons/reactPictograms/index.ts b/src/icons/reactPictograms/index.ts index 0536d59..a4f0c5b 100644 --- a/src/icons/reactPictograms/index.ts +++ b/src/icons/reactPictograms/index.ts @@ -82,6 +82,7 @@ export { default as FolderWithShield } from "./FolderWithShield"; export { default as FunnelWithPlusSymbol } from "./FunnelWithPlusSymbol"; export { default as GasPipe } from "./GasPipe"; export { default as GraphBar } from "./GraphBar"; +export { default as Groceries } from "./Groceries"; export { default as GrowthMindset } from "./GrowthMindset"; export { default as GuyFawkesMask } from "./GuyFawkesMask"; export { default as Hat } from "./Hat"; @@ -159,9 +160,11 @@ export { default as ScreenWithPlayButton } from "./ScreenWithPlayButton"; export { default as Servers } from "./Servers"; export { default as Shield } from "./Shield"; export { default as ShieldWithTickPictogram } from "./ShieldWithTickPictogram"; +export { default as ShoppingBags } from "./ShoppingBags"; export { default as Signpost } from "./Signpost"; export { default as StampWithTick } from "./StampWithTick"; export { default as Stopwatch } from "./Stopwatch"; +export { default as SunsetWithCoin } from "./SunsetWithCoin"; export { default as TV } from "./TV"; export { default as TabletWithPen } from "./TabletWithPen"; export { default as Team } from "./Team"; @@ -171,6 +174,7 @@ export { default as Ticket } from "./Ticket"; export { default as Tools } from "./Tools"; export { default as Transactions } from "./Transactions"; export { default as UPI } from "./UPI"; +export { default as UmbrellaWithCoinAndCash } from "./UmbrellaWithCoinAndCash"; export { default as Wave } from "./Wave"; export { default as WebSettings } from "./WebSettings"; export { default as Window } from "./Window"; diff --git a/src/iconsIndex.tsx b/src/iconsIndex.tsx index aa8c547..1d9dfff 100644 --- a/src/iconsIndex.tsx +++ b/src/iconsIndex.tsx @@ -85,6 +85,7 @@ export { default as FolderWithShield } from "./icons/reactPictograms/FolderWithS export { default as FunnelWithPlusSymbol } from "./icons/reactPictograms/FunnelWithPlusSymbol"; export { default as GasPipe } from "./icons/reactPictograms/GasPipe"; export { default as GraphBar } from "./icons/reactPictograms/GraphBar"; +export { default as Groceries } from "./icons/reactPictograms/Groceries"; export { default as GrowthMindset } from "./icons/reactPictograms/GrowthMindset"; export { default as GuyFawkesMask } from "./icons/reactPictograms/GuyFawkesMask"; export { default as Hat } from "./icons/reactPictograms/Hat"; @@ -162,9 +163,11 @@ export { default as ScreenWithPlayButton } from "./icons/reactPictograms/ScreenW export { default as Servers } from "./icons/reactPictograms/Servers"; export { default as Shield } from "./icons/reactPictograms/Shield"; export { default as ShieldWithTickPictogram } from "./icons/reactPictograms/ShieldWithTickPictogram"; +export { default as ShoppingBags } from "./icons/reactPictograms/ShoppingBags"; export { default as Signpost } from "./icons/reactPictograms/Signpost"; export { default as StampWithTick } from "./icons/reactPictograms/StampWithTick"; export { default as Stopwatch } from "./icons/reactPictograms/Stopwatch"; +export { default as SunsetWithCoin } from "./icons/reactPictograms/SunsetWithCoin"; export { default as TV } from "./icons/reactPictograms/TV"; export { default as TabletWithPen } from "./icons/reactPictograms/TabletWithPen"; export { default as Team } from "./icons/reactPictograms/Team"; @@ -174,6 +177,7 @@ export { default as Ticket } from "./icons/reactPictograms/Ticket"; export { default as Tools } from "./icons/reactPictograms/Tools"; export { default as Transactions } from "./icons/reactPictograms/Transactions"; export { default as UPI } from "./icons/reactPictograms/UPI"; +export { default as UmbrellaWithCoinAndCash } from "./icons/reactPictograms/UmbrellaWithCoinAndCash"; export { default as Wave } from "./icons/reactPictograms/Wave"; export { default as WebSettings } from "./icons/reactPictograms/WebSettings"; export { default as Window } from "./icons/reactPictograms/Window"; diff --git a/src/iconsNames.tsx b/src/iconsNames.tsx index dee5e6e..e2ae1b7 100644 --- a/src/iconsNames.tsx +++ b/src/iconsNames.tsx @@ -85,6 +85,7 @@ export const PictogramsNames = { FunnelWithPlusSymbol : "FunnelWithPlusSymbol" , GasPipe : "GasPipe", GraphBar : "GraphBar" , + Groceries : "Groceries", GrowthMindset : "GrowthMindset" , GuyFawkesMask : "GuyFawkesMask" , Hat : "Hat", @@ -161,10 +162,12 @@ export const PictogramsNames = { Servers : "Servers" , ShieldWithTickPictogram : "ShieldWithTickPictogram", Shield : "Shield" , + ShoppingBags : "ShoppingBags", Signpost : "Signpost" , SIM : "SIM", StampWithTick : "StampWithTick" , Stopwatch : "Stopwatch" , + SunsetWithCoin : "SunsetWithCoin", TabletWithPen : "TabletWithPen" , Team : "Team" , Tenacity : "Tenacity" , @@ -173,6 +176,7 @@ export const PictogramsNames = { Tools : "Tools" , Transactions : "Transactions" , TV : "TV", + UmbrellaWithCoinAndCash : "UmbrellaWithCoinAndCash", UPI : "UPI" , Wave : "Wave" , WebSettings : "WebSettings" , From 43ce0378e2a1273ad6ce8931fe57bc1bda38bd95 Mon Sep 17 00:00:00 2001 From: pankajdwivedi Date: Mon, 29 Apr 2024 21:40:42 +0530 Subject: [PATCH 2/3] Add assets 4 pfm icons --- assets/icons/svgs/svgPictograms/Groceries.svg | 88 +++++++----- .../icons/svgs/svgPictograms/ShoppingBags.svg | 136 +++++++++++------- .../svgs/svgPictograms/SunsetWithCoin.svg | 83 +++++++---- .../svgPictograms/UmbrellaWithCoinAndCash.svg | 125 ++++++++++------ 4 files changed, 268 insertions(+), 164 deletions(-) diff --git a/assets/icons/svgs/svgPictograms/Groceries.svg b/assets/icons/svgs/svgPictograms/Groceries.svg index 0a98b08..818ca44 100644 --- a/assets/icons/svgs/svgPictograms/Groceries.svg +++ b/assets/icons/svgs/svgPictograms/Groceries.svg @@ -1,44 +1,54 @@ - - - + + + + + + + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/ShoppingBags.svg b/assets/icons/svgs/svgPictograms/ShoppingBags.svg index d64a0a7..d9c809e 100644 --- a/assets/icons/svgs/svgPictograms/ShoppingBags.svg +++ b/assets/icons/svgs/svgPictograms/ShoppingBags.svg @@ -1,56 +1,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg b/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg index c431569..981ec33 100644 --- a/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg +++ b/assets/icons/svgs/svgPictograms/SunsetWithCoin.svg @@ -1,34 +1,59 @@ - - + + + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg b/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg index 0910c95..6fd4221 100644 --- a/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg +++ b/assets/icons/svgs/svgPictograms/UmbrellaWithCoinAndCash.svg @@ -1,52 +1,85 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + From 85db4fadb02902aefdb05dbe58ddecdb58b69587 Mon Sep 17 00:00:00 2001 From: pankajdwivedi Date: Mon, 29 Apr 2024 21:50:41 +0530 Subject: [PATCH 3/3] Change version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c6ec192..b3b859d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@setu/crucible-icons", - "version": "1.0.9", + "version": "1.0.10", "description": "Crucible Icons package", "license": "MIT", "main": "./dist/cjs/index.js",