From 4eaf2f5ce9e385e7f19dfed0b6e7e14180dd6959 Mon Sep 17 00:00:00 2001 From: pankajdwivedi Date: Mon, 7 Oct 2024 16:40:05 +0530 Subject: [PATCH 1/2] Add HomeWithDoor, PassbookWithBalance --- .../icons/svgs/svgPictograms/HomeWithDoor.svg | 18 ++++ .../svgPictograms/PassbookWithBalance.svg | 61 +++++++++++++ package.json | 2 +- src/iconSpecificStyles.tsx | 9 ++ src/icons/reactLineIcons/WarningSign.tsx | 3 - src/icons/reactPictograms/HomeWithDoor.tsx | 41 +++++++++ .../reactPictograms/PassbookWithBalance.tsx | 86 +++++++++++++++++++ src/icons/reactPictograms/index.ts | 2 + src/iconsIndex.tsx | 2 + src/iconsNames.tsx | 8 +- 10 files changed, 226 insertions(+), 6 deletions(-) create mode 100644 assets/icons/svgs/svgPictograms/HomeWithDoor.svg create mode 100644 assets/icons/svgs/svgPictograms/PassbookWithBalance.svg create mode 100644 src/icons/reactPictograms/HomeWithDoor.tsx create mode 100644 src/icons/reactPictograms/PassbookWithBalance.tsx diff --git a/assets/icons/svgs/svgPictograms/HomeWithDoor.svg b/assets/icons/svgs/svgPictograms/HomeWithDoor.svg new file mode 100644 index 0000000..de157a7 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/HomeWithDoor.svg @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg b/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg new file mode 100644 index 0000000..9bf29e1 --- /dev/null +++ b/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/package.json b/package.json index 63d2553..b63151f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@setu/crucible-icons", - "version": "1.0.12", + "version": "1.0.13", "description": "Crucible Icons package", "license": "MIT", "main": "./dist/cjs/index.js", diff --git a/src/iconSpecificStyles.tsx b/src/iconSpecificStyles.tsx index cdf4f46..9ae3b34 100644 --- a/src/iconSpecificStyles.tsx +++ b/src/iconSpecificStyles.tsx @@ -532,6 +532,10 @@ export const iconSpecificStyles: IconStylesTypes = { primary : "#FEB452", }, + [PictogramsNames.HomeWithDoor]: { + base : "#b7cde1", + }, + [PictogramsNames.Hourglass]: { base : "#b7cde1", primary : "#00cfcf", @@ -759,6 +763,11 @@ export const iconSpecificStyles: IconStylesTypes = { tertiary : "#f2ad3d", }, + [PictogramsNames.PassbookWithBalance]: { + base : "#b7cde1", + primary : "#B3EAEB" + }, + [PictogramsNames.Payments]: { base : "#36a168", primary : "#1275e5", diff --git a/src/icons/reactLineIcons/WarningSign.tsx b/src/icons/reactLineIcons/WarningSign.tsx index 0986e8c..c9f2352 100644 --- a/src/icons/reactLineIcons/WarningSign.tsx +++ b/src/icons/reactLineIcons/WarningSign.tsx @@ -10,9 +10,6 @@ export const WarningSign = React.forwardRef( return ( ( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + ); + } +); + +HomeWithDoor.displayName = "HomeWithDoor"; + +export default HomeWithDoor; diff --git a/src/icons/reactPictograms/PassbookWithBalance.tsx b/src/icons/reactPictograms/PassbookWithBalance.tsx new file mode 100644 index 0000000..12e462e --- /dev/null +++ b/src/icons/reactPictograms/PassbookWithBalance.tsx @@ -0,0 +1,86 @@ +// 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 PassbookWithBalance = React.forwardRef( + ({ width = 64, height = 64, ...props }, forwardedRef) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); + } +); + +PassbookWithBalance.displayName = "PassbookWithBalance"; + +export default PassbookWithBalance; diff --git a/src/icons/reactPictograms/index.ts b/src/icons/reactPictograms/index.ts index a4f0c5b..f360fb3 100644 --- a/src/icons/reactPictograms/index.ts +++ b/src/icons/reactPictograms/index.ts @@ -89,6 +89,7 @@ export { default as Hat } from "./Hat"; export { default as Headphones } from "./Headphones"; export { default as HeartWithCross } from "./HeartWithCross"; export { default as HomeWithBraces } from "./HomeWithBraces"; +export { default as HomeWithDoor } from "./HomeWithDoor"; export { default as Hourglass } from "./Hourglass"; export { default as IdCard } from "./IdCard"; export { default as Integrity } from "./Integrity"; @@ -129,6 +130,7 @@ export { default as PaintRoller } from "./PaintRoller"; export { default as PanWithExclamation } from "./PanWithExclamation"; export { default as PaperWithCoin } from "./PaperWithCoin"; export { default as Parchment } from "./Parchment"; +export { default as PassbookWithBalance } from "./PassbookWithBalance"; export { default as Payments } from "./Payments"; export { default as People } from "./People"; export { default as PeopleWithCoin } from "./PeopleWithCoin"; diff --git a/src/iconsIndex.tsx b/src/iconsIndex.tsx index fb5a908..d94fb36 100644 --- a/src/iconsIndex.tsx +++ b/src/iconsIndex.tsx @@ -92,6 +92,7 @@ export { default as Hat } from "./icons/reactPictograms/Hat"; export { default as Headphones } from "./icons/reactPictograms/Headphones"; export { default as HeartWithCross } from "./icons/reactPictograms/HeartWithCross"; export { default as HomeWithBraces } from "./icons/reactPictograms/HomeWithBraces"; +export { default as HomeWithDoor } from "./icons/reactPictograms/HomeWithDoor"; export { default as Hourglass } from "./icons/reactPictograms/Hourglass"; export { default as IdCard } from "./icons/reactPictograms/IdCard"; export { default as Integrity } from "./icons/reactPictograms/Integrity"; @@ -132,6 +133,7 @@ export { default as PaintRoller } from "./icons/reactPictograms/PaintRoller"; export { default as PanWithExclamation } from "./icons/reactPictograms/PanWithExclamation"; export { default as PaperWithCoin } from "./icons/reactPictograms/PaperWithCoin"; export { default as Parchment } from "./icons/reactPictograms/Parchment"; +export { default as PassbookWithBalance } from "./icons/reactPictograms/PassbookWithBalance"; export { default as Payments } from "./icons/reactPictograms/Payments"; export { default as People } from "./icons/reactPictograms/People"; export { default as PeopleWithCoin } from "./icons/reactPictograms/PeopleWithCoin"; diff --git a/src/iconsNames.tsx b/src/iconsNames.tsx index e2ae1b7..68b6b8b 100644 --- a/src/iconsNames.tsx +++ b/src/iconsNames.tsx @@ -1,3 +1,5 @@ +import { HomeWithDoor, PassbookWithBalance } from "iconsIndex"; + // prettier-ignore export const PictogramsNames = { AA : "AA" , @@ -92,6 +94,7 @@ export const PictogramsNames = { Headphones : "Headphones" , HeartWithCross : "HeartWithCross", HomeWithBraces : "HomeWithBraces", + HomeWithDoor : "HomeWithDoor", Hourglass : "Hourglass" , IdCard : "IdCard" , KYC : "KYC" , @@ -120,7 +123,7 @@ export const PictogramsNames = { MobileWithRupee : "MobileWithRupee", MobileWithTag : "MobileWithTag" , MobileWithUpi : "MobileWithUpi" , - MobilityCard : "MobilityCard", + MobilityCard : "MobilityCard", ModemPictogram : "ModemPictogram", Newspaper : "Newspaper" , Note : "Note" , @@ -129,9 +132,10 @@ export const PictogramsNames = { ONDC : "ONDC" , OpenBoxWithBraces : "OpenBoxWithBraces", PaintRoller : "PaintRoller" , - PanWithExclamation : "PanWithExclamation", + PanWithExclamation : "PanWithExclamation", PaperWithCoin : "PaperWithCoin", Parchment : "Parchment" , + PassbookWithBalance : "PassbookWithBalance", Payments : "Payments" , People : "People", PeopleWithCoin : "PeopleWithCoin" , From 8ed531fc6ce654fb4cdae824d4a9295d12c73aae Mon Sep 17 00:00:00 2001 From: pankajdwivedi Date: Mon, 7 Oct 2024 16:40:38 +0530 Subject: [PATCH 2/2] Add assets --- .../icons/svgs/svgPictograms/HomeWithDoor.svg | 12 +++-- .../svgPictograms/PassbookWithBalance.svg | 48 ++++++++++++------- 2 files changed, 39 insertions(+), 21 deletions(-) diff --git a/assets/icons/svgs/svgPictograms/HomeWithDoor.svg b/assets/icons/svgs/svgPictograms/HomeWithDoor.svg index de157a7..f7b70f9 100644 --- a/assets/icons/svgs/svgPictograms/HomeWithDoor.svg +++ b/assets/icons/svgs/svgPictograms/HomeWithDoor.svg @@ -10,9 +10,15 @@ } - - + + - + diff --git a/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg b/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg index 9bf29e1..e5de227 100644 --- a/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg +++ b/assets/icons/svgs/svgPictograms/PassbookWithBalance.svg @@ -1,12 +1,12 @@ - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - +