diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a56c7f200..f8ade8ecf4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Add `Reaction` variables to Teams dark and HOC themes @mnajdova ([#1152](https://github.com/stardust-ui/react/pull/1152))
- Move `Grid`'s and `Image`'s styles and variables from Teams to base theme @mnajdova ([#1182](https://github.com/stardust-ui/react/pull/1182))
- Export `play` and `pause` icons in Teams theme @layershifter ([#1189](https://github.com/stardust-ui/react/pull/1189))
+- Export `eye` and `eye-slash` icons in Teams theme @alinais ([#1194](https://github.com/stardust-ui/react/pull/1194))
### Fixes
- Fix the reset of the `highlightedIndex` when search query changes @silviuavram ([#1168](https://github.com/stardust-ui/react/pull/1168))
diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx
index e9113c62c8..8fa94bff10 100644
--- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx
+++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye-slash.tsx
@@ -8,4 +8,5 @@ export default {
),
styles: {},
+ exportedAs: 'eye-slash',
} as TeamsProcessedSvgIconSpec
diff --git a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx
index aeac8adc06..288c8f95d7 100644
--- a/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx
+++ b/packages/react/src/themes/teams/components/Icon/svg/ProcessedIcons/icons-eye.tsx
@@ -8,4 +8,5 @@ export default {
),
styles: {},
+ exportedAs: 'eye',
} as TeamsProcessedSvgIconSpec
diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/eye.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/eye.tsx
new file mode 100644
index 0000000000..aeac8adc06
--- /dev/null
+++ b/packages/react/src/themes/teams/components/Icon/svg/icons/eye.tsx
@@ -0,0 +1,11 @@
+import * as React from 'react'
+import { TeamsProcessedSvgIconSpec } from '../types'
+
+export default {
+ icon: ({ classes }) => (
+
+ ),
+ styles: {},
+} as TeamsProcessedSvgIconSpec
diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/eyeSlash.tsx b/packages/react/src/themes/teams/components/Icon/svg/icons/eyeSlash.tsx
new file mode 100644
index 0000000000..e9113c62c8
--- /dev/null
+++ b/packages/react/src/themes/teams/components/Icon/svg/icons/eyeSlash.tsx
@@ -0,0 +1,11 @@
+import * as React from 'react'
+import { TeamsProcessedSvgIconSpec } from '../types'
+
+export default {
+ icon: ({ classes }) => (
+
+ ),
+ styles: {},
+} as TeamsProcessedSvgIconSpec
diff --git a/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts b/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts
index ea52c1143f..c0d26c5709 100644
--- a/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts
+++ b/packages/react/src/themes/teams/components/Icon/svg/icons/index.ts
@@ -44,6 +44,8 @@ import email from './email'
import emoji from './emoji'
import error from './error'
import exclamationCircle from './exclamationCircle'
+import eye from './eye'
+import eyeSlash from './eyeSlash'
import filesExcel from './filesExcel'
import filesExcelBrand from './filesExcelBrand'
import filesOneNote from './filesOneNote'
@@ -151,6 +153,8 @@ export default {
emoji,
error,
'exclamation-circle': exclamationCircle,
+ eye,
+ 'eye-slash': eyeSlash,
format,
'font-color': fontColor,
'font-size': fontSize,