diff --git a/assets/icons/experimental/bot.svg b/assets/icons/experimental/bot.svg
new file mode 100644
index 00000000..9ee8a29a
--- /dev/null
+++ b/assets/icons/experimental/bot.svg
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/src/icons/experimental/BotIcon.tsx b/src/icons/experimental/BotIcon.tsx
new file mode 100644
index 00000000..cb6a9b85
--- /dev/null
+++ b/src/icons/experimental/BotIcon.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 BotIcon: 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 BotIcon;
diff --git a/src/icons/experimental/index.ts b/src/icons/experimental/index.ts
index 82d33d11..7a7d65d5 100644
--- a/src/icons/experimental/index.ts
+++ b/src/icons/experimental/index.ts
@@ -6,3 +6,4 @@ export { default as LocationIcon } from './LocationIcon';
export { default as SpinnerIcon } from './SpinnerIcon';
export { default as PhoneCarOutlineIcon } from './PhoneCarOutlineIcon';
export { default as SearchIcon } from './SearchIcon';
+export { default as BotIcon } from './BotIcon';