diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0d6f0db7..c7c471c3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+### 6.3.11 (2022-12-13)
+
+- [910](https://github.com/influxdata/clockface/pull/910): Add OrganizationChart icon
+
### 6.3.10 (2022-11-22)
- [905](https://github.com/influxdata/clockface/pull/905): Fixed Form Ref export
diff --git a/ICONFONT.md b/ICONFONT.md
index 7638706f..9f98f7f9 100644
--- a/ICONFONT.md
+++ b/ICONFONT.md
@@ -34,7 +34,9 @@ When designing an icon the first consideration is whether it will be used in the
4. Reformat every entry to look like so:
```
-&.add-cell:before {content: "\e925";}
+&.add-cell:before {
+ content: '\e925';
+}
```
5. Copy all entries, then open `src/Styles/icon.scss` and starting from line `32` paste over the existing definitions
diff --git a/src/Styles/Fonts/icomoon.eot b/src/Styles/Fonts/icomoon.eot
index c9a1588b..bec4eeb1 100644
Binary files a/src/Styles/Fonts/icomoon.eot and b/src/Styles/Fonts/icomoon.eot differ
diff --git a/src/Styles/Fonts/icomoon.svg b/src/Styles/Fonts/icomoon.svg
index 1b8ba542..04329750 100644
--- a/src/Styles/Fonts/icomoon.svg
+++ b/src/Styles/Fonts/icomoon.svg
@@ -95,4 +95,5 @@
+
\ No newline at end of file
diff --git a/src/Styles/Fonts/icomoon.ttf b/src/Styles/Fonts/icomoon.ttf
index 64416d44..a908de92 100644
Binary files a/src/Styles/Fonts/icomoon.ttf and b/src/Styles/Fonts/icomoon.ttf differ
diff --git a/src/Styles/Fonts/icomoon.woff b/src/Styles/Fonts/icomoon.woff
index 65f3034f..3502a57f 100644
Binary files a/src/Styles/Fonts/icomoon.woff and b/src/Styles/Fonts/icomoon.woff differ
diff --git a/src/Styles/Fonts/icomoon.woff2 b/src/Styles/Fonts/icomoon.woff2
index a3ee077a..cc92203c 100644
Binary files a/src/Styles/Fonts/icomoon.woff2 and b/src/Styles/Fonts/icomoon.woff2 differ
diff --git a/src/Styles/icon.scss b/src/Styles/icon.scss
index fb2b998e..cd2c5985 100644
--- a/src/Styles/icon.scss
+++ b/src/Styles/icon.scss
@@ -28,6 +28,7 @@
// Better Font Rendering
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
+
&.FolderOpen:before {
content: '\e956';
}
@@ -232,6 +233,9 @@
&.More:before {
content: '\e933';
}
+ &.OrganizationChart:before {
+ content: '\e958';
+ }
&.Pencil:before {
content: '\e934';
}
diff --git a/src/Types/index.tsx b/src/Types/index.tsx
index 7c996147..c90411ce 100644
--- a/src/Types/index.tsx
+++ b/src/Types/index.tsx
@@ -334,6 +334,7 @@ export enum IconFont {
Lock = 'Lock',
Logout = 'Logout',
More = 'More',
+ OrganizationChart = 'OrganizationChart',
Pause = 'Pause',
Pencil = 'Pencil',
PieChart = 'PieChart',