diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icon-dictionary.json b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icon-dictionary.json
index d4534b46de..32568953f5 100644
--- a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icon-dictionary.json
+++ b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icon-dictionary.json
@@ -978,6 +978,10 @@
"file": "hard-drive.svg",
"legacy": true
},
+ {
+ "name": "icon-heading",
+ "file": "heading.svg"
+ },
{
"name": "icon-heading-1",
"file": "heading-1.svg"
@@ -994,6 +998,14 @@
"name": "icon-heading-4",
"file": "heading-4.svg"
},
+ {
+ "name": "icon-heading-5",
+ "file": "heading-5.svg"
+ },
+ {
+ "name": "icon-heading-6",
+ "file": "heading-6.svg"
+ },
{
"name": "icon-headphones",
"file": "headphones.svg"
diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons.ts b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons.ts
index 0f83d37184..735f7aca17 100644
--- a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons.ts
+++ b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons.ts
@@ -769,6 +769,9 @@ legacy: true,
hidden: true,
path: () => import("./icons/icon-hard-drive.js"),
},{
+name: "icon-heading",
+path: () => import("./icons/icon-heading.js"),
+},{
name: "icon-heading-1",
path: () => import("./icons/icon-heading-1.js"),
},{
@@ -781,6 +784,12 @@ path: () => import("./icons/icon-heading-3.js"),
name: "icon-heading-4",
path: () => import("./icons/icon-heading-4.js"),
},{
+name: "icon-heading-5",
+path: () => import("./icons/icon-heading-5.js"),
+},{
+name: "icon-heading-6",
+path: () => import("./icons/icon-heading-6.js"),
+},{
name: "icon-headphones",
path: () => import("./icons/icon-headphones.js"),
},{
diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-5.ts b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-5.ts
new file mode 100644
index 0000000000..ee81cce068
--- /dev/null
+++ b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-5.ts
@@ -0,0 +1 @@
+export default ``;
\ No newline at end of file
diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-6.ts b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-6.ts
new file mode 100644
index 0000000000..1ef9984dcf
--- /dev/null
+++ b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading-6.ts
@@ -0,0 +1 @@
+export default ``;
\ No newline at end of file
diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading.ts b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading.ts
new file mode 100644
index 0000000000..ee931a06a4
--- /dev/null
+++ b/src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/icons/icon-heading.ts
@@ -0,0 +1 @@
+export default ``;
\ No newline at end of file