diff --git a/assets/android/res/drawable/ic_compound_list_view.xml b/assets/android/res/drawable/ic_compound_list_view.xml
new file mode 100644
index 00000000..c912d9dd
--- /dev/null
+++ b/assets/android/res/drawable/ic_compound_list_view.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
diff --git a/assets/android/res/drawable/ic_compound_spotlight_view.xml b/assets/android/res/drawable/ic_compound_spotlight_view.xml
new file mode 100644
index 00000000..d49c80e2
--- /dev/null
+++ b/assets/android/res/drawable/ic_compound_spotlight_view.xml
@@ -0,0 +1,10 @@
+
+
+
diff --git a/assets/android/res/drawable/ic_compound_voice_call.xml b/assets/android/res/drawable/ic_compound_voice_call.xml
index cfaf123d..aefb625b 100644
--- a/assets/android/res/drawable/ic_compound_voice_call.xml
+++ b/assets/android/res/drawable/ic_compound_voice_call.xml
@@ -3,7 +3,10 @@
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
-
+
+
+
diff --git a/assets/android/res/drawable/ic_compound_voice_call_solid.xml b/assets/android/res/drawable/ic_compound_voice_call_solid.xml
new file mode 100644
index 00000000..cfaf123d
--- /dev/null
+++ b/assets/android/res/drawable/ic_compound_voice_call_solid.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/assets/android/src/CompoundIcons.kt b/assets/android/src/CompoundIcons.kt
index 01da4b23..5539b2f3 100644
--- a/assets/android/src/CompoundIcons.kt
+++ b/assets/android/src/CompoundIcons.kt
@@ -294,6 +294,9 @@ object CompoundIcons {
@Composable fun ListNumbered(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_list_numbered)
}
+ @Composable fun ListView(): ImageVector {
+ return ImageVector.vectorResource(R.drawable.ic_compound_list_view)
+ }
@Composable fun LocationNavigator(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_location_navigator)
}
@@ -489,6 +492,9 @@ object CompoundIcons {
@Composable fun Spotlight(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_spotlight)
}
+ @Composable fun SpotlightView(): ImageVector {
+ return ImageVector.vectorResource(R.drawable.ic_compound_spotlight_view)
+ }
@Composable fun Strikethrough(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_strikethrough)
}
@@ -573,6 +579,9 @@ object CompoundIcons {
@Composable fun VoiceCall(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_voice_call)
}
+ @Composable fun VoiceCallSolid(): ImageVector {
+ return ImageVector.vectorResource(R.drawable.ic_compound_voice_call_solid)
+ }
@Composable fun VolumeOff(): ImageVector {
return ImageVector.vectorResource(R.drawable.ic_compound_volume_off)
}
@@ -683,6 +692,7 @@ object CompoundIcons {
Linux(),
ListBulleted(),
ListNumbered(),
+ ListView(),
LocationNavigator(),
LocationNavigatorCentred(),
LocationPin(),
@@ -748,6 +758,7 @@ object CompoundIcons {
SignOut(),
Spinner(),
Spotlight(),
+ SpotlightView(),
Strikethrough(),
SwitchCameraSolid(),
TakePhoto(),
@@ -776,6 +787,7 @@ object CompoundIcons {
VisibilityOff(),
VisibilityOn(),
VoiceCall(),
+ VoiceCallSolid(),
VolumeOff(),
VolumeOffSolid(),
VolumeOn(),
@@ -873,6 +885,7 @@ object CompoundIcons {
R.drawable.ic_compound_linux,
R.drawable.ic_compound_list_bulleted,
R.drawable.ic_compound_list_numbered,
+ R.drawable.ic_compound_list_view,
R.drawable.ic_compound_location_navigator,
R.drawable.ic_compound_location_navigator_centred,
R.drawable.ic_compound_location_pin,
@@ -938,6 +951,7 @@ object CompoundIcons {
R.drawable.ic_compound_sign_out,
R.drawable.ic_compound_spinner,
R.drawable.ic_compound_spotlight,
+ R.drawable.ic_compound_spotlight_view,
R.drawable.ic_compound_strikethrough,
R.drawable.ic_compound_switch_camera_solid,
R.drawable.ic_compound_take_photo,
@@ -966,6 +980,7 @@ object CompoundIcons {
R.drawable.ic_compound_visibility_off,
R.drawable.ic_compound_visibility_on,
R.drawable.ic_compound_voice_call,
+ R.drawable.ic_compound_voice_call_solid,
R.drawable.ic_compound_volume_off,
R.drawable.ic_compound_volume_off_solid,
R.drawable.ic_compound_volume_on,
diff --git a/assets/ios/swift/CompoundIcons.swift b/assets/ios/swift/CompoundIcons.swift
index f3068887..0c110877 100644
--- a/assets/ios/swift/CompoundIcons.swift
+++ b/assets/ios/swift/CompoundIcons.swift
@@ -94,6 +94,7 @@ public class CompoundIcons {
public let linux = Image("linux", bundle: Bundle.module)
public let listBulleted = Image("listBulleted", bundle: Bundle.module)
public let listNumbered = Image("listNumbered", bundle: Bundle.module)
+ public let listView = Image("listView", bundle: Bundle.module)
public let locationNavigator = Image("locationNavigator", bundle: Bundle.module)
public let locationNavigatorCentred = Image("locationNavigatorCentred", bundle: Bundle.module)
public let locationPin = Image("locationPin", bundle: Bundle.module)
@@ -158,6 +159,7 @@ public class CompoundIcons {
public let signOut = Image("signOut", bundle: Bundle.module)
public let spinner = Image("spinner", bundle: Bundle.module)
public let spotlight = Image("spotlight", bundle: Bundle.module)
+ public let spotlightView = Image("spotlightView", bundle: Bundle.module)
public let strikethrough = Image("strikethrough", bundle: Bundle.module)
public let switchCameraSolid = Image("switchCameraSolid", bundle: Bundle.module)
public let takePhoto = Image("takePhoto", bundle: Bundle.module)
@@ -186,6 +188,7 @@ public class CompoundIcons {
public let visibilityOff = Image("visibilityOff", bundle: Bundle.module)
public let visibilityOn = Image("visibilityOn", bundle: Bundle.module)
public let voiceCall = Image("voiceCall", bundle: Bundle.module)
+ public let voiceCallSolid = Image("voiceCallSolid", bundle: Bundle.module)
public let volumeOff = Image("volumeOff", bundle: Bundle.module)
public let volumeOffSolid = Image("volumeOffSolid", bundle: Bundle.module)
public let volumeOn = Image("volumeOn", bundle: Bundle.module)
diff --git a/assets/ios/swift/Icons.xcassets/listView.imageset/Contents.json b/assets/ios/swift/Icons.xcassets/listView.imageset/Contents.json
new file mode 100644
index 00000000..2761d202
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/listView.imageset/Contents.json
@@ -0,0 +1 @@
+{"images":[{"filename":"listView.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"preserves-vector-representation":true,"template-rendering-intent":"template"}}
\ No newline at end of file
diff --git a/assets/ios/swift/Icons.xcassets/listView.imageset/listView.svg b/assets/ios/swift/Icons.xcassets/listView.imageset/listView.svg
new file mode 100644
index 00000000..1097b924
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/listView.imageset/listView.svg
@@ -0,0 +1,5 @@
+
diff --git a/assets/ios/swift/Icons.xcassets/spotlightView.imageset/Contents.json b/assets/ios/swift/Icons.xcassets/spotlightView.imageset/Contents.json
new file mode 100644
index 00000000..89207373
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/spotlightView.imageset/Contents.json
@@ -0,0 +1 @@
+{"images":[{"filename":"spotlightView.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"preserves-vector-representation":true,"template-rendering-intent":"template"}}
\ No newline at end of file
diff --git a/assets/ios/swift/Icons.xcassets/spotlightView.imageset/spotlightView.svg b/assets/ios/swift/Icons.xcassets/spotlightView.imageset/spotlightView.svg
new file mode 100644
index 00000000..802f3ab5
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/spotlightView.imageset/spotlightView.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/ios/swift/Icons.xcassets/voiceCall.imageset/voiceCall.svg b/assets/ios/swift/Icons.xcassets/voiceCall.imageset/voiceCall.svg
index 407b8b39..d1603701 100644
--- a/assets/ios/swift/Icons.xcassets/voiceCall.imageset/voiceCall.svg
+++ b/assets/ios/swift/Icons.xcassets/voiceCall.imageset/voiceCall.svg
@@ -1,3 +1,10 @@
diff --git a/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/Contents.json b/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/Contents.json
new file mode 100644
index 00000000..75d2c579
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/Contents.json
@@ -0,0 +1 @@
+{"images":[{"filename":"voiceCallSolid.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"preserves-vector-representation":true,"template-rendering-intent":"template"}}
\ No newline at end of file
diff --git a/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/voiceCallSolid.svg b/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/voiceCallSolid.svg
new file mode 100644
index 00000000..407b8b39
--- /dev/null
+++ b/assets/ios/swift/Icons.xcassets/voiceCallSolid.imageset/voiceCallSolid.svg
@@ -0,0 +1,3 @@
+
diff --git a/assets/web/icons/index.cjs b/assets/web/icons/index.cjs
index 3e887a4f..23eaeebb 100644
--- a/assets/web/icons/index.cjs
+++ b/assets/web/icons/index.cjs
@@ -86,6 +86,7 @@ module.exports = {
LinuxIcon: require("./linux.cjs"),
ListBulletedIcon: require("./list-bulleted.cjs"),
ListNumberedIcon: require("./list-numbered.cjs"),
+ ListViewIcon: require("./list-view.cjs"),
LocationNavigatorCentredIcon: require("./location-navigator-centred.cjs"),
LocationNavigatorIcon: require("./location-navigator.cjs"),
LocationPinSolidIcon: require("./location-pin-solid.cjs"),
@@ -150,6 +151,7 @@ module.exports = {
SidebarIcon: require("./sidebar.cjs"),
SignOutIcon: require("./sign-out.cjs"),
SpinnerIcon: require("./spinner.cjs"),
+ SpotlightViewIcon: require("./spotlight-view.cjs"),
SpotlightIcon: require("./spotlight.cjs"),
StrikethroughIcon: require("./strikethrough.cjs"),
SwitchCameraSolidIcon: require("./switch-camera-solid.cjs"),
@@ -178,6 +180,7 @@ module.exports = {
VideoCallIcon: require("./video-call.cjs"),
VisibilityOffIcon: require("./visibility-off.cjs"),
VisibilityOnIcon: require("./visibility-on.cjs"),
+ VoiceCallSolidIcon: require("./voice-call-solid.cjs"),
VoiceCallIcon: require("./voice-call.cjs"),
VolumeOffSolidIcon: require("./volume-off-solid.cjs"),
VolumeOffIcon: require("./volume-off.cjs"),
diff --git a/assets/web/icons/index.d.ts b/assets/web/icons/index.d.ts
index 2f5684b0..eff5d9d8 100644
--- a/assets/web/icons/index.d.ts
+++ b/assets/web/icons/index.d.ts
@@ -85,6 +85,7 @@ export { default as LinkIcon } from "./link.js";
export { default as LinuxIcon } from "./linux.js";
export { default as ListBulletedIcon } from "./list-bulleted.js";
export { default as ListNumberedIcon } from "./list-numbered.js";
+export { default as ListViewIcon } from "./list-view.js";
export { default as LocationNavigatorCentredIcon } from "./location-navigator-centred.js";
export { default as LocationNavigatorIcon } from "./location-navigator.js";
export { default as LocationPinSolidIcon } from "./location-pin-solid.js";
@@ -149,6 +150,7 @@ export { default as ShareIcon } from "./share.js";
export { default as SidebarIcon } from "./sidebar.js";
export { default as SignOutIcon } from "./sign-out.js";
export { default as SpinnerIcon } from "./spinner.js";
+export { default as SpotlightViewIcon } from "./spotlight-view.js";
export { default as SpotlightIcon } from "./spotlight.js";
export { default as StrikethroughIcon } from "./strikethrough.js";
export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
@@ -177,6 +179,7 @@ export { default as VideoCallSolidIcon } from "./video-call-solid.js";
export { default as VideoCallIcon } from "./video-call.js";
export { default as VisibilityOffIcon } from "./visibility-off.js";
export { default as VisibilityOnIcon } from "./visibility-on.js";
+export { default as VoiceCallSolidIcon } from "./voice-call-solid.js";
export { default as VoiceCallIcon } from "./voice-call.js";
export { default as VolumeOffSolidIcon } from "./volume-off-solid.js";
export { default as VolumeOffIcon } from "./volume-off.js";
diff --git a/assets/web/icons/index.js b/assets/web/icons/index.js
index 2f5684b0..eff5d9d8 100644
--- a/assets/web/icons/index.js
+++ b/assets/web/icons/index.js
@@ -85,6 +85,7 @@ export { default as LinkIcon } from "./link.js";
export { default as LinuxIcon } from "./linux.js";
export { default as ListBulletedIcon } from "./list-bulleted.js";
export { default as ListNumberedIcon } from "./list-numbered.js";
+export { default as ListViewIcon } from "./list-view.js";
export { default as LocationNavigatorCentredIcon } from "./location-navigator-centred.js";
export { default as LocationNavigatorIcon } from "./location-navigator.js";
export { default as LocationPinSolidIcon } from "./location-pin-solid.js";
@@ -149,6 +150,7 @@ export { default as ShareIcon } from "./share.js";
export { default as SidebarIcon } from "./sidebar.js";
export { default as SignOutIcon } from "./sign-out.js";
export { default as SpinnerIcon } from "./spinner.js";
+export { default as SpotlightViewIcon } from "./spotlight-view.js";
export { default as SpotlightIcon } from "./spotlight.js";
export { default as StrikethroughIcon } from "./strikethrough.js";
export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
@@ -177,6 +179,7 @@ export { default as VideoCallSolidIcon } from "./video-call-solid.js";
export { default as VideoCallIcon } from "./video-call.js";
export { default as VisibilityOffIcon } from "./visibility-off.js";
export { default as VisibilityOnIcon } from "./visibility-on.js";
+export { default as VoiceCallSolidIcon } from "./voice-call-solid.js";
export { default as VoiceCallIcon } from "./voice-call.js";
export { default as VolumeOffSolidIcon } from "./volume-off-solid.js";
export { default as VolumeOffIcon } from "./volume-off.js";
diff --git a/assets/web/icons/list-view.cjs b/assets/web/icons/list-view.cjs
new file mode 100644
index 00000000..7598252a
--- /dev/null
+++ b/assets/web/icons/list-view.cjs
@@ -0,0 +1,25 @@
+var _reactJsxRuntime = require("react/jsx-runtime");
+var React = require("react");
+function ListViewIcon(props, ref) {
+ return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ d: "M17 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ fillRule: "evenodd",
+ d: "M4 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H4Zm8 2H4v6h8V9Z",
+ clipRule: "evenodd"
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ d: "M16 10a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
+ })]
+ });
+}
+;
+ListViewIcon.displayName = "ListViewIcon";
+module.exports = React.forwardRef(ListViewIcon);
\ No newline at end of file
diff --git a/assets/web/icons/list-view.d.ts b/assets/web/icons/list-view.d.ts
new file mode 100644
index 00000000..4b105889
--- /dev/null
+++ b/assets/web/icons/list-view.d.ts
@@ -0,0 +1,11 @@
+import React from "react";
+
+/**
+ * list-view.svg
+ */
+declare const ListViewIcon: React.ForwardRefExoticComponent<
+ Omit, "ref" | "children"> &
+ React.RefAttributes
+>;
+
+export default ListViewIcon;
diff --git a/assets/web/icons/list-view.js b/assets/web/icons/list-view.js
new file mode 100644
index 00000000..16bcdb3d
--- /dev/null
+++ b/assets/web/icons/list-view.js
@@ -0,0 +1,25 @@
+import { forwardRef } from "react";
+import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
+function ListViewIcon(props, ref) {
+ return /*#__PURE__*/_jsxs("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: [/*#__PURE__*/_jsx("path", {
+ d: "M17 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
+ }), /*#__PURE__*/_jsx("path", {
+ fillRule: "evenodd",
+ d: "M4 7a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H4Zm8 2H4v6h8V9Z",
+ clipRule: "evenodd"
+ }), /*#__PURE__*/_jsx("path", {
+ d: "M16 10a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm0 4a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1Zm1 3a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
+ })]
+ });
+}
+;
+ListViewIcon.displayName = "ListViewIcon";
+export default forwardRef(ListViewIcon);
\ No newline at end of file
diff --git a/assets/web/icons/spotlight-view.cjs b/assets/web/icons/spotlight-view.cjs
new file mode 100644
index 00000000..1b28346c
--- /dev/null
+++ b/assets/web/icons/spotlight-view.cjs
@@ -0,0 +1,21 @@
+var _reactJsxRuntime = require("react/jsx-runtime");
+var React = require("react");
+function SpotlightViewIcon(props, ref) {
+ return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ fillRule: "evenodd",
+ d: "M20 6H4v12h16V6ZM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Z",
+ clipRule: "evenodd"
+ })
+ });
+}
+;
+SpotlightViewIcon.displayName = "SpotlightViewIcon";
+module.exports = React.forwardRef(SpotlightViewIcon);
\ No newline at end of file
diff --git a/assets/web/icons/spotlight-view.d.ts b/assets/web/icons/spotlight-view.d.ts
new file mode 100644
index 00000000..7a80a8d8
--- /dev/null
+++ b/assets/web/icons/spotlight-view.d.ts
@@ -0,0 +1,11 @@
+import React from "react";
+
+/**
+ * spotlight-view.svg
+ */
+declare const SpotlightViewIcon: React.ForwardRefExoticComponent<
+ Omit, "ref" | "children"> &
+ React.RefAttributes
+>;
+
+export default SpotlightViewIcon;
diff --git a/assets/web/icons/spotlight-view.js b/assets/web/icons/spotlight-view.js
new file mode 100644
index 00000000..c4257802
--- /dev/null
+++ b/assets/web/icons/spotlight-view.js
@@ -0,0 +1,21 @@
+import { forwardRef } from "react";
+import { jsx as _jsx } from "react/jsx-runtime";
+function SpotlightViewIcon(props, ref) {
+ return /*#__PURE__*/_jsx("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: /*#__PURE__*/_jsx("path", {
+ fillRule: "evenodd",
+ d: "M20 6H4v12h16V6ZM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4Z",
+ clipRule: "evenodd"
+ })
+ });
+}
+;
+SpotlightViewIcon.displayName = "SpotlightViewIcon";
+export default forwardRef(SpotlightViewIcon);
\ No newline at end of file
diff --git a/assets/web/icons/voice-call-solid.cjs b/assets/web/icons/voice-call-solid.cjs
new file mode 100644
index 00000000..1c4a2548
--- /dev/null
+++ b/assets/web/icons/voice-call-solid.cjs
@@ -0,0 +1,19 @@
+var _reactJsxRuntime = require("react/jsx-runtime");
+var React = require("react");
+function VoiceCallSolidIcon(props, ref) {
+ return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ d: "m20.958 16.374.039 3.527c0 .285-.11.537-.33.756-.22.22-.472.33-.756.33a15.97 15.97 0 0 1-6.57-1.105 16.223 16.223 0 0 1-5.563-3.663 16.084 16.084 0 0 1-3.653-5.573 16.313 16.313 0 0 1-1.115-6.56c0-.285.11-.537.33-.757.22-.22.471-.329.755-.329l3.528.039a1.069 1.069 0 0 1 1.085.93l.543 3.954c.026.181.013.349-.039.504a1.088 1.088 0 0 1-.271.426l-1.64 1.64c.337.672.721 1.308 1.154 1.909.433.6 1.444 1.696 1.444 1.696s1.095 1.01 1.696 1.444c.6.433 1.237.817 1.909 1.153l1.64-1.64a1.08 1.08 0 0 1 .426-.27c.155-.052.323-.065.504-.04l3.954.543a1.069 1.069 0 0 1 .93 1.085Z"
+ })
+ });
+}
+;
+VoiceCallSolidIcon.displayName = "VoiceCallSolidIcon";
+module.exports = React.forwardRef(VoiceCallSolidIcon);
\ No newline at end of file
diff --git a/assets/web/icons/voice-call-solid.d.ts b/assets/web/icons/voice-call-solid.d.ts
new file mode 100644
index 00000000..0dd31fc3
--- /dev/null
+++ b/assets/web/icons/voice-call-solid.d.ts
@@ -0,0 +1,11 @@
+import React from "react";
+
+/**
+ * voice-call-solid.svg
+ */
+declare const VoiceCallSolidIcon: React.ForwardRefExoticComponent<
+ Omit, "ref" | "children"> &
+ React.RefAttributes
+>;
+
+export default VoiceCallSolidIcon;
diff --git a/assets/web/icons/voice-call-solid.js b/assets/web/icons/voice-call-solid.js
new file mode 100644
index 00000000..bc11eeb9
--- /dev/null
+++ b/assets/web/icons/voice-call-solid.js
@@ -0,0 +1,19 @@
+import { forwardRef } from "react";
+import { jsx as _jsx } from "react/jsx-runtime";
+function VoiceCallSolidIcon(props, ref) {
+ return /*#__PURE__*/_jsx("svg", {
+ xmlns: "http://www.w3.org/2000/svg",
+ width: "1em",
+ height: "1em",
+ fill: "currentColor",
+ viewBox: "0 0 24 24",
+ ref: ref,
+ ...props,
+ children: /*#__PURE__*/_jsx("path", {
+ d: "m20.958 16.374.039 3.527c0 .285-.11.537-.33.756-.22.22-.472.33-.756.33a15.97 15.97 0 0 1-6.57-1.105 16.223 16.223 0 0 1-5.563-3.663 16.084 16.084 0 0 1-3.653-5.573 16.313 16.313 0 0 1-1.115-6.56c0-.285.11-.537.33-.757.22-.22.471-.329.755-.329l3.528.039a1.069 1.069 0 0 1 1.085.93l.543 3.954c.026.181.013.349-.039.504a1.088 1.088 0 0 1-.271.426l-1.64 1.64c.337.672.721 1.308 1.154 1.909.433.6 1.444 1.696 1.444 1.696s1.095 1.01 1.696 1.444c.6.433 1.237.817 1.909 1.153l1.64-1.64a1.08 1.08 0 0 1 .426-.27c.155-.052.323-.065.504-.04l3.954.543a1.069 1.069 0 0 1 .93 1.085Z"
+ })
+ });
+}
+;
+VoiceCallSolidIcon.displayName = "VoiceCallSolidIcon";
+export default forwardRef(VoiceCallSolidIcon);
\ No newline at end of file
diff --git a/assets/web/icons/voice-call.cjs b/assets/web/icons/voice-call.cjs
index eb475a13..76a8f6b6 100644
--- a/assets/web/icons/voice-call.cjs
+++ b/assets/web/icons/voice-call.cjs
@@ -1,7 +1,7 @@
var _reactJsxRuntime = require("react/jsx-runtime");
var React = require("react");
function VoiceCallIcon(props, ref) {
- return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
+ return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
@@ -9,9 +9,21 @@ function VoiceCallIcon(props, ref) {
viewBox: "0 0 24 24",
ref: ref,
...props,
- children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
- d: "m20.958 16.374.039 3.527c0 .285-.11.537-.33.756-.22.22-.472.33-.756.33a15.97 15.97 0 0 1-6.57-1.105 16.223 16.223 0 0 1-5.563-3.663 16.084 16.084 0 0 1-3.653-5.573 16.313 16.313 0 0 1-1.115-6.56c0-.285.11-.537.33-.757.22-.22.471-.329.755-.329l3.528.039a1.069 1.069 0 0 1 1.085.93l.543 3.954c.026.181.013.349-.039.504a1.088 1.088 0 0 1-.271.426l-1.64 1.64c.337.672.721 1.308 1.154 1.909.433.6 1.444 1.696 1.444 1.696s1.095 1.01 1.696 1.444c.6.433 1.237.817 1.909 1.153l1.64-1.64a1.08 1.08 0 0 1 .426-.27c.155-.052.323-.065.504-.04l3.954.543a1.069 1.069 0 0 1 .93 1.085Z"
- })
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
+ clipPath: "url(#a)",
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ fillRule: "evenodd",
+ d: "M8.929 15.1a13.566 13.566 0 0 0 4.654 3.066c1.748.69 3.575.999 5.492.923h.008l.003-.004.003-.002-.034-3.124-3.52-.483-1.791 1.792-.645-.322a13.46 13.46 0 0 1-3.496-2.52 13.403 13.403 0 0 1-2.52-3.496l-.322-.644 1.792-1.792-.483-3.519-3.123-.034-.003.002-.003.004v.002a13.645 13.645 0 0 0 .932 5.492A13.44 13.44 0 0 0 8.93 15.1Zm3.92 4.926a15.565 15.565 0 0 1-5.334-3.511 15.44 15.44 0 0 1-3.505-5.346 15.644 15.644 0 0 1-1.069-6.274 1.933 1.933 0 0 1 .589-1.366c.366-.366.84-.589 1.386-.589h.01l3.163.035a1.958 1.958 0 0 1 1.958 1.694v.005l.487 3.545v.003c.043.297.025.605-.076.907a1.976 1.976 0 0 1-.485.773l-.762.762a11.37 11.37 0 0 0 3.206 3.54c.305.22.62.425.948.614l.762-.761a1.97 1.97 0 0 1 .774-.486c.302-.1.61-.118.907-.076l3.553.487a1.958 1.958 0 0 1 1.694 1.958l.034 3.174c0 .546-.223 1.02-.588 1.386-.361.36-.827.582-1.363.588a15.337 15.337 0 0 1-6.29-1.062Z",
+ clipRule: "evenodd"
+ })
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
+ id: "a",
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
+ d: "M0 0h24v24H0z"
+ })
+ })
+ })]
});
}
;
diff --git a/assets/web/icons/voice-call.js b/assets/web/icons/voice-call.js
index b74a857b..d466976f 100644
--- a/assets/web/icons/voice-call.js
+++ b/assets/web/icons/voice-call.js
@@ -1,7 +1,7 @@
import { forwardRef } from "react";
-import { jsx as _jsx } from "react/jsx-runtime";
+import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
function VoiceCallIcon(props, ref) {
- return /*#__PURE__*/_jsx("svg", {
+ return /*#__PURE__*/_jsxs("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
@@ -9,9 +9,21 @@ function VoiceCallIcon(props, ref) {
viewBox: "0 0 24 24",
ref: ref,
...props,
- children: /*#__PURE__*/_jsx("path", {
- d: "m20.958 16.374.039 3.527c0 .285-.11.537-.33.756-.22.22-.472.33-.756.33a15.97 15.97 0 0 1-6.57-1.105 16.223 16.223 0 0 1-5.563-3.663 16.084 16.084 0 0 1-3.653-5.573 16.313 16.313 0 0 1-1.115-6.56c0-.285.11-.537.33-.757.22-.22.471-.329.755-.329l3.528.039a1.069 1.069 0 0 1 1.085.93l.543 3.954c.026.181.013.349-.039.504a1.088 1.088 0 0 1-.271.426l-1.64 1.64c.337.672.721 1.308 1.154 1.909.433.6 1.444 1.696 1.444 1.696s1.095 1.01 1.696 1.444c.6.433 1.237.817 1.909 1.153l1.64-1.64a1.08 1.08 0 0 1 .426-.27c.155-.052.323-.065.504-.04l3.954.543a1.069 1.069 0 0 1 .93 1.085Z"
- })
+ children: [/*#__PURE__*/_jsx("g", {
+ clipPath: "url(#a)",
+ children: /*#__PURE__*/_jsx("path", {
+ fillRule: "evenodd",
+ d: "M8.929 15.1a13.566 13.566 0 0 0 4.654 3.066c1.748.69 3.575.999 5.492.923h.008l.003-.004.003-.002-.034-3.124-3.52-.483-1.791 1.792-.645-.322a13.46 13.46 0 0 1-3.496-2.52 13.403 13.403 0 0 1-2.52-3.496l-.322-.644 1.792-1.792-.483-3.519-3.123-.034-.003.002-.003.004v.002a13.645 13.645 0 0 0 .932 5.492A13.44 13.44 0 0 0 8.93 15.1Zm3.92 4.926a15.565 15.565 0 0 1-5.334-3.511 15.44 15.44 0 0 1-3.505-5.346 15.644 15.644 0 0 1-1.069-6.274 1.933 1.933 0 0 1 .589-1.366c.366-.366.84-.589 1.386-.589h.01l3.163.035a1.958 1.958 0 0 1 1.958 1.694v.005l.487 3.545v.003c.043.297.025.605-.076.907a1.976 1.976 0 0 1-.485.773l-.762.762a11.37 11.37 0 0 0 3.206 3.54c.305.22.62.425.948.614l.762-.761a1.97 1.97 0 0 1 .774-.486c.302-.1.61-.118.907-.076l3.553.487a1.958 1.958 0 0 1 1.694 1.958l.034 3.174c0 .546-.223 1.02-.588 1.386-.361.36-.827.582-1.363.588a15.337 15.337 0 0 1-6.29-1.062Z",
+ clipRule: "evenodd"
+ })
+ }), /*#__PURE__*/_jsx("defs", {
+ children: /*#__PURE__*/_jsx("clipPath", {
+ id: "a",
+ children: /*#__PURE__*/_jsx("path", {
+ d: "M0 0h24v24H0z"
+ })
+ })
+ })]
});
}
;
diff --git a/assets/web/js/cpdDark.d.ts b/assets/web/js/cpdDark.d.ts
index 98c2ee55..21626588 100644
--- a/assets/web/js/cpdDark.d.ts
+++ b/assets/web/js/cpdDark.d.ts
@@ -164,6 +164,7 @@ export const cpdIconLink: string;
export const cpdIconLinux: string;
export const cpdIconListBulleted: string;
export const cpdIconListNumbered: string;
+export const cpdIconListView: string;
export const cpdIconLocationNavigatorCentred: string;
export const cpdIconLocationNavigator: string;
export const cpdIconLocationPinSolid: string;
@@ -228,6 +229,7 @@ export const cpdIconShare: string;
export const cpdIconSidebar: string;
export const cpdIconSignOut: string;
export const cpdIconSpinner: string;
+export const cpdIconSpotlightView: string;
export const cpdIconSpotlight: string;
export const cpdIconStrikethrough: string;
export const cpdIconSwitchCameraSolid: string;
@@ -256,6 +258,7 @@ export const cpdIconVideoCallSolid: string;
export const cpdIconVideoCall: string;
export const cpdIconVisibilityOff: string;
export const cpdIconVisibilityOn: string;
+export const cpdIconVoiceCallSolid: string;
export const cpdIconVoiceCall: string;
export const cpdIconVolumeOffSolid: string;
export const cpdIconVolumeOff: string;
diff --git a/assets/web/js/cpdDark.js b/assets/web/js/cpdDark.js
index da4bc2d2..7fd30e97 100644
--- a/assets/web/js/cpdDark.js
+++ b/assets/web/js/cpdDark.js
@@ -186,6 +186,7 @@ export const cpdIconLink = "icons/link.svg";
export const cpdIconLinux = "icons/linux.svg";
export const cpdIconListBulleted = "icons/list-bulleted.svg";
export const cpdIconListNumbered = "icons/list-numbered.svg";
+export const cpdIconListView = "icons/list-view.svg";
export const cpdIconLocationNavigatorCentred =
"icons/location-navigator-centred.svg";
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
@@ -252,6 +253,7 @@ export const cpdIconShare = "icons/share.svg";
export const cpdIconSidebar = "icons/sidebar.svg";
export const cpdIconSignOut = "icons/sign-out.svg";
export const cpdIconSpinner = "icons/spinner.svg";
+export const cpdIconSpotlightView = "icons/spotlight-view.svg";
export const cpdIconSpotlight = "icons/spotlight.svg";
export const cpdIconStrikethrough = "icons/strikethrough.svg";
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
@@ -281,6 +283,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
export const cpdIconVideoCall = "icons/video-call.svg";
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
+export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
export const cpdIconVoiceCall = "icons/voice-call.svg";
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
export const cpdIconVolumeOff = "icons/volume-off.svg";
diff --git a/assets/web/js/cpdDarkHc.d.ts b/assets/web/js/cpdDarkHc.d.ts
index 98c2ee55..21626588 100644
--- a/assets/web/js/cpdDarkHc.d.ts
+++ b/assets/web/js/cpdDarkHc.d.ts
@@ -164,6 +164,7 @@ export const cpdIconLink: string;
export const cpdIconLinux: string;
export const cpdIconListBulleted: string;
export const cpdIconListNumbered: string;
+export const cpdIconListView: string;
export const cpdIconLocationNavigatorCentred: string;
export const cpdIconLocationNavigator: string;
export const cpdIconLocationPinSolid: string;
@@ -228,6 +229,7 @@ export const cpdIconShare: string;
export const cpdIconSidebar: string;
export const cpdIconSignOut: string;
export const cpdIconSpinner: string;
+export const cpdIconSpotlightView: string;
export const cpdIconSpotlight: string;
export const cpdIconStrikethrough: string;
export const cpdIconSwitchCameraSolid: string;
@@ -256,6 +258,7 @@ export const cpdIconVideoCallSolid: string;
export const cpdIconVideoCall: string;
export const cpdIconVisibilityOff: string;
export const cpdIconVisibilityOn: string;
+export const cpdIconVoiceCallSolid: string;
export const cpdIconVoiceCall: string;
export const cpdIconVolumeOffSolid: string;
export const cpdIconVolumeOff: string;
diff --git a/assets/web/js/cpdDarkHc.js b/assets/web/js/cpdDarkHc.js
index 2b6b6192..ad071791 100644
--- a/assets/web/js/cpdDarkHc.js
+++ b/assets/web/js/cpdDarkHc.js
@@ -186,6 +186,7 @@ export const cpdIconLink = "icons/link.svg";
export const cpdIconLinux = "icons/linux.svg";
export const cpdIconListBulleted = "icons/list-bulleted.svg";
export const cpdIconListNumbered = "icons/list-numbered.svg";
+export const cpdIconListView = "icons/list-view.svg";
export const cpdIconLocationNavigatorCentred =
"icons/location-navigator-centred.svg";
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
@@ -252,6 +253,7 @@ export const cpdIconShare = "icons/share.svg";
export const cpdIconSidebar = "icons/sidebar.svg";
export const cpdIconSignOut = "icons/sign-out.svg";
export const cpdIconSpinner = "icons/spinner.svg";
+export const cpdIconSpotlightView = "icons/spotlight-view.svg";
export const cpdIconSpotlight = "icons/spotlight.svg";
export const cpdIconStrikethrough = "icons/strikethrough.svg";
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
@@ -281,6 +283,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
export const cpdIconVideoCall = "icons/video-call.svg";
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
+export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
export const cpdIconVoiceCall = "icons/voice-call.svg";
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
export const cpdIconVolumeOff = "icons/volume-off.svg";
diff --git a/assets/web/js/cpdLight.d.ts b/assets/web/js/cpdLight.d.ts
index 98c2ee55..21626588 100644
--- a/assets/web/js/cpdLight.d.ts
+++ b/assets/web/js/cpdLight.d.ts
@@ -164,6 +164,7 @@ export const cpdIconLink: string;
export const cpdIconLinux: string;
export const cpdIconListBulleted: string;
export const cpdIconListNumbered: string;
+export const cpdIconListView: string;
export const cpdIconLocationNavigatorCentred: string;
export const cpdIconLocationNavigator: string;
export const cpdIconLocationPinSolid: string;
@@ -228,6 +229,7 @@ export const cpdIconShare: string;
export const cpdIconSidebar: string;
export const cpdIconSignOut: string;
export const cpdIconSpinner: string;
+export const cpdIconSpotlightView: string;
export const cpdIconSpotlight: string;
export const cpdIconStrikethrough: string;
export const cpdIconSwitchCameraSolid: string;
@@ -256,6 +258,7 @@ export const cpdIconVideoCallSolid: string;
export const cpdIconVideoCall: string;
export const cpdIconVisibilityOff: string;
export const cpdIconVisibilityOn: string;
+export const cpdIconVoiceCallSolid: string;
export const cpdIconVoiceCall: string;
export const cpdIconVolumeOffSolid: string;
export const cpdIconVolumeOff: string;
diff --git a/assets/web/js/cpdLight.js b/assets/web/js/cpdLight.js
index bbe16df8..2da57aaf 100644
--- a/assets/web/js/cpdLight.js
+++ b/assets/web/js/cpdLight.js
@@ -186,6 +186,7 @@ export const cpdIconLink = "icons/link.svg";
export const cpdIconLinux = "icons/linux.svg";
export const cpdIconListBulleted = "icons/list-bulleted.svg";
export const cpdIconListNumbered = "icons/list-numbered.svg";
+export const cpdIconListView = "icons/list-view.svg";
export const cpdIconLocationNavigatorCentred =
"icons/location-navigator-centred.svg";
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
@@ -252,6 +253,7 @@ export const cpdIconShare = "icons/share.svg";
export const cpdIconSidebar = "icons/sidebar.svg";
export const cpdIconSignOut = "icons/sign-out.svg";
export const cpdIconSpinner = "icons/spinner.svg";
+export const cpdIconSpotlightView = "icons/spotlight-view.svg";
export const cpdIconSpotlight = "icons/spotlight.svg";
export const cpdIconStrikethrough = "icons/strikethrough.svg";
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
@@ -281,6 +283,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
export const cpdIconVideoCall = "icons/video-call.svg";
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
+export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
export const cpdIconVoiceCall = "icons/voice-call.svg";
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
export const cpdIconVolumeOff = "icons/volume-off.svg";
diff --git a/assets/web/js/cpdLightHc.d.ts b/assets/web/js/cpdLightHc.d.ts
index 98c2ee55..21626588 100644
--- a/assets/web/js/cpdLightHc.d.ts
+++ b/assets/web/js/cpdLightHc.d.ts
@@ -164,6 +164,7 @@ export const cpdIconLink: string;
export const cpdIconLinux: string;
export const cpdIconListBulleted: string;
export const cpdIconListNumbered: string;
+export const cpdIconListView: string;
export const cpdIconLocationNavigatorCentred: string;
export const cpdIconLocationNavigator: string;
export const cpdIconLocationPinSolid: string;
@@ -228,6 +229,7 @@ export const cpdIconShare: string;
export const cpdIconSidebar: string;
export const cpdIconSignOut: string;
export const cpdIconSpinner: string;
+export const cpdIconSpotlightView: string;
export const cpdIconSpotlight: string;
export const cpdIconStrikethrough: string;
export const cpdIconSwitchCameraSolid: string;
@@ -256,6 +258,7 @@ export const cpdIconVideoCallSolid: string;
export const cpdIconVideoCall: string;
export const cpdIconVisibilityOff: string;
export const cpdIconVisibilityOn: string;
+export const cpdIconVoiceCallSolid: string;
export const cpdIconVoiceCall: string;
export const cpdIconVolumeOffSolid: string;
export const cpdIconVolumeOff: string;
diff --git a/assets/web/js/cpdLightHc.js b/assets/web/js/cpdLightHc.js
index 52a2a7f9..ecbd6d5e 100644
--- a/assets/web/js/cpdLightHc.js
+++ b/assets/web/js/cpdLightHc.js
@@ -186,6 +186,7 @@ export const cpdIconLink = "icons/link.svg";
export const cpdIconLinux = "icons/linux.svg";
export const cpdIconListBulleted = "icons/list-bulleted.svg";
export const cpdIconListNumbered = "icons/list-numbered.svg";
+export const cpdIconListView = "icons/list-view.svg";
export const cpdIconLocationNavigatorCentred =
"icons/location-navigator-centred.svg";
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
@@ -252,6 +253,7 @@ export const cpdIconShare = "icons/share.svg";
export const cpdIconSidebar = "icons/sidebar.svg";
export const cpdIconSignOut = "icons/sign-out.svg";
export const cpdIconSpinner = "icons/spinner.svg";
+export const cpdIconSpotlightView = "icons/spotlight-view.svg";
export const cpdIconSpotlight = "icons/spotlight.svg";
export const cpdIconStrikethrough = "icons/strikethrough.svg";
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
@@ -281,6 +283,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
export const cpdIconVideoCall = "icons/video-call.svg";
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
+export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
export const cpdIconVoiceCall = "icons/voice-call.svg";
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
export const cpdIconVolumeOff = "icons/volume-off.svg";
diff --git a/icons/$icons.json b/icons/$icons.json
index cd15dffa..d765e81d 100644
--- a/icons/$icons.json
+++ b/icons/$icons.json
@@ -1 +1 @@
-{"icon":{"admin":{"value":"icons/admin.svg","type":"icon"},"arrow-down":{"value":"icons/arrow-down.svg","type":"icon"},"arrow-left":{"value":"icons/arrow-left.svg","type":"icon"},"arrow-right":{"value":"icons/arrow-right.svg","type":"icon"},"arrow-up-right":{"value":"icons/arrow-up-right.svg","type":"icon"},"arrow-up":{"value":"icons/arrow-up.svg","type":"icon"},"ask-to-join-solid":{"value":"icons/ask-to-join-solid.svg","type":"icon"},"ask-to-join":{"value":"icons/ask-to-join.svg","type":"icon"},"attachment":{"value":"icons/attachment.svg","type":"icon"},"audio":{"value":"icons/audio.svg","type":"icon"},"block":{"value":"icons/block.svg","type":"icon"},"bold":{"value":"icons/bold.svg","type":"icon"},"calendar":{"value":"icons/calendar.svg","type":"icon"},"chart":{"value":"icons/chart.svg","type":"icon"},"chat-new":{"value":"icons/chat-new.svg","type":"icon"},"chat-problem":{"value":"icons/chat-problem.svg","type":"icon"},"chat-solid":{"value":"icons/chat-solid.svg","type":"icon"},"chat":{"value":"icons/chat.svg","type":"icon"},"check-circle-solid":{"value":"icons/check-circle-solid.svg","type":"icon"},"check-circle":{"value":"icons/check-circle.svg","type":"icon"},"check":{"value":"icons/check.svg","type":"icon"},"chevron-down":{"value":"icons/chevron-down.svg","type":"icon"},"chevron-left":{"value":"icons/chevron-left.svg","type":"icon"},"chevron-right":{"value":"icons/chevron-right.svg","type":"icon"},"chevron-up-down":{"value":"icons/chevron-up-down.svg","type":"icon"},"chevron-up":{"value":"icons/chevron-up.svg","type":"icon"},"circle":{"value":"icons/circle.svg","type":"icon"},"close":{"value":"icons/close.svg","type":"icon"},"cloud-solid":{"value":"icons/cloud-solid.svg","type":"icon"},"cloud":{"value":"icons/cloud.svg","type":"icon"},"code":{"value":"icons/code.svg","type":"icon"},"collapse":{"value":"icons/collapse.svg","type":"icon"},"company":{"value":"icons/company.svg","type":"icon"},"compose":{"value":"icons/compose.svg","type":"icon"},"computer":{"value":"icons/computer.svg","type":"icon"},"copy":{"value":"icons/copy.svg","type":"icon"},"dark-mode":{"value":"icons/dark-mode.svg","type":"icon"},"delete":{"value":"icons/delete.svg","type":"icon"},"devices":{"value":"icons/devices.svg","type":"icon"},"document":{"value":"icons/document.svg","type":"icon"},"download":{"value":"icons/download.svg","type":"icon"},"drag-grid":{"value":"icons/drag-grid.svg","type":"icon"},"drag-list":{"value":"icons/drag-list.svg","type":"icon"},"edit-solid":{"value":"icons/edit-solid.svg","type":"icon"},"edit":{"value":"icons/edit.svg","type":"icon"},"email-solid":{"value":"icons/email-solid.svg","type":"icon"},"email":{"value":"icons/email.svg","type":"icon"},"end-call":{"value":"icons/end-call.svg","type":"icon"},"error":{"value":"icons/error.svg","type":"icon"},"expand":{"value":"icons/expand.svg","type":"icon"},"explore":{"value":"icons/explore.svg","type":"icon"},"export-archive":{"value":"icons/export-archive.svg","type":"icon"},"extensions-solid":{"value":"icons/extensions-solid.svg","type":"icon"},"extensions":{"value":"icons/extensions.svg","type":"icon"},"favourite-solid":{"value":"icons/favourite-solid.svg","type":"icon"},"favourite":{"value":"icons/favourite.svg","type":"icon"},"file-error":{"value":"icons/file-error.svg","type":"icon"},"files":{"value":"icons/files.svg","type":"icon"},"filter":{"value":"icons/filter.svg","type":"icon"},"forward":{"value":"icons/forward.svg","type":"icon"},"grid":{"value":"icons/grid.svg","type":"icon"},"group":{"value":"icons/group.svg","type":"icon"},"help-solid":{"value":"icons/help-solid.svg","type":"icon"},"help":{"value":"icons/help.svg","type":"icon"},"history":{"value":"icons/history.svg","type":"icon"},"home-solid":{"value":"icons/home-solid.svg","type":"icon"},"home":{"value":"icons/home.svg","type":"icon"},"host":{"value":"icons/host.svg","type":"icon"},"image-error":{"value":"icons/image-error.svg","type":"icon"},"image":{"value":"icons/image.svg","type":"icon"},"indent-decrease":{"value":"icons/indent-decrease.svg","type":"icon"},"indent-increase":{"value":"icons/indent-increase.svg","type":"icon"},"info-solid":{"value":"icons/info-solid.svg","type":"icon"},"info":{"value":"icons/info.svg","type":"icon"},"inline-code":{"value":"icons/inline-code.svg","type":"icon"},"italic":{"value":"icons/italic.svg","type":"icon"},"key-off-solid":{"value":"icons/key-off-solid.svg","type":"icon"},"key-off":{"value":"icons/key-off.svg","type":"icon"},"key-solid":{"value":"icons/key-solid.svg","type":"icon"},"key":{"value":"icons/key.svg","type":"icon"},"keyboard":{"value":"icons/keyboard.svg","type":"icon"},"labs":{"value":"icons/labs.svg","type":"icon"},"leave":{"value":"icons/leave.svg","type":"icon"},"link":{"value":"icons/link.svg","type":"icon"},"linux":{"value":"icons/linux.svg","type":"icon"},"list-bulleted":{"value":"icons/list-bulleted.svg","type":"icon"},"list-numbered":{"value":"icons/list-numbered.svg","type":"icon"},"location-navigator-centred":{"value":"icons/location-navigator-centred.svg","type":"icon"},"location-navigator":{"value":"icons/location-navigator.svg","type":"icon"},"location-pin-solid":{"value":"icons/location-pin-solid.svg","type":"icon"},"location-pin":{"value":"icons/location-pin.svg","type":"icon"},"lock-off":{"value":"icons/lock-off.svg","type":"icon"},"lock-solid":{"value":"icons/lock-solid.svg","type":"icon"},"lock":{"value":"icons/lock.svg","type":"icon"},"mac":{"value":"icons/mac.svg","type":"icon"},"mark-as-read":{"value":"icons/mark-as-read.svg","type":"icon"},"mark-as-unread":{"value":"icons/mark-as-unread.svg","type":"icon"},"mark-threads-as-read":{"value":"icons/mark-threads-as-read.svg","type":"icon"},"marker-read-receipts":{"value":"icons/marker-read-receipts.svg","type":"icon"},"mention":{"value":"icons/mention.svg","type":"icon"},"menu":{"value":"icons/menu.svg","type":"icon"},"mic-off-solid":{"value":"icons/mic-off-solid.svg","type":"icon"},"mic-off":{"value":"icons/mic-off.svg","type":"icon"},"mic-on-solid":{"value":"icons/mic-on-solid.svg","type":"icon"},"mic-on":{"value":"icons/mic-on.svg","type":"icon"},"minus":{"value":"icons/minus.svg","type":"icon"},"mobile":{"value":"icons/mobile.svg","type":"icon"},"notifications-off-solid":{"value":"icons/notifications-off-solid.svg","type":"icon"},"notifications-off":{"value":"icons/notifications-off.svg","type":"icon"},"notifications-solid":{"value":"icons/notifications-solid.svg","type":"icon"},"notifications":{"value":"icons/notifications.svg","type":"icon"},"offline":{"value":"icons/offline.svg","type":"icon"},"overflow-horizontal":{"value":"icons/overflow-horizontal.svg","type":"icon"},"overflow-vertical":{"value":"icons/overflow-vertical.svg","type":"icon"},"pause-solid":{"value":"icons/pause-solid.svg","type":"icon"},"pause":{"value":"icons/pause.svg","type":"icon"},"pin-solid":{"value":"icons/pin-solid.svg","type":"icon"},"pin":{"value":"icons/pin.svg","type":"icon"},"play-solid":{"value":"icons/play-solid.svg","type":"icon"},"play":{"value":"icons/play.svg","type":"icon"},"plus":{"value":"icons/plus.svg","type":"icon"},"polls-end":{"value":"icons/polls-end.svg","type":"icon"},"polls":{"value":"icons/polls.svg","type":"icon"},"pop-out":{"value":"icons/pop-out.svg","type":"icon"},"preferences":{"value":"icons/preferences.svg","type":"icon"},"presence-outline-8x8":{"value":"icons/presence-outline-8x8.svg","type":"icon"},"presence-solid-8x8":{"value":"icons/presence-solid-8x8.svg","type":"icon"},"presence-strikethrough-8x8":{"value":"icons/presence-strikethrough-8x8.svg","type":"icon"},"public":{"value":"icons/public.svg","type":"icon"},"qr-code":{"value":"icons/qr-code.svg","type":"icon"},"quote":{"value":"icons/quote.svg","type":"icon"},"raised-hand-solid":{"value":"icons/raised-hand-solid.svg","type":"icon"},"reaction-add":{"value":"icons/reaction-add.svg","type":"icon"},"reaction-solid":{"value":"icons/reaction-solid.svg","type":"icon"},"reaction":{"value":"icons/reaction.svg","type":"icon"},"reply":{"value":"icons/reply.svg","type":"icon"},"restart":{"value":"icons/restart.svg","type":"icon"},"room":{"value":"icons/room.svg","type":"icon"},"search":{"value":"icons/search.svg","type":"icon"},"send-solid":{"value":"icons/send-solid.svg","type":"icon"},"send":{"value":"icons/send.svg","type":"icon"},"settings-solid":{"value":"icons/settings-solid.svg","type":"icon"},"settings":{"value":"icons/settings.svg","type":"icon"},"share-android":{"value":"icons/share-android.svg","type":"icon"},"share-ios":{"value":"icons/share-ios.svg","type":"icon"},"share-screen-solid":{"value":"icons/share-screen-solid.svg","type":"icon"},"share-screen":{"value":"icons/share-screen.svg","type":"icon"},"share":{"value":"icons/share.svg","type":"icon"},"sidebar":{"value":"icons/sidebar.svg","type":"icon"},"sign-out":{"value":"icons/sign-out.svg","type":"icon"},"spinner":{"value":"icons/spinner.svg","type":"icon"},"spotlight":{"value":"icons/spotlight.svg","type":"icon"},"strikethrough":{"value":"icons/strikethrough.svg","type":"icon"},"switch-camera-solid":{"value":"icons/switch-camera-solid.svg","type":"icon"},"take-photo-solid":{"value":"icons/take-photo-solid.svg","type":"icon"},"take-photo":{"value":"icons/take-photo.svg","type":"icon"},"text-formatting":{"value":"icons/text-formatting.svg","type":"icon"},"threads-solid":{"value":"icons/threads-solid.svg","type":"icon"},"threads":{"value":"icons/threads.svg","type":"icon"},"time":{"value":"icons/time.svg","type":"icon"},"underline":{"value":"icons/underline.svg","type":"icon"},"unknown-solid":{"value":"icons/unknown-solid.svg","type":"icon"},"unknown":{"value":"icons/unknown.svg","type":"icon"},"unpin":{"value":"icons/unpin.svg","type":"icon"},"user-add-solid":{"value":"icons/user-add-solid.svg","type":"icon"},"user-add":{"value":"icons/user-add.svg","type":"icon"},"user-profile-solid":{"value":"icons/user-profile-solid.svg","type":"icon"},"user-profile":{"value":"icons/user-profile.svg","type":"icon"},"user-solid":{"value":"icons/user-solid.svg","type":"icon"},"user":{"value":"icons/user.svg","type":"icon"},"verified":{"value":"icons/verified.svg","type":"icon"},"video-call-declined-solid":{"value":"icons/video-call-declined-solid.svg","type":"icon"},"video-call-missed-solid":{"value":"icons/video-call-missed-solid.svg","type":"icon"},"video-call-off-solid":{"value":"icons/video-call-off-solid.svg","type":"icon"},"video-call-off":{"value":"icons/video-call-off.svg","type":"icon"},"video-call-solid":{"value":"icons/video-call-solid.svg","type":"icon"},"video-call":{"value":"icons/video-call.svg","type":"icon"},"visibility-off":{"value":"icons/visibility-off.svg","type":"icon"},"visibility-on":{"value":"icons/visibility-on.svg","type":"icon"},"voice-call":{"value":"icons/voice-call.svg","type":"icon"},"volume-off-solid":{"value":"icons/volume-off-solid.svg","type":"icon"},"volume-off":{"value":"icons/volume-off.svg","type":"icon"},"volume-on-solid":{"value":"icons/volume-on-solid.svg","type":"icon"},"volume-on":{"value":"icons/volume-on.svg","type":"icon"},"warning":{"value":"icons/warning.svg","type":"icon"},"web-browser":{"value":"icons/web-browser.svg","type":"icon"},"windows":{"value":"icons/windows.svg","type":"icon"}}}
\ No newline at end of file
+{"icon":{"admin":{"value":"icons/admin.svg","type":"icon"},"arrow-down":{"value":"icons/arrow-down.svg","type":"icon"},"arrow-left":{"value":"icons/arrow-left.svg","type":"icon"},"arrow-right":{"value":"icons/arrow-right.svg","type":"icon"},"arrow-up-right":{"value":"icons/arrow-up-right.svg","type":"icon"},"arrow-up":{"value":"icons/arrow-up.svg","type":"icon"},"ask-to-join-solid":{"value":"icons/ask-to-join-solid.svg","type":"icon"},"ask-to-join":{"value":"icons/ask-to-join.svg","type":"icon"},"attachment":{"value":"icons/attachment.svg","type":"icon"},"audio":{"value":"icons/audio.svg","type":"icon"},"block":{"value":"icons/block.svg","type":"icon"},"bold":{"value":"icons/bold.svg","type":"icon"},"calendar":{"value":"icons/calendar.svg","type":"icon"},"chart":{"value":"icons/chart.svg","type":"icon"},"chat-new":{"value":"icons/chat-new.svg","type":"icon"},"chat-problem":{"value":"icons/chat-problem.svg","type":"icon"},"chat-solid":{"value":"icons/chat-solid.svg","type":"icon"},"chat":{"value":"icons/chat.svg","type":"icon"},"check-circle-solid":{"value":"icons/check-circle-solid.svg","type":"icon"},"check-circle":{"value":"icons/check-circle.svg","type":"icon"},"check":{"value":"icons/check.svg","type":"icon"},"chevron-down":{"value":"icons/chevron-down.svg","type":"icon"},"chevron-left":{"value":"icons/chevron-left.svg","type":"icon"},"chevron-right":{"value":"icons/chevron-right.svg","type":"icon"},"chevron-up-down":{"value":"icons/chevron-up-down.svg","type":"icon"},"chevron-up":{"value":"icons/chevron-up.svg","type":"icon"},"circle":{"value":"icons/circle.svg","type":"icon"},"close":{"value":"icons/close.svg","type":"icon"},"cloud-solid":{"value":"icons/cloud-solid.svg","type":"icon"},"cloud":{"value":"icons/cloud.svg","type":"icon"},"code":{"value":"icons/code.svg","type":"icon"},"collapse":{"value":"icons/collapse.svg","type":"icon"},"company":{"value":"icons/company.svg","type":"icon"},"compose":{"value":"icons/compose.svg","type":"icon"},"computer":{"value":"icons/computer.svg","type":"icon"},"copy":{"value":"icons/copy.svg","type":"icon"},"dark-mode":{"value":"icons/dark-mode.svg","type":"icon"},"delete":{"value":"icons/delete.svg","type":"icon"},"devices":{"value":"icons/devices.svg","type":"icon"},"document":{"value":"icons/document.svg","type":"icon"},"download":{"value":"icons/download.svg","type":"icon"},"drag-grid":{"value":"icons/drag-grid.svg","type":"icon"},"drag-list":{"value":"icons/drag-list.svg","type":"icon"},"edit-solid":{"value":"icons/edit-solid.svg","type":"icon"},"edit":{"value":"icons/edit.svg","type":"icon"},"email-solid":{"value":"icons/email-solid.svg","type":"icon"},"email":{"value":"icons/email.svg","type":"icon"},"end-call":{"value":"icons/end-call.svg","type":"icon"},"error":{"value":"icons/error.svg","type":"icon"},"expand":{"value":"icons/expand.svg","type":"icon"},"explore":{"value":"icons/explore.svg","type":"icon"},"export-archive":{"value":"icons/export-archive.svg","type":"icon"},"extensions-solid":{"value":"icons/extensions-solid.svg","type":"icon"},"extensions":{"value":"icons/extensions.svg","type":"icon"},"favourite-solid":{"value":"icons/favourite-solid.svg","type":"icon"},"favourite":{"value":"icons/favourite.svg","type":"icon"},"file-error":{"value":"icons/file-error.svg","type":"icon"},"files":{"value":"icons/files.svg","type":"icon"},"filter":{"value":"icons/filter.svg","type":"icon"},"forward":{"value":"icons/forward.svg","type":"icon"},"grid":{"value":"icons/grid.svg","type":"icon"},"group":{"value":"icons/group.svg","type":"icon"},"help-solid":{"value":"icons/help-solid.svg","type":"icon"},"help":{"value":"icons/help.svg","type":"icon"},"history":{"value":"icons/history.svg","type":"icon"},"home-solid":{"value":"icons/home-solid.svg","type":"icon"},"home":{"value":"icons/home.svg","type":"icon"},"host":{"value":"icons/host.svg","type":"icon"},"image-error":{"value":"icons/image-error.svg","type":"icon"},"image":{"value":"icons/image.svg","type":"icon"},"indent-decrease":{"value":"icons/indent-decrease.svg","type":"icon"},"indent-increase":{"value":"icons/indent-increase.svg","type":"icon"},"info-solid":{"value":"icons/info-solid.svg","type":"icon"},"info":{"value":"icons/info.svg","type":"icon"},"inline-code":{"value":"icons/inline-code.svg","type":"icon"},"italic":{"value":"icons/italic.svg","type":"icon"},"key-off-solid":{"value":"icons/key-off-solid.svg","type":"icon"},"key-off":{"value":"icons/key-off.svg","type":"icon"},"key-solid":{"value":"icons/key-solid.svg","type":"icon"},"key":{"value":"icons/key.svg","type":"icon"},"keyboard":{"value":"icons/keyboard.svg","type":"icon"},"labs":{"value":"icons/labs.svg","type":"icon"},"leave":{"value":"icons/leave.svg","type":"icon"},"link":{"value":"icons/link.svg","type":"icon"},"linux":{"value":"icons/linux.svg","type":"icon"},"list-bulleted":{"value":"icons/list-bulleted.svg","type":"icon"},"list-numbered":{"value":"icons/list-numbered.svg","type":"icon"},"list-view":{"value":"icons/list-view.svg","type":"icon"},"location-navigator-centred":{"value":"icons/location-navigator-centred.svg","type":"icon"},"location-navigator":{"value":"icons/location-navigator.svg","type":"icon"},"location-pin-solid":{"value":"icons/location-pin-solid.svg","type":"icon"},"location-pin":{"value":"icons/location-pin.svg","type":"icon"},"lock-off":{"value":"icons/lock-off.svg","type":"icon"},"lock-solid":{"value":"icons/lock-solid.svg","type":"icon"},"lock":{"value":"icons/lock.svg","type":"icon"},"mac":{"value":"icons/mac.svg","type":"icon"},"mark-as-read":{"value":"icons/mark-as-read.svg","type":"icon"},"mark-as-unread":{"value":"icons/mark-as-unread.svg","type":"icon"},"mark-threads-as-read":{"value":"icons/mark-threads-as-read.svg","type":"icon"},"marker-read-receipts":{"value":"icons/marker-read-receipts.svg","type":"icon"},"mention":{"value":"icons/mention.svg","type":"icon"},"menu":{"value":"icons/menu.svg","type":"icon"},"mic-off-solid":{"value":"icons/mic-off-solid.svg","type":"icon"},"mic-off":{"value":"icons/mic-off.svg","type":"icon"},"mic-on-solid":{"value":"icons/mic-on-solid.svg","type":"icon"},"mic-on":{"value":"icons/mic-on.svg","type":"icon"},"minus":{"value":"icons/minus.svg","type":"icon"},"mobile":{"value":"icons/mobile.svg","type":"icon"},"notifications-off-solid":{"value":"icons/notifications-off-solid.svg","type":"icon"},"notifications-off":{"value":"icons/notifications-off.svg","type":"icon"},"notifications-solid":{"value":"icons/notifications-solid.svg","type":"icon"},"notifications":{"value":"icons/notifications.svg","type":"icon"},"offline":{"value":"icons/offline.svg","type":"icon"},"overflow-horizontal":{"value":"icons/overflow-horizontal.svg","type":"icon"},"overflow-vertical":{"value":"icons/overflow-vertical.svg","type":"icon"},"pause-solid":{"value":"icons/pause-solid.svg","type":"icon"},"pause":{"value":"icons/pause.svg","type":"icon"},"pin-solid":{"value":"icons/pin-solid.svg","type":"icon"},"pin":{"value":"icons/pin.svg","type":"icon"},"play-solid":{"value":"icons/play-solid.svg","type":"icon"},"play":{"value":"icons/play.svg","type":"icon"},"plus":{"value":"icons/plus.svg","type":"icon"},"polls-end":{"value":"icons/polls-end.svg","type":"icon"},"polls":{"value":"icons/polls.svg","type":"icon"},"pop-out":{"value":"icons/pop-out.svg","type":"icon"},"preferences":{"value":"icons/preferences.svg","type":"icon"},"presence-outline-8x8":{"value":"icons/presence-outline-8x8.svg","type":"icon"},"presence-solid-8x8":{"value":"icons/presence-solid-8x8.svg","type":"icon"},"presence-strikethrough-8x8":{"value":"icons/presence-strikethrough-8x8.svg","type":"icon"},"public":{"value":"icons/public.svg","type":"icon"},"qr-code":{"value":"icons/qr-code.svg","type":"icon"},"quote":{"value":"icons/quote.svg","type":"icon"},"raised-hand-solid":{"value":"icons/raised-hand-solid.svg","type":"icon"},"reaction-add":{"value":"icons/reaction-add.svg","type":"icon"},"reaction-solid":{"value":"icons/reaction-solid.svg","type":"icon"},"reaction":{"value":"icons/reaction.svg","type":"icon"},"reply":{"value":"icons/reply.svg","type":"icon"},"restart":{"value":"icons/restart.svg","type":"icon"},"room":{"value":"icons/room.svg","type":"icon"},"search":{"value":"icons/search.svg","type":"icon"},"send-solid":{"value":"icons/send-solid.svg","type":"icon"},"send":{"value":"icons/send.svg","type":"icon"},"settings-solid":{"value":"icons/settings-solid.svg","type":"icon"},"settings":{"value":"icons/settings.svg","type":"icon"},"share-android":{"value":"icons/share-android.svg","type":"icon"},"share-ios":{"value":"icons/share-ios.svg","type":"icon"},"share-screen-solid":{"value":"icons/share-screen-solid.svg","type":"icon"},"share-screen":{"value":"icons/share-screen.svg","type":"icon"},"share":{"value":"icons/share.svg","type":"icon"},"sidebar":{"value":"icons/sidebar.svg","type":"icon"},"sign-out":{"value":"icons/sign-out.svg","type":"icon"},"spinner":{"value":"icons/spinner.svg","type":"icon"},"spotlight-view":{"value":"icons/spotlight-view.svg","type":"icon"},"spotlight":{"value":"icons/spotlight.svg","type":"icon"},"strikethrough":{"value":"icons/strikethrough.svg","type":"icon"},"switch-camera-solid":{"value":"icons/switch-camera-solid.svg","type":"icon"},"take-photo-solid":{"value":"icons/take-photo-solid.svg","type":"icon"},"take-photo":{"value":"icons/take-photo.svg","type":"icon"},"text-formatting":{"value":"icons/text-formatting.svg","type":"icon"},"threads-solid":{"value":"icons/threads-solid.svg","type":"icon"},"threads":{"value":"icons/threads.svg","type":"icon"},"time":{"value":"icons/time.svg","type":"icon"},"underline":{"value":"icons/underline.svg","type":"icon"},"unknown-solid":{"value":"icons/unknown-solid.svg","type":"icon"},"unknown":{"value":"icons/unknown.svg","type":"icon"},"unpin":{"value":"icons/unpin.svg","type":"icon"},"user-add-solid":{"value":"icons/user-add-solid.svg","type":"icon"},"user-add":{"value":"icons/user-add.svg","type":"icon"},"user-profile-solid":{"value":"icons/user-profile-solid.svg","type":"icon"},"user-profile":{"value":"icons/user-profile.svg","type":"icon"},"user-solid":{"value":"icons/user-solid.svg","type":"icon"},"user":{"value":"icons/user.svg","type":"icon"},"verified":{"value":"icons/verified.svg","type":"icon"},"video-call-declined-solid":{"value":"icons/video-call-declined-solid.svg","type":"icon"},"video-call-missed-solid":{"value":"icons/video-call-missed-solid.svg","type":"icon"},"video-call-off-solid":{"value":"icons/video-call-off-solid.svg","type":"icon"},"video-call-off":{"value":"icons/video-call-off.svg","type":"icon"},"video-call-solid":{"value":"icons/video-call-solid.svg","type":"icon"},"video-call":{"value":"icons/video-call.svg","type":"icon"},"visibility-off":{"value":"icons/visibility-off.svg","type":"icon"},"visibility-on":{"value":"icons/visibility-on.svg","type":"icon"},"voice-call-solid":{"value":"icons/voice-call-solid.svg","type":"icon"},"voice-call":{"value":"icons/voice-call.svg","type":"icon"},"volume-off-solid":{"value":"icons/volume-off-solid.svg","type":"icon"},"volume-off":{"value":"icons/volume-off.svg","type":"icon"},"volume-on-solid":{"value":"icons/volume-on-solid.svg","type":"icon"},"volume-on":{"value":"icons/volume-on.svg","type":"icon"},"warning":{"value":"icons/warning.svg","type":"icon"},"web-browser":{"value":"icons/web-browser.svg","type":"icon"},"windows":{"value":"icons/windows.svg","type":"icon"}}}
\ No newline at end of file
diff --git a/icons/list-view.svg b/icons/list-view.svg
new file mode 100644
index 00000000..ace93d65
--- /dev/null
+++ b/icons/list-view.svg
@@ -0,0 +1,5 @@
+
diff --git a/icons/spotlight-view.svg b/icons/spotlight-view.svg
new file mode 100644
index 00000000..b949f0cd
--- /dev/null
+++ b/icons/spotlight-view.svg
@@ -0,0 +1,3 @@
+
diff --git a/icons/voice-call-solid.svg b/icons/voice-call-solid.svg
new file mode 100644
index 00000000..e7802e23
--- /dev/null
+++ b/icons/voice-call-solid.svg
@@ -0,0 +1,3 @@
+
diff --git a/icons/voice-call.svg b/icons/voice-call.svg
index e7802e23..dcf94dbe 100644
--- a/icons/voice-call.svg
+++ b/icons/voice-call.svg
@@ -1,3 +1,10 @@