@vector-im/compound-design-tokens 2.1.3 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/web/icons/download-ios.cjs +21 -0
- package/assets/web/icons/download-ios.d.ts +11 -0
- package/assets/web/icons/download-ios.js +21 -0
- package/assets/web/icons/index.cjs +4 -0
- package/assets/web/icons/index.d.ts +4 -0
- package/assets/web/icons/index.js +4 -0
- package/assets/web/icons/list-view.cjs +25 -0
- package/assets/web/icons/list-view.d.ts +11 -0
- package/assets/web/icons/list-view.js +25 -0
- package/assets/web/icons/spotlight-view.cjs +21 -0
- package/assets/web/icons/spotlight-view.d.ts +11 -0
- package/assets/web/icons/spotlight-view.js +21 -0
- package/assets/web/icons/voice-call-solid.cjs +19 -0
- package/assets/web/icons/voice-call-solid.d.ts +11 -0
- package/assets/web/icons/voice-call-solid.js +19 -0
- package/assets/web/icons/voice-call.cjs +16 -4
- package/assets/web/icons/voice-call.js +17 -5
- package/assets/web/js/cpdDark.d.ts +4 -0
- package/assets/web/js/cpdDark.js +4 -0
- package/assets/web/js/cpdDarkHc.d.ts +4 -0
- package/assets/web/js/cpdDarkHc.js +4 -0
- package/assets/web/js/cpdLight.d.ts +4 -0
- package/assets/web/js/cpdLight.js +4 -0
- package/assets/web/js/cpdLightHc.d.ts +4 -0
- package/assets/web/js/cpdLightHc.js +4 -0
- package/icons/$icons.json +1 -1
- package/icons/download-ios.svg +4 -0
- package/icons/list-view.svg +5 -0
- package/icons/spotlight-view.svg +3 -0
- package/icons/voice-call-solid.svg +3 -0
- package/icons/voice-call.svg +8 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function DownloadIosIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
13
|
+
d: "M12.763 17.646a1 1 0 0 1-1.526 0l-2.5-2.955a1 1 0 1 1 1.526-1.292l.737.871V4a1 1 0 1 1 2 0v10.27l.737-.87a1 1 0 0 1 1.526 1.291l-2.5 2.955Z"
|
|
14
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
d: "M6 20V10h2a1 1 0 0 0 0-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h-2a1 1 0 1 0 0 2h2v10H6Z"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
DownloadIosIcon.displayName = "DownloadIosIcon";
|
|
21
|
+
module.exports = React.forwardRef(DownloadIosIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* download-ios.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const DownloadIosIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default DownloadIosIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function DownloadIosIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
13
|
+
d: "M12.763 17.646a1 1 0 0 1-1.526 0l-2.5-2.955a1 1 0 1 1 1.526-1.292l.737.871V4a1 1 0 1 1 2 0v10.27l.737-.87a1 1 0 0 1 1.526 1.291l-2.5 2.955Z"
|
|
14
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
15
|
+
d: "M6 20V10h2a1 1 0 0 0 0-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h-2a1 1 0 1 0 0 2h2v10H6Z"
|
|
16
|
+
})]
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
DownloadIosIcon.displayName = "DownloadIosIcon";
|
|
21
|
+
export default forwardRef(DownloadIosIcon);
|
|
@@ -39,6 +39,7 @@ module.exports = {
|
|
|
39
39
|
DeleteIcon: require("./delete.cjs"),
|
|
40
40
|
DevicesIcon: require("./devices.cjs"),
|
|
41
41
|
DocumentIcon: require("./document.cjs"),
|
|
42
|
+
DownloadIosIcon: require("./download-ios.cjs"),
|
|
42
43
|
DownloadIcon: require("./download.cjs"),
|
|
43
44
|
DragGridIcon: require("./drag-grid.cjs"),
|
|
44
45
|
DragListIcon: require("./drag-list.cjs"),
|
|
@@ -86,6 +87,7 @@ module.exports = {
|
|
|
86
87
|
LinuxIcon: require("./linux.cjs"),
|
|
87
88
|
ListBulletedIcon: require("./list-bulleted.cjs"),
|
|
88
89
|
ListNumberedIcon: require("./list-numbered.cjs"),
|
|
90
|
+
ListViewIcon: require("./list-view.cjs"),
|
|
89
91
|
LocationNavigatorCentredIcon: require("./location-navigator-centred.cjs"),
|
|
90
92
|
LocationNavigatorIcon: require("./location-navigator.cjs"),
|
|
91
93
|
LocationPinSolidIcon: require("./location-pin-solid.cjs"),
|
|
@@ -150,6 +152,7 @@ module.exports = {
|
|
|
150
152
|
SidebarIcon: require("./sidebar.cjs"),
|
|
151
153
|
SignOutIcon: require("./sign-out.cjs"),
|
|
152
154
|
SpinnerIcon: require("./spinner.cjs"),
|
|
155
|
+
SpotlightViewIcon: require("./spotlight-view.cjs"),
|
|
153
156
|
SpotlightIcon: require("./spotlight.cjs"),
|
|
154
157
|
StrikethroughIcon: require("./strikethrough.cjs"),
|
|
155
158
|
SwitchCameraSolidIcon: require("./switch-camera-solid.cjs"),
|
|
@@ -178,6 +181,7 @@ module.exports = {
|
|
|
178
181
|
VideoCallIcon: require("./video-call.cjs"),
|
|
179
182
|
VisibilityOffIcon: require("./visibility-off.cjs"),
|
|
180
183
|
VisibilityOnIcon: require("./visibility-on.cjs"),
|
|
184
|
+
VoiceCallSolidIcon: require("./voice-call-solid.cjs"),
|
|
181
185
|
VoiceCallIcon: require("./voice-call.cjs"),
|
|
182
186
|
VolumeOffSolidIcon: require("./volume-off-solid.cjs"),
|
|
183
187
|
VolumeOffIcon: require("./volume-off.cjs"),
|
|
@@ -38,6 +38,7 @@ export { default as DarkModeIcon } from "./dark-mode.js";
|
|
|
38
38
|
export { default as DeleteIcon } from "./delete.js";
|
|
39
39
|
export { default as DevicesIcon } from "./devices.js";
|
|
40
40
|
export { default as DocumentIcon } from "./document.js";
|
|
41
|
+
export { default as DownloadIosIcon } from "./download-ios.js";
|
|
41
42
|
export { default as DownloadIcon } from "./download.js";
|
|
42
43
|
export { default as DragGridIcon } from "./drag-grid.js";
|
|
43
44
|
export { default as DragListIcon } from "./drag-list.js";
|
|
@@ -85,6 +86,7 @@ export { default as LinkIcon } from "./link.js";
|
|
|
85
86
|
export { default as LinuxIcon } from "./linux.js";
|
|
86
87
|
export { default as ListBulletedIcon } from "./list-bulleted.js";
|
|
87
88
|
export { default as ListNumberedIcon } from "./list-numbered.js";
|
|
89
|
+
export { default as ListViewIcon } from "./list-view.js";
|
|
88
90
|
export { default as LocationNavigatorCentredIcon } from "./location-navigator-centred.js";
|
|
89
91
|
export { default as LocationNavigatorIcon } from "./location-navigator.js";
|
|
90
92
|
export { default as LocationPinSolidIcon } from "./location-pin-solid.js";
|
|
@@ -149,6 +151,7 @@ export { default as ShareIcon } from "./share.js";
|
|
|
149
151
|
export { default as SidebarIcon } from "./sidebar.js";
|
|
150
152
|
export { default as SignOutIcon } from "./sign-out.js";
|
|
151
153
|
export { default as SpinnerIcon } from "./spinner.js";
|
|
154
|
+
export { default as SpotlightViewIcon } from "./spotlight-view.js";
|
|
152
155
|
export { default as SpotlightIcon } from "./spotlight.js";
|
|
153
156
|
export { default as StrikethroughIcon } from "./strikethrough.js";
|
|
154
157
|
export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
|
|
@@ -177,6 +180,7 @@ export { default as VideoCallSolidIcon } from "./video-call-solid.js";
|
|
|
177
180
|
export { default as VideoCallIcon } from "./video-call.js";
|
|
178
181
|
export { default as VisibilityOffIcon } from "./visibility-off.js";
|
|
179
182
|
export { default as VisibilityOnIcon } from "./visibility-on.js";
|
|
183
|
+
export { default as VoiceCallSolidIcon } from "./voice-call-solid.js";
|
|
180
184
|
export { default as VoiceCallIcon } from "./voice-call.js";
|
|
181
185
|
export { default as VolumeOffSolidIcon } from "./volume-off-solid.js";
|
|
182
186
|
export { default as VolumeOffIcon } from "./volume-off.js";
|
|
@@ -38,6 +38,7 @@ export { default as DarkModeIcon } from "./dark-mode.js";
|
|
|
38
38
|
export { default as DeleteIcon } from "./delete.js";
|
|
39
39
|
export { default as DevicesIcon } from "./devices.js";
|
|
40
40
|
export { default as DocumentIcon } from "./document.js";
|
|
41
|
+
export { default as DownloadIosIcon } from "./download-ios.js";
|
|
41
42
|
export { default as DownloadIcon } from "./download.js";
|
|
42
43
|
export { default as DragGridIcon } from "./drag-grid.js";
|
|
43
44
|
export { default as DragListIcon } from "./drag-list.js";
|
|
@@ -85,6 +86,7 @@ export { default as LinkIcon } from "./link.js";
|
|
|
85
86
|
export { default as LinuxIcon } from "./linux.js";
|
|
86
87
|
export { default as ListBulletedIcon } from "./list-bulleted.js";
|
|
87
88
|
export { default as ListNumberedIcon } from "./list-numbered.js";
|
|
89
|
+
export { default as ListViewIcon } from "./list-view.js";
|
|
88
90
|
export { default as LocationNavigatorCentredIcon } from "./location-navigator-centred.js";
|
|
89
91
|
export { default as LocationNavigatorIcon } from "./location-navigator.js";
|
|
90
92
|
export { default as LocationPinSolidIcon } from "./location-pin-solid.js";
|
|
@@ -149,6 +151,7 @@ export { default as ShareIcon } from "./share.js";
|
|
|
149
151
|
export { default as SidebarIcon } from "./sidebar.js";
|
|
150
152
|
export { default as SignOutIcon } from "./sign-out.js";
|
|
151
153
|
export { default as SpinnerIcon } from "./spinner.js";
|
|
154
|
+
export { default as SpotlightViewIcon } from "./spotlight-view.js";
|
|
152
155
|
export { default as SpotlightIcon } from "./spotlight.js";
|
|
153
156
|
export { default as StrikethroughIcon } from "./strikethrough.js";
|
|
154
157
|
export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
|
|
@@ -177,6 +180,7 @@ export { default as VideoCallSolidIcon } from "./video-call-solid.js";
|
|
|
177
180
|
export { default as VideoCallIcon } from "./video-call.js";
|
|
178
181
|
export { default as VisibilityOffIcon } from "./visibility-off.js";
|
|
179
182
|
export { default as VisibilityOnIcon } from "./visibility-on.js";
|
|
183
|
+
export { default as VoiceCallSolidIcon } from "./voice-call-solid.js";
|
|
180
184
|
export { default as VoiceCallIcon } from "./voice-call.js";
|
|
181
185
|
export { default as VolumeOffSolidIcon } from "./volume-off-solid.js";
|
|
182
186
|
export { default as VolumeOffIcon } from "./volume-off.js";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function ListViewIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
13
|
+
d: "M17 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
|
|
14
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
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",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
19
|
+
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"
|
|
20
|
+
})]
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
ListViewIcon.displayName = "ListViewIcon";
|
|
25
|
+
module.exports = React.forwardRef(ListViewIcon);
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function ListViewIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
13
|
+
d: "M17 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"
|
|
14
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
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",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
19
|
+
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"
|
|
20
|
+
})]
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
ListViewIcon.displayName = "ListViewIcon";
|
|
25
|
+
export default forwardRef(ListViewIcon);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function SpotlightViewIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
13
|
+
fillRule: "evenodd",
|
|
14
|
+
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",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
SpotlightViewIcon.displayName = "SpotlightViewIcon";
|
|
21
|
+
module.exports = React.forwardRef(SpotlightViewIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* spotlight-view.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const SpotlightViewIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default SpotlightViewIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function SpotlightViewIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
13
|
+
fillRule: "evenodd",
|
|
14
|
+
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",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
SpotlightViewIcon.displayName = "SpotlightViewIcon";
|
|
21
|
+
export default forwardRef(SpotlightViewIcon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function VoiceCallSolidIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
13
|
+
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"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
VoiceCallSolidIcon.displayName = "VoiceCallSolidIcon";
|
|
19
|
+
module.exports = React.forwardRef(VoiceCallSolidIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* voice-call-solid.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const VoiceCallSolidIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default VoiceCallSolidIcon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function VoiceCallSolidIcon(props, ref) {
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
width: "1em",
|
|
7
|
+
height: "1em",
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
ref: ref,
|
|
11
|
+
...props,
|
|
12
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
13
|
+
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"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
VoiceCallSolidIcon.displayName = "VoiceCallSolidIcon";
|
|
19
|
+
export default forwardRef(VoiceCallSolidIcon);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
2
|
var React = require("react");
|
|
3
3
|
function VoiceCallIcon(props, ref) {
|
|
4
|
-
return /*#__PURE__*/_reactJsxRuntime.
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsxs("svg", {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
width: "1em",
|
|
7
7
|
height: "1em",
|
|
@@ -9,9 +9,21 @@ function VoiceCallIcon(props, ref) {
|
|
|
9
9
|
viewBox: "0 0 24 24",
|
|
10
10
|
ref: ref,
|
|
11
11
|
...props,
|
|
12
|
-
children: /*#__PURE__*/_reactJsxRuntime.jsx("
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
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",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
})
|
|
19
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
21
|
+
id: "a",
|
|
22
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
23
|
+
d: "M0 0h24v24H0z"
|
|
24
|
+
})
|
|
25
|
+
})
|
|
26
|
+
})]
|
|
15
27
|
});
|
|
16
28
|
}
|
|
17
29
|
;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { forwardRef } from "react";
|
|
2
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
3
|
function VoiceCallIcon(props, ref) {
|
|
4
|
-
return /*#__PURE__*/
|
|
4
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
width: "1em",
|
|
7
7
|
height: "1em",
|
|
@@ -9,9 +9,21 @@ function VoiceCallIcon(props, ref) {
|
|
|
9
9
|
viewBox: "0 0 24 24",
|
|
10
10
|
ref: ref,
|
|
11
11
|
...props,
|
|
12
|
-
children: /*#__PURE__*/_jsx("
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
children: [/*#__PURE__*/_jsx("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
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",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
})
|
|
19
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
20
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
21
|
+
id: "a",
|
|
22
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
23
|
+
d: "M0 0h24v24H0z"
|
|
24
|
+
})
|
|
25
|
+
})
|
|
26
|
+
})]
|
|
15
27
|
});
|
|
16
28
|
}
|
|
17
29
|
;
|
|
@@ -117,6 +117,7 @@ export const cpdIconDarkMode: string;
|
|
|
117
117
|
export const cpdIconDelete: string;
|
|
118
118
|
export const cpdIconDevices: string;
|
|
119
119
|
export const cpdIconDocument: string;
|
|
120
|
+
export const cpdIconDownloadIos: string;
|
|
120
121
|
export const cpdIconDownload: string;
|
|
121
122
|
export const cpdIconDragGrid: string;
|
|
122
123
|
export const cpdIconDragList: string;
|
|
@@ -164,6 +165,7 @@ export const cpdIconLink: string;
|
|
|
164
165
|
export const cpdIconLinux: string;
|
|
165
166
|
export const cpdIconListBulleted: string;
|
|
166
167
|
export const cpdIconListNumbered: string;
|
|
168
|
+
export const cpdIconListView: string;
|
|
167
169
|
export const cpdIconLocationNavigatorCentred: string;
|
|
168
170
|
export const cpdIconLocationNavigator: string;
|
|
169
171
|
export const cpdIconLocationPinSolid: string;
|
|
@@ -228,6 +230,7 @@ export const cpdIconShare: string;
|
|
|
228
230
|
export const cpdIconSidebar: string;
|
|
229
231
|
export const cpdIconSignOut: string;
|
|
230
232
|
export const cpdIconSpinner: string;
|
|
233
|
+
export const cpdIconSpotlightView: string;
|
|
231
234
|
export const cpdIconSpotlight: string;
|
|
232
235
|
export const cpdIconStrikethrough: string;
|
|
233
236
|
export const cpdIconSwitchCameraSolid: string;
|
|
@@ -256,6 +259,7 @@ export const cpdIconVideoCallSolid: string;
|
|
|
256
259
|
export const cpdIconVideoCall: string;
|
|
257
260
|
export const cpdIconVisibilityOff: string;
|
|
258
261
|
export const cpdIconVisibilityOn: string;
|
|
262
|
+
export const cpdIconVoiceCallSolid: string;
|
|
259
263
|
export const cpdIconVoiceCall: string;
|
|
260
264
|
export const cpdIconVolumeOffSolid: string;
|
|
261
265
|
export const cpdIconVolumeOff: string;
|
package/assets/web/js/cpdDark.js
CHANGED
|
@@ -139,6 +139,7 @@ export const cpdIconDarkMode = "icons/dark-mode.svg";
|
|
|
139
139
|
export const cpdIconDelete = "icons/delete.svg";
|
|
140
140
|
export const cpdIconDevices = "icons/devices.svg";
|
|
141
141
|
export const cpdIconDocument = "icons/document.svg";
|
|
142
|
+
export const cpdIconDownloadIos = "icons/download-ios.svg";
|
|
142
143
|
export const cpdIconDownload = "icons/download.svg";
|
|
143
144
|
export const cpdIconDragGrid = "icons/drag-grid.svg";
|
|
144
145
|
export const cpdIconDragList = "icons/drag-list.svg";
|
|
@@ -186,6 +187,7 @@ export const cpdIconLink = "icons/link.svg";
|
|
|
186
187
|
export const cpdIconLinux = "icons/linux.svg";
|
|
187
188
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
188
189
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
190
|
+
export const cpdIconListView = "icons/list-view.svg";
|
|
189
191
|
export const cpdIconLocationNavigatorCentred =
|
|
190
192
|
"icons/location-navigator-centred.svg";
|
|
191
193
|
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
|
|
@@ -252,6 +254,7 @@ export const cpdIconShare = "icons/share.svg";
|
|
|
252
254
|
export const cpdIconSidebar = "icons/sidebar.svg";
|
|
253
255
|
export const cpdIconSignOut = "icons/sign-out.svg";
|
|
254
256
|
export const cpdIconSpinner = "icons/spinner.svg";
|
|
257
|
+
export const cpdIconSpotlightView = "icons/spotlight-view.svg";
|
|
255
258
|
export const cpdIconSpotlight = "icons/spotlight.svg";
|
|
256
259
|
export const cpdIconStrikethrough = "icons/strikethrough.svg";
|
|
257
260
|
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
|
|
@@ -281,6 +284,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
|
|
|
281
284
|
export const cpdIconVideoCall = "icons/video-call.svg";
|
|
282
285
|
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
|
|
283
286
|
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
|
|
287
|
+
export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
|
|
284
288
|
export const cpdIconVoiceCall = "icons/voice-call.svg";
|
|
285
289
|
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
|
|
286
290
|
export const cpdIconVolumeOff = "icons/volume-off.svg";
|
|
@@ -117,6 +117,7 @@ export const cpdIconDarkMode: string;
|
|
|
117
117
|
export const cpdIconDelete: string;
|
|
118
118
|
export const cpdIconDevices: string;
|
|
119
119
|
export const cpdIconDocument: string;
|
|
120
|
+
export const cpdIconDownloadIos: string;
|
|
120
121
|
export const cpdIconDownload: string;
|
|
121
122
|
export const cpdIconDragGrid: string;
|
|
122
123
|
export const cpdIconDragList: string;
|
|
@@ -164,6 +165,7 @@ export const cpdIconLink: string;
|
|
|
164
165
|
export const cpdIconLinux: string;
|
|
165
166
|
export const cpdIconListBulleted: string;
|
|
166
167
|
export const cpdIconListNumbered: string;
|
|
168
|
+
export const cpdIconListView: string;
|
|
167
169
|
export const cpdIconLocationNavigatorCentred: string;
|
|
168
170
|
export const cpdIconLocationNavigator: string;
|
|
169
171
|
export const cpdIconLocationPinSolid: string;
|
|
@@ -228,6 +230,7 @@ export const cpdIconShare: string;
|
|
|
228
230
|
export const cpdIconSidebar: string;
|
|
229
231
|
export const cpdIconSignOut: string;
|
|
230
232
|
export const cpdIconSpinner: string;
|
|
233
|
+
export const cpdIconSpotlightView: string;
|
|
231
234
|
export const cpdIconSpotlight: string;
|
|
232
235
|
export const cpdIconStrikethrough: string;
|
|
233
236
|
export const cpdIconSwitchCameraSolid: string;
|
|
@@ -256,6 +259,7 @@ export const cpdIconVideoCallSolid: string;
|
|
|
256
259
|
export const cpdIconVideoCall: string;
|
|
257
260
|
export const cpdIconVisibilityOff: string;
|
|
258
261
|
export const cpdIconVisibilityOn: string;
|
|
262
|
+
export const cpdIconVoiceCallSolid: string;
|
|
259
263
|
export const cpdIconVoiceCall: string;
|
|
260
264
|
export const cpdIconVolumeOffSolid: string;
|
|
261
265
|
export const cpdIconVolumeOff: string;
|
|
@@ -139,6 +139,7 @@ export const cpdIconDarkMode = "icons/dark-mode.svg";
|
|
|
139
139
|
export const cpdIconDelete = "icons/delete.svg";
|
|
140
140
|
export const cpdIconDevices = "icons/devices.svg";
|
|
141
141
|
export const cpdIconDocument = "icons/document.svg";
|
|
142
|
+
export const cpdIconDownloadIos = "icons/download-ios.svg";
|
|
142
143
|
export const cpdIconDownload = "icons/download.svg";
|
|
143
144
|
export const cpdIconDragGrid = "icons/drag-grid.svg";
|
|
144
145
|
export const cpdIconDragList = "icons/drag-list.svg";
|
|
@@ -186,6 +187,7 @@ export const cpdIconLink = "icons/link.svg";
|
|
|
186
187
|
export const cpdIconLinux = "icons/linux.svg";
|
|
187
188
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
188
189
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
190
|
+
export const cpdIconListView = "icons/list-view.svg";
|
|
189
191
|
export const cpdIconLocationNavigatorCentred =
|
|
190
192
|
"icons/location-navigator-centred.svg";
|
|
191
193
|
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
|
|
@@ -252,6 +254,7 @@ export const cpdIconShare = "icons/share.svg";
|
|
|
252
254
|
export const cpdIconSidebar = "icons/sidebar.svg";
|
|
253
255
|
export const cpdIconSignOut = "icons/sign-out.svg";
|
|
254
256
|
export const cpdIconSpinner = "icons/spinner.svg";
|
|
257
|
+
export const cpdIconSpotlightView = "icons/spotlight-view.svg";
|
|
255
258
|
export const cpdIconSpotlight = "icons/spotlight.svg";
|
|
256
259
|
export const cpdIconStrikethrough = "icons/strikethrough.svg";
|
|
257
260
|
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
|
|
@@ -281,6 +284,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
|
|
|
281
284
|
export const cpdIconVideoCall = "icons/video-call.svg";
|
|
282
285
|
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
|
|
283
286
|
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
|
|
287
|
+
export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
|
|
284
288
|
export const cpdIconVoiceCall = "icons/voice-call.svg";
|
|
285
289
|
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
|
|
286
290
|
export const cpdIconVolumeOff = "icons/volume-off.svg";
|
|
@@ -117,6 +117,7 @@ export const cpdIconDarkMode: string;
|
|
|
117
117
|
export const cpdIconDelete: string;
|
|
118
118
|
export const cpdIconDevices: string;
|
|
119
119
|
export const cpdIconDocument: string;
|
|
120
|
+
export const cpdIconDownloadIos: string;
|
|
120
121
|
export const cpdIconDownload: string;
|
|
121
122
|
export const cpdIconDragGrid: string;
|
|
122
123
|
export const cpdIconDragList: string;
|
|
@@ -164,6 +165,7 @@ export const cpdIconLink: string;
|
|
|
164
165
|
export const cpdIconLinux: string;
|
|
165
166
|
export const cpdIconListBulleted: string;
|
|
166
167
|
export const cpdIconListNumbered: string;
|
|
168
|
+
export const cpdIconListView: string;
|
|
167
169
|
export const cpdIconLocationNavigatorCentred: string;
|
|
168
170
|
export const cpdIconLocationNavigator: string;
|
|
169
171
|
export const cpdIconLocationPinSolid: string;
|
|
@@ -228,6 +230,7 @@ export const cpdIconShare: string;
|
|
|
228
230
|
export const cpdIconSidebar: string;
|
|
229
231
|
export const cpdIconSignOut: string;
|
|
230
232
|
export const cpdIconSpinner: string;
|
|
233
|
+
export const cpdIconSpotlightView: string;
|
|
231
234
|
export const cpdIconSpotlight: string;
|
|
232
235
|
export const cpdIconStrikethrough: string;
|
|
233
236
|
export const cpdIconSwitchCameraSolid: string;
|
|
@@ -256,6 +259,7 @@ export const cpdIconVideoCallSolid: string;
|
|
|
256
259
|
export const cpdIconVideoCall: string;
|
|
257
260
|
export const cpdIconVisibilityOff: string;
|
|
258
261
|
export const cpdIconVisibilityOn: string;
|
|
262
|
+
export const cpdIconVoiceCallSolid: string;
|
|
259
263
|
export const cpdIconVoiceCall: string;
|
|
260
264
|
export const cpdIconVolumeOffSolid: string;
|
|
261
265
|
export const cpdIconVolumeOff: string;
|
|
@@ -139,6 +139,7 @@ export const cpdIconDarkMode = "icons/dark-mode.svg";
|
|
|
139
139
|
export const cpdIconDelete = "icons/delete.svg";
|
|
140
140
|
export const cpdIconDevices = "icons/devices.svg";
|
|
141
141
|
export const cpdIconDocument = "icons/document.svg";
|
|
142
|
+
export const cpdIconDownloadIos = "icons/download-ios.svg";
|
|
142
143
|
export const cpdIconDownload = "icons/download.svg";
|
|
143
144
|
export const cpdIconDragGrid = "icons/drag-grid.svg";
|
|
144
145
|
export const cpdIconDragList = "icons/drag-list.svg";
|
|
@@ -186,6 +187,7 @@ export const cpdIconLink = "icons/link.svg";
|
|
|
186
187
|
export const cpdIconLinux = "icons/linux.svg";
|
|
187
188
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
188
189
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
190
|
+
export const cpdIconListView = "icons/list-view.svg";
|
|
189
191
|
export const cpdIconLocationNavigatorCentred =
|
|
190
192
|
"icons/location-navigator-centred.svg";
|
|
191
193
|
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
|
|
@@ -252,6 +254,7 @@ export const cpdIconShare = "icons/share.svg";
|
|
|
252
254
|
export const cpdIconSidebar = "icons/sidebar.svg";
|
|
253
255
|
export const cpdIconSignOut = "icons/sign-out.svg";
|
|
254
256
|
export const cpdIconSpinner = "icons/spinner.svg";
|
|
257
|
+
export const cpdIconSpotlightView = "icons/spotlight-view.svg";
|
|
255
258
|
export const cpdIconSpotlight = "icons/spotlight.svg";
|
|
256
259
|
export const cpdIconStrikethrough = "icons/strikethrough.svg";
|
|
257
260
|
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
|
|
@@ -281,6 +284,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
|
|
|
281
284
|
export const cpdIconVideoCall = "icons/video-call.svg";
|
|
282
285
|
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
|
|
283
286
|
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
|
|
287
|
+
export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
|
|
284
288
|
export const cpdIconVoiceCall = "icons/voice-call.svg";
|
|
285
289
|
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
|
|
286
290
|
export const cpdIconVolumeOff = "icons/volume-off.svg";
|
|
@@ -117,6 +117,7 @@ export const cpdIconDarkMode: string;
|
|
|
117
117
|
export const cpdIconDelete: string;
|
|
118
118
|
export const cpdIconDevices: string;
|
|
119
119
|
export const cpdIconDocument: string;
|
|
120
|
+
export const cpdIconDownloadIos: string;
|
|
120
121
|
export const cpdIconDownload: string;
|
|
121
122
|
export const cpdIconDragGrid: string;
|
|
122
123
|
export const cpdIconDragList: string;
|
|
@@ -164,6 +165,7 @@ export const cpdIconLink: string;
|
|
|
164
165
|
export const cpdIconLinux: string;
|
|
165
166
|
export const cpdIconListBulleted: string;
|
|
166
167
|
export const cpdIconListNumbered: string;
|
|
168
|
+
export const cpdIconListView: string;
|
|
167
169
|
export const cpdIconLocationNavigatorCentred: string;
|
|
168
170
|
export const cpdIconLocationNavigator: string;
|
|
169
171
|
export const cpdIconLocationPinSolid: string;
|
|
@@ -228,6 +230,7 @@ export const cpdIconShare: string;
|
|
|
228
230
|
export const cpdIconSidebar: string;
|
|
229
231
|
export const cpdIconSignOut: string;
|
|
230
232
|
export const cpdIconSpinner: string;
|
|
233
|
+
export const cpdIconSpotlightView: string;
|
|
231
234
|
export const cpdIconSpotlight: string;
|
|
232
235
|
export const cpdIconStrikethrough: string;
|
|
233
236
|
export const cpdIconSwitchCameraSolid: string;
|
|
@@ -256,6 +259,7 @@ export const cpdIconVideoCallSolid: string;
|
|
|
256
259
|
export const cpdIconVideoCall: string;
|
|
257
260
|
export const cpdIconVisibilityOff: string;
|
|
258
261
|
export const cpdIconVisibilityOn: string;
|
|
262
|
+
export const cpdIconVoiceCallSolid: string;
|
|
259
263
|
export const cpdIconVoiceCall: string;
|
|
260
264
|
export const cpdIconVolumeOffSolid: string;
|
|
261
265
|
export const cpdIconVolumeOff: string;
|
|
@@ -139,6 +139,7 @@ export const cpdIconDarkMode = "icons/dark-mode.svg";
|
|
|
139
139
|
export const cpdIconDelete = "icons/delete.svg";
|
|
140
140
|
export const cpdIconDevices = "icons/devices.svg";
|
|
141
141
|
export const cpdIconDocument = "icons/document.svg";
|
|
142
|
+
export const cpdIconDownloadIos = "icons/download-ios.svg";
|
|
142
143
|
export const cpdIconDownload = "icons/download.svg";
|
|
143
144
|
export const cpdIconDragGrid = "icons/drag-grid.svg";
|
|
144
145
|
export const cpdIconDragList = "icons/drag-list.svg";
|
|
@@ -186,6 +187,7 @@ export const cpdIconLink = "icons/link.svg";
|
|
|
186
187
|
export const cpdIconLinux = "icons/linux.svg";
|
|
187
188
|
export const cpdIconListBulleted = "icons/list-bulleted.svg";
|
|
188
189
|
export const cpdIconListNumbered = "icons/list-numbered.svg";
|
|
190
|
+
export const cpdIconListView = "icons/list-view.svg";
|
|
189
191
|
export const cpdIconLocationNavigatorCentred =
|
|
190
192
|
"icons/location-navigator-centred.svg";
|
|
191
193
|
export const cpdIconLocationNavigator = "icons/location-navigator.svg";
|
|
@@ -252,6 +254,7 @@ export const cpdIconShare = "icons/share.svg";
|
|
|
252
254
|
export const cpdIconSidebar = "icons/sidebar.svg";
|
|
253
255
|
export const cpdIconSignOut = "icons/sign-out.svg";
|
|
254
256
|
export const cpdIconSpinner = "icons/spinner.svg";
|
|
257
|
+
export const cpdIconSpotlightView = "icons/spotlight-view.svg";
|
|
255
258
|
export const cpdIconSpotlight = "icons/spotlight.svg";
|
|
256
259
|
export const cpdIconStrikethrough = "icons/strikethrough.svg";
|
|
257
260
|
export const cpdIconSwitchCameraSolid = "icons/switch-camera-solid.svg";
|
|
@@ -281,6 +284,7 @@ export const cpdIconVideoCallSolid = "icons/video-call-solid.svg";
|
|
|
281
284
|
export const cpdIconVideoCall = "icons/video-call.svg";
|
|
282
285
|
export const cpdIconVisibilityOff = "icons/visibility-off.svg";
|
|
283
286
|
export const cpdIconVisibilityOn = "icons/visibility-on.svg";
|
|
287
|
+
export const cpdIconVoiceCallSolid = "icons/voice-call-solid.svg";
|
|
284
288
|
export const cpdIconVoiceCall = "icons/voice-call.svg";
|
|
285
289
|
export const cpdIconVolumeOffSolid = "icons/volume-off-solid.svg";
|
|
286
290
|
export const cpdIconVolumeOff = "icons/volume-off.svg";
|
package/icons/$icons.json
CHANGED
|
@@ -1 +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"}}}
|
|
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-ios":{"value":"icons/download-ios.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"}}}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M12.763 17.646a1 1 0 0 1-1.526 0l-2.5-2.955a1 1 0 1 1 1.526-1.292l.737.871V4a1 1 0 1 1 2 0v10.27l.737-.87a1 1 0 0 1 1.526 1.291l-2.5 2.955Z"/>
|
|
3
|
+
<path d="M6 20V10h2a1 1 0 0 0 0-2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h-2a1 1 0 1 0 0 2h2v10H6Z"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
|
|
2
|
+
<path d="M17 5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z"/>
|
|
3
|
+
<path fill-rule="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" clip-rule="evenodd"/>
|
|
4
|
+
<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"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
|
|
2
|
+
<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"/>
|
|
3
|
+
</svg>
|
package/icons/voice-call.svg
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24">
|
|
2
|
-
<path
|
|
2
|
+
<g clip-path="url(#a)">
|
|
3
|
+
<path fill-rule="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" clip-rule="evenodd"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<clipPath id="a">
|
|
7
|
+
<path d="M0 0h24v24H0z"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
3
10
|
</svg>
|