diff --git a/assets/icons/experimental/wifi-off.svg b/assets/icons/experimental/wifi-off.svg
new file mode 100644
index 00000000..052a06d4
--- /dev/null
+++ b/assets/icons/experimental/wifi-off.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/icons/experimental/wifi-on.svg b/assets/icons/experimental/wifi-on.svg
new file mode 100644
index 00000000..6a92232c
--- /dev/null
+++ b/assets/icons/experimental/wifi-on.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/src/icons/experimental/WifiOffIcon.tsx b/src/icons/experimental/WifiOffIcon.tsx
new file mode 100644
index 00000000..bed608b4
--- /dev/null
+++ b/src/icons/experimental/WifiOffIcon.tsx
@@ -0,0 +1,30 @@
+// DO NOT EDIT. This file was generated by running `npm run generate`.;
+import * as React from 'react';
+import { get } from '../../utils/themeGet';
+import { IconProps } from '../IconProps';
+type Props = IconProps;
+const WifiOffIcon: React.FC = ({ size = 'medium', color = 'inherit', ...rest }) => {
+ const props = {
+ ...rest,
+ color
+ };
+ const sizePx = Number.isFinite(size as number)
+ ? size
+ : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
+ return (
+
+ );
+};
+export default WifiOffIcon;
diff --git a/src/icons/experimental/WifiOnIcon.tsx b/src/icons/experimental/WifiOnIcon.tsx
new file mode 100644
index 00000000..c4623f2d
--- /dev/null
+++ b/src/icons/experimental/WifiOnIcon.tsx
@@ -0,0 +1,30 @@
+// DO NOT EDIT. This file was generated by running `npm run generate`.;
+import * as React from 'react';
+import { get } from '../../utils/themeGet';
+import { IconProps } from '../IconProps';
+type Props = IconProps;
+const WifiOnIcon: React.FC = ({ size = 'medium', color = 'inherit', ...rest }) => {
+ const props = {
+ ...rest,
+ color
+ };
+ const sizePx = Number.isFinite(size as number)
+ ? size
+ : get(`iconSizes.${size}`)(props) || get('iconSizes.medium')(props);
+ return (
+
+ );
+};
+export default WifiOnIcon;
diff --git a/src/icons/experimental/index.ts b/src/icons/experimental/index.ts
index 9d6de12c..379e8687 100644
--- a/src/icons/experimental/index.ts
+++ b/src/icons/experimental/index.ts
@@ -21,3 +21,5 @@ export { default as CalendarAddIcon } from './CalendarAddIcon';
export { default as ShieldAccountIcon } from './ShieldAccountIcon';
export { default as QuestionMarkCircleIcon } from './QuestionMarkCircleIcon';
export { default as AssignDriverIcon } from './AssignDriverIcon';
+export { default as WifiOnIcon } from './WifiOnIcon';
+export { default as WifiOffIcon } from './WifiOffIcon';