From 4426e3860541ebf52ea54bedd504d4c28ea5c098 Mon Sep 17 00:00:00 2001 From: lionel-sim Date: Thu, 5 Jun 2025 13:54:50 +0800 Subject: [PATCH 1/2] [BOOKINGSG-7495][LS] Add id-card and id-card-fill icons --- assets/id-card-fill.svg | 3 +++ assets/id-card.svg | 3 +++ src/id-card-fill.tsx | 18 ++++++++++++++++++ src/id-card.tsx | 18 ++++++++++++++++++ src/index.ts | 2 ++ stories/icon/data.tsx | 5 +++++ 6 files changed, 49 insertions(+) create mode 100644 assets/id-card-fill.svg create mode 100644 assets/id-card.svg create mode 100644 src/id-card-fill.tsx create mode 100644 src/id-card.tsx diff --git a/assets/id-card-fill.svg b/assets/id-card-fill.svg new file mode 100644 index 0000000..0044fa4 --- /dev/null +++ b/assets/id-card-fill.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/id-card.svg b/assets/id-card.svg new file mode 100644 index 0000000..00ccae4 --- /dev/null +++ b/assets/id-card.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/id-card-fill.tsx b/src/id-card-fill.tsx new file mode 100644 index 0000000..521ba5d --- /dev/null +++ b/src/id-card-fill.tsx @@ -0,0 +1,18 @@ +import * as React from "react"; +import { SVGProps } from "react"; +export const IdCardFillIcon = (props: SVGProps) => ( + + + +); +IdCardFillIcon.displayName = "IdCardFillIcon"; diff --git a/src/id-card.tsx b/src/id-card.tsx new file mode 100644 index 0000000..f0c2e34 --- /dev/null +++ b/src/id-card.tsx @@ -0,0 +1,18 @@ +import * as React from "react"; +import { SVGProps } from "react"; +export const IdCardIcon = (props: SVGProps) => ( + + + +); +IdCardIcon.displayName = "IdCardIcon"; diff --git a/src/index.ts b/src/index.ts index 8da9a39..920ddcc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -116,6 +116,8 @@ export * from "./house-fill"; export * from "./house"; export * from "./i-circle-fill"; export * from "./i-circle"; +export * from "./id-card-fill"; +export * from "./id-card"; export * from "./inbox-fill"; export * from "./inbox"; export * from "./language"; diff --git a/stories/icon/data.tsx b/stories/icon/data.tsx index 3b8181c..be45438 100644 --- a/stories/icon/data.tsx +++ b/stories/icon/data.tsx @@ -114,6 +114,8 @@ import { HouseIcon, ICircleFillIcon, ICircleIcon, + IdCardFillIcon, + IdCardIcon, InboxFillIcon, InboxIcon, LanguageIcon, @@ -370,6 +372,9 @@ export const ICONS: JSX.Element[] = [ // I-Circle , , + // Id Card + , + , // Inbox , , From 930fbc61f88d9c1cc1a15753ab37e91c99c8d5f5 Mon Sep 17 00:00:00 2001 From: Quek Ruo Ling Date: Thu, 5 Jun 2025 16:52:51 +0800 Subject: [PATCH 2/2] [MISC][RL] v1.12.0 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1b2c059..c946108 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@lifesg/react-icons", - "version": "1.11.0", + "version": "1.12.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@lifesg/react-icons", - "version": "1.11.0", + "version": "1.12.0", "license": "ISC", "devDependencies": { "@babel/core": "^7.17.8", diff --git a/package.json b/package.json index 41087d5..e9ee562 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lifesg/react-icons", - "version": "1.11.0", + "version": "1.12.0", "description": "An icon component library for LifeSG and BookingSG web apps", "main": "dist/cjs/index.js", "module": "dist/index.js",