diff --git a/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg b/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg
new file mode 100644
index 0000000..c0c4db0
--- /dev/null
+++ b/assets/icons/svgs/svgLineIcons/ArrowInsideBox.svg
@@ -0,0 +1,18 @@
+
diff --git a/assets/icons/svgs/svgPictograms/MobilityCard.svg b/assets/icons/svgs/svgPictograms/MobilityCard.svg
index 41a6060..84605d3 100644
--- a/assets/icons/svgs/svgPictograms/MobilityCard.svg
+++ b/assets/icons/svgs/svgPictograms/MobilityCard.svg
@@ -1,59 +1,79 @@
diff --git a/package.json b/package.json
index 0cea6a4..b26c638 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@setu/crucible-icons",
- "version": "1.0.6",
+ "version": "1.0.7",
"description": "Crucible Icons package",
"license": "MIT",
"main": "./dist/cjs/index.js",
diff --git a/src/icons/reactLineIcons/ArrowInsideBox.tsx b/src/icons/reactLineIcons/ArrowInsideBox.tsx
new file mode 100644
index 0000000..d9dfe0e
--- /dev/null
+++ b/src/icons/reactLineIcons/ArrowInsideBox.tsx
@@ -0,0 +1,50 @@
+// GENERATED BY /script/build.js
+// DO NOT EDIT MANUALLY
+
+import * as React from "react";
+import { LineIconProps } from "../../types";
+import { SVGLineIconWrapper } from "../../styles";
+
+export const ArrowInsideBox = React.forwardRef(
+ ({ width = 24, height = 24, ...props }, forwardedRef) => {
+ return (
+
+
+
+ );
+ }
+);
+
+ArrowInsideBox.displayName = "ArrowInsideBox";
+
+export default ArrowInsideBox;
diff --git a/src/icons/reactLineIcons/index.ts b/src/icons/reactLineIcons/index.ts
index 5d0d4f5..22a06fe 100644
--- a/src/icons/reactLineIcons/index.ts
+++ b/src/icons/reactLineIcons/index.ts
@@ -1,4 +1,5 @@
export { default as Alphabets } from "./Alphabets";
+export { default as ArrowInsideBox } from "./ArrowInsideBox";
export { default as ArrowLeft } from "./ArrowLeft";
export { default as ArrowRight } from "./ArrowRight";
export { default as ArrowsOpposite } from "./ArrowsOpposite";
diff --git a/src/iconsIndex.tsx b/src/iconsIndex.tsx
index b202b8b..8d53c25 100644
--- a/src/iconsIndex.tsx
+++ b/src/iconsIndex.tsx
@@ -196,6 +196,7 @@ export { default as eSign } from "./icons/reactPictograms/eSign";
// ReactLineIcons
export { default as Alphabets } from "./icons/reactLineIcons/Alphabets";
+export { default as ArrowInsideBox } from "./icons/reactLineIcons/ArrowInsideBox";
export { default as ArrowLeft } from "./icons/reactLineIcons/ArrowLeft";
export { default as ArrowRight } from "./icons/reactLineIcons/ArrowRight";
export { default as ArrowsOpposite } from "./icons/reactLineIcons/ArrowsOpposite";