diff --git a/src/icons/BuildRounded/BuildRoundedIcon.tsx b/src/icons/BuildRounded/BuildRoundedIcon.tsx
new file mode 100644
index 00000000..11a0c5ae
--- /dev/null
+++ b/src/icons/BuildRounded/BuildRoundedIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const BuildRoundedIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL_NONE,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default BuildRoundedIcon;
\ No newline at end of file
diff --git a/src/icons/BuildRounded/index.ts b/src/icons/BuildRounded/index.ts
new file mode 100644
index 00000000..9cbbe723
--- /dev/null
+++ b/src/icons/BuildRounded/index.ts
@@ -0,0 +1 @@
+export { default as BuildRoundedIcon } from './BuildRoundedIcon';
\ No newline at end of file
diff --git a/src/icons/DirectionsCar/DirectionsCarIcon.tsx b/src/icons/DirectionsCar/DirectionsCarIcon.tsx
new file mode 100644
index 00000000..83776363
--- /dev/null
+++ b/src/icons/DirectionsCar/DirectionsCarIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const DirectionsCarIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL_NONE,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default DirectionsCarIcon;
\ No newline at end of file
diff --git a/src/icons/DirectionsCar/index.ts b/src/icons/DirectionsCar/index.ts
new file mode 100644
index 00000000..bdd7882a
--- /dev/null
+++ b/src/icons/DirectionsCar/index.ts
@@ -0,0 +1 @@
+export { default as DirectionsCarIcon } from './DirectionsCarIcon';
\ No newline at end of file
diff --git a/src/icons/Explore/ExploreIcon.tsx b/src/icons/Explore/ExploreIcon.tsx
new file mode 100644
index 00000000..f1ff66b5
--- /dev/null
+++ b/src/icons/Explore/ExploreIcon.tsx
@@ -0,0 +1,26 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL_NONE } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const ExploreIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL_NONE,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default ExploreIcon;
\ No newline at end of file
diff --git a/src/icons/Explore/index.ts b/src/icons/Explore/index.ts
new file mode 100644
index 00000000..143bf9eb
--- /dev/null
+++ b/src/icons/Explore/index.ts
@@ -0,0 +1 @@
+export {default as ExploreIcon } from './ExploreIcon';
\ No newline at end of file
diff --git a/src/icons/FileCopy/FileCopyIcon.tsx b/src/icons/FileCopy/FileCopyIcon.tsx
new file mode 100644
index 00000000..351326fd
--- /dev/null
+++ b/src/icons/FileCopy/FileCopyIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const FileCopyIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default FileCopyIcon;
\ No newline at end of file
diff --git a/src/icons/FileCopy/index.ts b/src/icons/FileCopy/index.ts
new file mode 100644
index 00000000..aa841980
--- /dev/null
+++ b/src/icons/FileCopy/index.ts
@@ -0,0 +1 @@
+export { default as FileCopyIcon } from './FileCopyIcon';
\ No newline at end of file
diff --git a/src/icons/ListAlt/ListAltIcon.tsx b/src/icons/ListAlt/ListAltIcon.tsx
new file mode 100644
index 00000000..6db21406
--- /dev/null
+++ b/src/icons/ListAlt/ListAltIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const ListAltIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default ListAltIcon;
\ No newline at end of file
diff --git a/src/icons/ListAlt/index.ts b/src/icons/ListAlt/index.ts
new file mode 100644
index 00000000..13f197d4
--- /dev/null
+++ b/src/icons/ListAlt/index.ts
@@ -0,0 +1 @@
+export {default as ListAltIcon} from './ListAltIcon';
\ No newline at end of file
diff --git a/src/icons/SimCard/SimCardIcon.tsx b/src/icons/SimCard/SimCardIcon.tsx
new file mode 100644
index 00000000..7229c95e
--- /dev/null
+++ b/src/icons/SimCard/SimCardIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const SimCardIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default SimCardIcon;
\ No newline at end of file
diff --git a/src/icons/SimCard/index.ts b/src/icons/SimCard/index.ts
new file mode 100644
index 00000000..c05f8b2d
--- /dev/null
+++ b/src/icons/SimCard/index.ts
@@ -0,0 +1 @@
+export {default as SimCardIcon} from './SimCardIcon';
\ No newline at end of file
diff --git a/src/icons/SupervisedUserCircle/SupervisedUserCircleIcon.tsx b/src/icons/SupervisedUserCircle/SupervisedUserCircleIcon.tsx
new file mode 100644
index 00000000..bc87d687
--- /dev/null
+++ b/src/icons/SupervisedUserCircle/SupervisedUserCircleIcon.tsx
@@ -0,0 +1,25 @@
+import { DEFAULT_HEIGHT, DEFAULT_WIDTH, DEFAULT_FILL } from '../../constants/constants';
+import { IconProps } from '../types';
+
+export const SupervisedUserCircleIcon = ({
+ width = DEFAULT_WIDTH,
+ height = DEFAULT_HEIGHT,
+ fill = DEFAULT_FILL,
+ ...props
+}: IconProps): JSX.Element => {
+
+ return (
+
+ );
+};
+
+export default SupervisedUserCircleIcon;
\ No newline at end of file
diff --git a/src/icons/SupervisedUserCircle/index.ts b/src/icons/SupervisedUserCircle/index.ts
new file mode 100644
index 00000000..1f0584bb
--- /dev/null
+++ b/src/icons/SupervisedUserCircle/index.ts
@@ -0,0 +1 @@
+export { default as SupervisedUserCircleIcon } from './SupervisedUserCircleIcon';
\ No newline at end of file
diff --git a/src/icons/index.ts b/src/icons/index.ts
index 5f7acc2a..74ad94a6 100644
--- a/src/icons/index.ts
+++ b/src/icons/index.ts
@@ -154,4 +154,11 @@ export * from './View';
export * from './Visibility';
export * from './Visualizer';
export * from './Warning';
-export * from './Workspace';
\ No newline at end of file
+export * from './Workspace';
+export * from './BuildRounded';
+export * from './DirectionsCar';
+export * from './Explore';
+export * from './FileCopy';
+export * from './ListAlt';
+export * from './SimCard';
+export * from './SupervisedUserCircle';
\ No newline at end of file