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/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",
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
,
,