diff --git a/src/icons/Office.tsx b/src/icons/Office.tsx
new file mode 100644
index 000000000..9a77c203e
--- /dev/null
+++ b/src/icons/Office.tsx
@@ -0,0 +1,12 @@
+import { createElement } from 'react';
+import SvgIcon from '@mui/material/SvgIcon';
+const Office = (props: any) =>
+ createElement(
+ SvgIcon,
+ props,
+
+ );
+export default Office;
diff --git a/src/icons/index.ts b/src/icons/index.ts
index c951528a6..34a9990d5 100644
--- a/src/icons/index.ts
+++ b/src/icons/index.ts
@@ -135,4 +135,4 @@ export { default as Sharing } from './Sharing';
export { default as DoubleArrow } from './DoubleArrow';
export { default as HandGrab } from './HandGrab';
export { default as PhoneNumberQuestion } from './PhoneNumberQuestion';
-
+export { default as Office } from './Office';
diff --git a/stories/DataDisplay/Icons.stories.tsx b/stories/DataDisplay/Icons.stories.tsx
index d4de50c5a..abdaca05a 100644
--- a/stories/DataDisplay/Icons.stories.tsx
+++ b/stories/DataDisplay/Icons.stories.tsx
@@ -197,6 +197,7 @@ const iconsList = [
{ name: 'DoubleArrow', component: i.DoubleArrow },
{ name: 'HandGrab', component: i.HandGrab },
{ name: 'PhoneNumberQuestion', component: i.PhoneNumberQuestion },
+ { name: 'Office', component: i.Office },
];
const Template: StoryFn = (args) => {