diff --git a/CHANGELOG.md b/CHANGELOG.md
index 29983b1462..07ef1f0fa1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,11 +21,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Prevent blind props forwarding if `Input`'s wrapper is defined as React element @kuzhelov ([#453](https://github.com/stardust-ui/react/pull/453))
- Fix invalid whatInput import @miroslavstastny ([#541](https://github.com/stardust-ui/react/pull/541))
- Fix invalid typings and propTypes for the content prop @mnajdova ([#528](https://github.com/stardust-ui/react/pull/528))
+- Fix Teams SVG icons @kuzhelov ([#544](https://github.com/stardust-ui/react/pull/544))
### Features
- Add all default size Teams icons processed & ready to be consumed by Stardust as needed @codepretty ([#478](https://github.com/stardust-ui/react/pull/478))
- Add `Tree` Component @priyankar205 ([#479]
(https://github.com/stardust-ui/react/pull/479))
+- Add several Teams SVG icons @kuzhelov ([#544](https://github.com/stardust-ui/react/pull/544))
## [v0.13.0](https://github.com/stardust-ui/react/tree/v0.13.0) (2018-11-27)
diff --git a/src/themes/teams/components/Icon/font/index.ts b/src/themes/teams/components/Icon/font/index.ts
index 6d7da3f101..c938192460 100644
--- a/src/themes/teams/components/Icon/font/index.ts
+++ b/src/themes/teams/components/Icon/font/index.ts
@@ -1,11 +1,3 @@
import { FontIconSpec } from '../../../../types'
-const fontAwesome = (iconCode: string): FontIconSpec => ({
- fontFamily: 'Icons',
- content: `'\\${iconCode}'`,
-})
-
-export default {
- 'call-home': fontAwesome('f015'),
- 'take-rest': fontAwesome('f0f4'),
-} as { [key: string]: FontIconSpec }
+export default {} as { [key: string]: FontIconSpec }
diff --git a/src/themes/teams/components/Icon/svg/icons/addParticipant.tsx b/src/themes/teams/components/Icon/svg/icons/addParticipant.tsx
new file mode 100644
index 0000000000..72125e44e9
--- /dev/null
+++ b/src/themes/teams/components/Icon/svg/icons/addParticipant.tsx
@@ -0,0 +1,18 @@
+import * as React from 'react'
+import { TeamsSvgIconSpec } from '../types'
+
+export default {
+ icon: ({ classes }) => (
+
+ ),
+ styles: {},
+} as TeamsSvgIconSpec
diff --git a/src/themes/teams/components/Icon/svg/icons/bookmark.tsx b/src/themes/teams/components/Icon/svg/icons/bookmark.tsx
index dd5fe18a50..6de144a925 100644
--- a/src/themes/teams/components/Icon/svg/icons/bookmark.tsx
+++ b/src/themes/teams/components/Icon/svg/icons/bookmark.tsx
@@ -3,22 +3,16 @@ import { TeamsSvgIconSpec } from '../types'
export default {
icon: ({ classes }) => (
-