@vector-im/compound-design-tokens 10.2.4 → 11.1.0

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.
Files changed (55) hide show
  1. package/assets/web/icons/blur.cjs +19 -0
  2. package/assets/web/icons/blur.d.ts +11 -0
  3. package/assets/web/icons/blur.js +19 -0
  4. package/assets/web/icons/captions-solid.cjs +21 -0
  5. package/assets/web/icons/captions-solid.d.ts +11 -0
  6. package/assets/web/icons/captions-solid.js +21 -0
  7. package/assets/web/icons/captions.cjs +23 -0
  8. package/assets/web/icons/captions.d.ts +11 -0
  9. package/assets/web/icons/captions.js +23 -0
  10. package/assets/web/icons/guest-solid.cjs +21 -0
  11. package/assets/web/icons/guest-solid.d.ts +11 -0
  12. package/assets/web/icons/guest-solid.js +21 -0
  13. package/assets/web/icons/guest.cjs +4 -2
  14. package/assets/web/icons/guest.js +4 -2
  15. package/assets/web/icons/index.cjs +9 -0
  16. package/assets/web/icons/index.d.ts +9 -0
  17. package/assets/web/icons/index.js +9 -0
  18. package/assets/web/icons/record-border.cjs +19 -0
  19. package/assets/web/icons/record-border.d.ts +11 -0
  20. package/assets/web/icons/record-border.js +19 -0
  21. package/assets/web/icons/record-dot.cjs +19 -0
  22. package/assets/web/icons/record-dot.d.ts +11 -0
  23. package/assets/web/icons/record-dot.js +19 -0
  24. package/assets/web/icons/record.cjs +23 -0
  25. package/assets/web/icons/record.d.ts +11 -0
  26. package/assets/web/icons/record.js +23 -0
  27. package/assets/web/icons/smart-tiles.cjs +21 -0
  28. package/assets/web/icons/smart-tiles.d.ts +11 -0
  29. package/assets/web/icons/smart-tiles.js +21 -0
  30. package/assets/web/icons/transcribe.cjs +23 -0
  31. package/assets/web/icons/transcribe.d.ts +11 -0
  32. package/assets/web/icons/transcribe.js +23 -0
  33. package/assets/web/icons/zoom-in.cjs +4 -20
  34. package/assets/web/icons/zoom-in.js +4 -20
  35. package/assets/web/js/cpdDark.d.ts +10 -1
  36. package/assets/web/js/cpdDark.js +10 -1
  37. package/assets/web/js/cpdDarkHc.d.ts +10 -1
  38. package/assets/web/js/cpdDarkHc.js +10 -1
  39. package/assets/web/js/cpdLight.d.ts +10 -1
  40. package/assets/web/js/cpdLight.js +10 -1
  41. package/assets/web/js/cpdLightHc.d.ts +10 -1
  42. package/assets/web/js/cpdLightHc.js +10 -1
  43. package/icons/$icons.json +38 -2
  44. package/icons/blur.svg +1 -0
  45. package/icons/captions-solid.svg +1 -0
  46. package/icons/captions.svg +1 -0
  47. package/icons/guest-solid.svg +1 -0
  48. package/icons/guest.svg +1 -1
  49. package/icons/record-border.svg +1 -0
  50. package/icons/record-dot.svg +1 -0
  51. package/icons/record.svg +1 -0
  52. package/icons/smart-tiles.svg +1 -0
  53. package/icons/transcribe.svg +1 -0
  54. package/icons/zoom-in.svg +1 -1
  55. package/package.json +2 -2
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function BlurIcon(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: "M19.793 3.207a1 1 0 0 1 1.414 1.414L4.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414L9.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-6.586 6.586a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-1.586 1.586a1 1 0 0 1-1.414-1.415zm-4.5-15.5a1 1 0 0 1 1.414 1.414L4.121 16.707a1 1 0 0 1-1.414-1.414zm-5 0a1 1 0 0 1 1.414 1.414l-7.586 7.586a1 1 0 0 1-1.414-1.415zm-5.5.5a1 1 0 0 1 1.414 1.414L4.621 6.207a1 1 0 0 1-1.414-1.415z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ BlurIcon.displayName = "BlurIcon";
19
+ module.exports = React.forwardRef(BlurIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * blur.svg
5
+ */
6
+ declare const BlurIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default BlurIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function BlurIcon(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: "M19.793 3.207a1 1 0 0 1 1.414 1.414L4.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414L9.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-6.586 6.586a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-1.586 1.586a1 1 0 0 1-1.414-1.415zm-4.5-15.5a1 1 0 0 1 1.414 1.414L4.121 16.707a1 1 0 0 1-1.414-1.414zm-5 0a1 1 0 0 1 1.414 1.414l-7.586 7.586a1 1 0 0 1-1.414-1.415zm-5.5.5a1 1 0 0 1 1.414 1.414L4.621 6.207a1 1 0 0 1-1.414-1.415z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ BlurIcon.displayName = "BlurIcon";
19
+ export default forwardRef(BlurIcon);
@@ -0,0 +1,21 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function CaptionsSolidIcon(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 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM7 14a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2zm9 0a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm-9-4a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm4 0a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ CaptionsSolidIcon.displayName = "CaptionsSolidIcon";
21
+ module.exports = React.forwardRef(CaptionsSolidIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * captions-solid.svg
5
+ */
6
+ declare const CaptionsSolidIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default CaptionsSolidIcon;
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function CaptionsSolidIcon(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 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM7 14a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2zm9 0a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm-9-4a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm4 0a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ CaptionsSolidIcon.displayName = "CaptionsSolidIcon";
21
+ export default forwardRef(CaptionsSolidIcon);
@@ -0,0 +1,23 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function CaptionsIcon(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: "M13 14a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm4 0a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2zm-9-4a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm9 0a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2z"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M20.204 4.01A2 2 0 0 1 22 6v12a2 2 0 0 1-1.796 1.99L20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16zM4 18h16V6H4z",
17
+ clipRule: "evenodd"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ CaptionsIcon.displayName = "CaptionsIcon";
23
+ module.exports = React.forwardRef(CaptionsIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * captions.svg
5
+ */
6
+ declare const CaptionsIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default CaptionsIcon;
@@ -0,0 +1,23 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function CaptionsIcon(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: "M13 14a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm4 0a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2zm-9-4a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm9 0a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2z"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M20.204 4.01A2 2 0 0 1 22 6v12a2 2 0 0 1-1.796 1.99L20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16zM4 18h16V6H4z",
17
+ clipRule: "evenodd"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ CaptionsIcon.displayName = "CaptionsIcon";
23
+ export default forwardRef(CaptionsIcon);
@@ -0,0 +1,21 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function GuestSolidIcon(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: "M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ d: "M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"
16
+ })]
17
+ });
18
+ }
19
+ ;
20
+ GuestSolidIcon.displayName = "GuestSolidIcon";
21
+ module.exports = React.forwardRef(GuestSolidIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * guest-solid.svg
5
+ */
6
+ declare const GuestSolidIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default GuestSolidIcon;
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function GuestSolidIcon(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: "M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ d: "M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"
16
+ })]
17
+ });
18
+ }
19
+ ;
20
+ GuestSolidIcon.displayName = "GuestSolidIcon";
21
+ export default forwardRef(GuestSolidIcon);
@@ -10,9 +10,11 @@ function GuestIcon(props, ref) {
10
10
  ref: ref,
11
11
  ...props,
12
12
  children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
13
- d: "M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"
13
+ fillRule: "evenodd",
14
+ d: "M14.381 4.305a1.04 1.04 0 0 1 1.47 0l6.844 6.842a1.04 1.04 0 0 1 0 1.47l-6.843 6.844a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.471zm-4.75 7.577 5.486 5.486L20.6 11.88l-5.484-5.484z",
15
+ clipRule: "evenodd"
14
16
  }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
- d: "M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"
17
+ d: "M8.147 4.305a1.04 1.04 0 0 1 1.47 0l1.344 1.343-5.5 5.499a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.343 1.343a1.04 1.04 0 0 1-1.471 0l-6.844-6.842a1.04 1.04 0 0 1 0-1.471z"
16
18
  })]
17
19
  });
18
20
  }
@@ -10,9 +10,11 @@ function GuestIcon(props, ref) {
10
10
  ref: ref,
11
11
  ...props,
12
12
  children: [/*#__PURE__*/_jsx("path", {
13
- d: "M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"
13
+ fillRule: "evenodd",
14
+ d: "M14.381 4.305a1.04 1.04 0 0 1 1.47 0l6.844 6.842a1.04 1.04 0 0 1 0 1.47l-6.843 6.844a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.471zm-4.75 7.577 5.486 5.486L20.6 11.88l-5.484-5.484z",
15
+ clipRule: "evenodd"
14
16
  }), /*#__PURE__*/_jsx("path", {
15
- d: "M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"
17
+ d: "M8.147 4.305a1.04 1.04 0 0 1 1.47 0l1.344 1.343-5.5 5.499a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.343 1.343a1.04 1.04 0 0 1-1.471 0l-6.844-6.842a1.04 1.04 0 0 1 0-1.471z"
16
18
  })]
17
19
  });
18
20
  }
@@ -13,9 +13,12 @@ module.exports = {
13
13
  BackspaceSolidIcon: require("./backspace-solid.cjs"),
14
14
  BackspaceIcon: require("./backspace.cjs"),
15
15
  BlockIcon: require("./block.cjs"),
16
+ BlurIcon: require("./blur.cjs"),
16
17
  BoldIcon: require("./bold.cjs"),
17
18
  BugIcon: require("./bug.cjs"),
18
19
  CalendarIcon: require("./calendar.cjs"),
20
+ CaptionsSolidIcon: require("./captions-solid.cjs"),
21
+ CaptionsIcon: require("./captions.cjs"),
19
22
  ChartIcon: require("./chart.cjs"),
20
23
  ChatNewIcon: require("./chat-new.cjs"),
21
24
  ChatProblemIcon: require("./chat-problem.cjs"),
@@ -78,6 +81,7 @@ module.exports = {
78
81
  FullScreenIcon: require("./full-screen.cjs"),
79
82
  GridIcon: require("./grid.cjs"),
80
83
  GroupIcon: require("./group.cjs"),
84
+ GuestSolidIcon: require("./guest-solid.cjs"),
81
85
  GuestIcon: require("./guest.cjs"),
82
86
  HeadphonesOffSolidIcon: require("./headphones-off-solid.cjs"),
83
87
  HeadphonesSolidIcon: require("./headphones-solid.cjs"),
@@ -160,6 +164,9 @@ module.exports = {
160
164
  ReactionAddIcon: require("./reaction-add.cjs"),
161
165
  ReactionSolidIcon: require("./reaction-solid.cjs"),
162
166
  ReactionIcon: require("./reaction.cjs"),
167
+ RecordBorderIcon: require("./record-border.cjs"),
168
+ RecordDotIcon: require("./record-dot.cjs"),
169
+ RecordIcon: require("./record.cjs"),
163
170
  ReplyIcon: require("./reply.cjs"),
164
171
  RestartIcon: require("./restart.cjs"),
165
172
  RoomIcon: require("./room.cjs"),
@@ -181,6 +188,7 @@ module.exports = {
181
188
  ShieldIcon: require("./shield.cjs"),
182
189
  SidebarIcon: require("./sidebar.cjs"),
183
190
  SignOutIcon: require("./sign-out.cjs"),
191
+ SmartTilesIcon: require("./smart-tiles.cjs"),
184
192
  SpaceSolidIcon: require("./space-solid.cjs"),
185
193
  SpaceIcon: require("./space.cjs"),
186
194
  SpinnerIcon: require("./spinner.cjs"),
@@ -198,6 +206,7 @@ module.exports = {
198
206
  ThreadsSolidIcon: require("./threads-solid.cjs"),
199
207
  ThreadsIcon: require("./threads.cjs"),
200
208
  TimeIcon: require("./time.cjs"),
209
+ TranscribeIcon: require("./transcribe.cjs"),
201
210
  TranslateIcon: require("./translate.cjs"),
202
211
  TreeIcon: require("./tree.cjs"),
203
212
  UnderlineIcon: require("./underline.cjs"),
@@ -12,9 +12,12 @@ export { default as AudioIcon } from "./audio.js";
12
12
  export { default as BackspaceSolidIcon } from "./backspace-solid.js";
13
13
  export { default as BackspaceIcon } from "./backspace.js";
14
14
  export { default as BlockIcon } from "./block.js";
15
+ export { default as BlurIcon } from "./blur.js";
15
16
  export { default as BoldIcon } from "./bold.js";
16
17
  export { default as BugIcon } from "./bug.js";
17
18
  export { default as CalendarIcon } from "./calendar.js";
19
+ export { default as CaptionsSolidIcon } from "./captions-solid.js";
20
+ export { default as CaptionsIcon } from "./captions.js";
18
21
  export { default as ChartIcon } from "./chart.js";
19
22
  export { default as ChatNewIcon } from "./chat-new.js";
20
23
  export { default as ChatProblemIcon } from "./chat-problem.js";
@@ -77,6 +80,7 @@ export { default as ForwardIcon } from "./forward.js";
77
80
  export { default as FullScreenIcon } from "./full-screen.js";
78
81
  export { default as GridIcon } from "./grid.js";
79
82
  export { default as GroupIcon } from "./group.js";
83
+ export { default as GuestSolidIcon } from "./guest-solid.js";
80
84
  export { default as GuestIcon } from "./guest.js";
81
85
  export { default as HeadphonesOffSolidIcon } from "./headphones-off-solid.js";
82
86
  export { default as HeadphonesSolidIcon } from "./headphones-solid.js";
@@ -159,6 +163,9 @@ export { default as ReOrderIcon } from "./re-order.js";
159
163
  export { default as ReactionAddIcon } from "./reaction-add.js";
160
164
  export { default as ReactionSolidIcon } from "./reaction-solid.js";
161
165
  export { default as ReactionIcon } from "./reaction.js";
166
+ export { default as RecordBorderIcon } from "./record-border.js";
167
+ export { default as RecordDotIcon } from "./record-dot.js";
168
+ export { default as RecordIcon } from "./record.js";
162
169
  export { default as ReplyIcon } from "./reply.js";
163
170
  export { default as RestartIcon } from "./restart.js";
164
171
  export { default as RoomIcon } from "./room.js";
@@ -180,6 +187,7 @@ export { default as ShareIcon } from "./share.js";
180
187
  export { default as ShieldIcon } from "./shield.js";
181
188
  export { default as SidebarIcon } from "./sidebar.js";
182
189
  export { default as SignOutIcon } from "./sign-out.js";
190
+ export { default as SmartTilesIcon } from "./smart-tiles.js";
183
191
  export { default as SpaceSolidIcon } from "./space-solid.js";
184
192
  export { default as SpaceIcon } from "./space.js";
185
193
  export { default as SpinnerIcon } from "./spinner.js";
@@ -197,6 +205,7 @@ export { default as ThemeIcon } from "./theme.js";
197
205
  export { default as ThreadsSolidIcon } from "./threads-solid.js";
198
206
  export { default as ThreadsIcon } from "./threads.js";
199
207
  export { default as TimeIcon } from "./time.js";
208
+ export { default as TranscribeIcon } from "./transcribe.js";
200
209
  export { default as TranslateIcon } from "./translate.js";
201
210
  export { default as TreeIcon } from "./tree.js";
202
211
  export { default as UnderlineIcon } from "./underline.js";
@@ -12,9 +12,12 @@ export { default as AudioIcon } from "./audio.js";
12
12
  export { default as BackspaceSolidIcon } from "./backspace-solid.js";
13
13
  export { default as BackspaceIcon } from "./backspace.js";
14
14
  export { default as BlockIcon } from "./block.js";
15
+ export { default as BlurIcon } from "./blur.js";
15
16
  export { default as BoldIcon } from "./bold.js";
16
17
  export { default as BugIcon } from "./bug.js";
17
18
  export { default as CalendarIcon } from "./calendar.js";
19
+ export { default as CaptionsSolidIcon } from "./captions-solid.js";
20
+ export { default as CaptionsIcon } from "./captions.js";
18
21
  export { default as ChartIcon } from "./chart.js";
19
22
  export { default as ChatNewIcon } from "./chat-new.js";
20
23
  export { default as ChatProblemIcon } from "./chat-problem.js";
@@ -77,6 +80,7 @@ export { default as ForwardIcon } from "./forward.js";
77
80
  export { default as FullScreenIcon } from "./full-screen.js";
78
81
  export { default as GridIcon } from "./grid.js";
79
82
  export { default as GroupIcon } from "./group.js";
83
+ export { default as GuestSolidIcon } from "./guest-solid.js";
80
84
  export { default as GuestIcon } from "./guest.js";
81
85
  export { default as HeadphonesOffSolidIcon } from "./headphones-off-solid.js";
82
86
  export { default as HeadphonesSolidIcon } from "./headphones-solid.js";
@@ -159,6 +163,9 @@ export { default as ReOrderIcon } from "./re-order.js";
159
163
  export { default as ReactionAddIcon } from "./reaction-add.js";
160
164
  export { default as ReactionSolidIcon } from "./reaction-solid.js";
161
165
  export { default as ReactionIcon } from "./reaction.js";
166
+ export { default as RecordBorderIcon } from "./record-border.js";
167
+ export { default as RecordDotIcon } from "./record-dot.js";
168
+ export { default as RecordIcon } from "./record.js";
162
169
  export { default as ReplyIcon } from "./reply.js";
163
170
  export { default as RestartIcon } from "./restart.js";
164
171
  export { default as RoomIcon } from "./room.js";
@@ -180,6 +187,7 @@ export { default as ShareIcon } from "./share.js";
180
187
  export { default as ShieldIcon } from "./shield.js";
181
188
  export { default as SidebarIcon } from "./sidebar.js";
182
189
  export { default as SignOutIcon } from "./sign-out.js";
190
+ export { default as SmartTilesIcon } from "./smart-tiles.js";
183
191
  export { default as SpaceSolidIcon } from "./space-solid.js";
184
192
  export { default as SpaceIcon } from "./space.js";
185
193
  export { default as SpinnerIcon } from "./spinner.js";
@@ -197,6 +205,7 @@ export { default as ThemeIcon } from "./theme.js";
197
205
  export { default as ThreadsSolidIcon } from "./threads-solid.js";
198
206
  export { default as ThreadsIcon } from "./threads.js";
199
207
  export { default as TimeIcon } from "./time.js";
208
+ export { default as TranscribeIcon } from "./transcribe.js";
200
209
  export { default as TranslateIcon } from "./translate.js";
201
210
  export { default as TreeIcon } from "./tree.js";
202
211
  export { default as UnderlineIcon } from "./underline.js";
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function RecordBorderIcon(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 12a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10v-2a8 8 0 0 0 8-8"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ RecordBorderIcon.displayName = "RecordBorderIcon";
19
+ module.exports = React.forwardRef(RecordBorderIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * record-border.svg
5
+ */
6
+ declare const RecordBorderIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default RecordBorderIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function RecordBorderIcon(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 12a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10v-2a8 8 0 0 0 8-8"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ RecordBorderIcon.displayName = "RecordBorderIcon";
19
+ export default forwardRef(RecordBorderIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function RecordDotIcon(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: "M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ RecordDotIcon.displayName = "RecordDotIcon";
19
+ module.exports = React.forwardRef(RecordDotIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * record-dot.svg
5
+ */
6
+ declare const RecordDotIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default RecordDotIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function RecordDotIcon(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: "M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ RecordDotIcon.displayName = "RecordDotIcon";
19
+ export default forwardRef(RecordDotIcon);
@@ -0,0 +1,23 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function RecordIcon(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 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16",
17
+ clipRule: "evenodd"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ RecordIcon.displayName = "RecordIcon";
23
+ module.exports = React.forwardRef(RecordIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * record.svg
5
+ */
6
+ declare const RecordIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default RecordIcon;
@@ -0,0 +1,23 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function RecordIcon(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 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16",
17
+ clipRule: "evenodd"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ RecordIcon.displayName = "RecordIcon";
23
+ export default forwardRef(RecordIcon);
@@ -0,0 +1,21 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function SmartTilesIcon(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: "M9 4a2 2 0 0 1 2 2v12a2 2 0 0 1-1.796 1.99L9 20H4l-.204-.01A2 2 0 0 1 2 18V6a2 2 0 0 1 2-2zM4 18h5V6H4zm16-5a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 20h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 18v-3a2 2 0 0 1 2-2zm-5 5h5v-3h-5zm5-14a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 11h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 9V6a2 2 0 0 1 2-2zm-5 5h5V6h-5z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ SmartTilesIcon.displayName = "SmartTilesIcon";
21
+ module.exports = React.forwardRef(SmartTilesIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * smart-tiles.svg
5
+ */
6
+ declare const SmartTilesIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default SmartTilesIcon;
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function SmartTilesIcon(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: "M9 4a2 2 0 0 1 2 2v12a2 2 0 0 1-1.796 1.99L9 20H4l-.204-.01A2 2 0 0 1 2 18V6a2 2 0 0 1 2-2zM4 18h5V6H4zm16-5a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 20h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 18v-3a2 2 0 0 1 2-2zm-5 5h5v-3h-5zm5-14a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 11h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 9V6a2 2 0 0 1 2-2zm-5 5h5V6h-5z",
15
+ clipRule: "evenodd"
16
+ })
17
+ });
18
+ }
19
+ ;
20
+ SmartTilesIcon.displayName = "SmartTilesIcon";
21
+ export default forwardRef(SmartTilesIcon);
@@ -0,0 +1,23 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function TranscribeIcon(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.633 9.413a2 2 0 0 1 2.829 0l.937.938a2 2 0 0 1 0 2.829l-5.727 5.726q-.037.035-.076.069l-.411.412c-.25.25-.55.419-.869.508q-.03.015-.063.027l-3.158 1.054a1 1 0 0 1-1.266-1.266l1.054-3.158q.012-.038.028-.072c.09-.315.26-.611.507-.859l3.656-3.656.07-.065z"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ d: "M19 3a2 2 0 0 1 2 2v2a1 1 0 1 1-2 0V5H5v14h2a1 1 0 1 1 0 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"
16
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
17
+ d: "M9 15a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm2-4a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm4-4a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2z"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ TranscribeIcon.displayName = "TranscribeIcon";
23
+ module.exports = React.forwardRef(TranscribeIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * transcribe.svg
5
+ */
6
+ declare const TranscribeIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default TranscribeIcon;
@@ -0,0 +1,23 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function TranscribeIcon(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.633 9.413a2 2 0 0 1 2.829 0l.937.938a2 2 0 0 1 0 2.829l-5.727 5.726q-.037.035-.076.069l-.411.412c-.25.25-.55.419-.869.508q-.03.015-.063.027l-3.158 1.054a1 1 0 0 1-1.266-1.266l1.054-3.158q.012-.038.028-.072c.09-.315.26-.611.507-.859l3.656-3.656.07-.065z"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ d: "M19 3a2 2 0 0 1 2 2v2a1 1 0 1 1-2 0V5H5v14h2a1 1 0 1 1 0 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"
16
+ }), /*#__PURE__*/_jsx("path", {
17
+ d: "M9 15a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm2-4a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm4-4a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2z"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ TranscribeIcon.displayName = "TranscribeIcon";
23
+ export default forwardRef(TranscribeIcon);
@@ -9,26 +9,10 @@ function ZoomInIcon(props, ref) {
9
9
  viewBox: "0 0 24 24",
10
10
  ref: ref,
11
11
  ...props,
12
- children: [/*#__PURE__*/_reactJsxRuntime.jsxs("g", {
13
- clipPath: "url(#cpd_ZoomInIcon_a)",
14
- children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
- d: "M10.5 6.5q.425 0 .713.287.288.288.287.713v2h2q.425 0 .713.287.288.288.287.713a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287h-2v2a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713v-2h-2a.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713q0-.425.287-.713A.97.97 0 0 1 7.5 9.5h2v-2q0-.425.287-.713A.97.97 0 0 1 10.5 6.5"
16
- }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
17
- fillRule: "evenodd",
18
- d: "M10.5 3a7.5 7.5 0 0 1 5.963 12.049l3.244 3.244a1 1 0 1 1-1.414 1.414l-3.244-3.244A7.5 7.5 0 1 1 10.5 3m0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11",
19
- clipRule: "evenodd"
20
- }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
21
- d: "M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"
22
- }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
23
- d: "M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"
24
- })]
25
- }), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
26
- children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
27
- id: "cpd_ZoomInIcon_a",
28
- children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
29
- d: "M0 0h24v24H0z"
30
- })
31
- })
12
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("path", {
13
+ d: "M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ d: "M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"
32
16
  })]
33
17
  });
34
18
  }
@@ -9,26 +9,10 @@ function ZoomInIcon(props, ref) {
9
9
  viewBox: "0 0 24 24",
10
10
  ref: ref,
11
11
  ...props,
12
- children: [/*#__PURE__*/_jsxs("g", {
13
- clipPath: "url(#cpd_ZoomInIcon_a)",
14
- children: [/*#__PURE__*/_jsx("path", {
15
- d: "M10.5 6.5q.425 0 .713.287.288.288.287.713v2h2q.425 0 .713.287.288.288.287.713a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287h-2v2a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713v-2h-2a.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713q0-.425.287-.713A.97.97 0 0 1 7.5 9.5h2v-2q0-.425.287-.713A.97.97 0 0 1 10.5 6.5"
16
- }), /*#__PURE__*/_jsx("path", {
17
- fillRule: "evenodd",
18
- d: "M10.5 3a7.5 7.5 0 0 1 5.963 12.049l3.244 3.244a1 1 0 1 1-1.414 1.414l-3.244-3.244A7.5 7.5 0 1 1 10.5 3m0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11",
19
- clipRule: "evenodd"
20
- }), /*#__PURE__*/_jsx("path", {
21
- d: "M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"
22
- }), /*#__PURE__*/_jsx("path", {
23
- d: "M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"
24
- })]
25
- }), /*#__PURE__*/_jsx("defs", {
26
- children: /*#__PURE__*/_jsx("clipPath", {
27
- id: "cpd_ZoomInIcon_a",
28
- children: /*#__PURE__*/_jsx("path", {
29
- d: "M0 0h24v24H0z"
30
- })
31
- })
12
+ children: [/*#__PURE__*/_jsx("path", {
13
+ d: "M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ d: "M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"
32
16
  })]
33
17
  });
34
18
  }
@@ -283,7 +283,7 @@ export const cpdIconReOrder: string;
283
283
  export const cpdIconDevicePasskey: string;
284
284
  export const cpdIconSpace: string;
285
285
  export const cpdIconSpaceSolid: string;
286
- export const cpdIconGuest: string;
286
+ export const cpdIconGuestSolid: string;
287
287
  export const cpdIconLeftPanelClose: string;
288
288
  export const cpdIconLeftPanelOpen: string;
289
289
  export const cpdIconBackspaceSolid: string;
@@ -293,6 +293,8 @@ export const cpdIconAdvancedSettings: string;
293
293
  export const cpdIconTree: string;
294
294
  export const cpdIconBug: string;
295
295
  export const cpdIconTranslate: string;
296
+ export const cpdIconCaptionsSolid: string;
297
+ export const cpdIconCaptions: string;
296
298
  export const cpdIconRotateLeft: string;
297
299
  export const cpdIconRotateRight: string;
298
300
  export const cpdIconZoomIn: string;
@@ -313,6 +315,13 @@ export const cpdIconUnsave: string;
313
315
  export const cpdIconSaveSolid: string;
314
316
  export const cpdIconHourglassSolid: string;
315
317
  export const cpdIconHourglass: string;
318
+ export const cpdIconSmartTiles: string;
319
+ export const cpdIconBlur: string;
320
+ export const cpdIconGuest: string;
321
+ export const cpdIconTranscribe: string;
322
+ export const cpdIconRecord: string;
323
+ export const cpdIconRecordBorder: string;
324
+ export const cpdIconRecordDot: string;
316
325
  export const cpdColorThemeBg: string;
317
326
  export const cpdColorGray100: string;
318
327
  export const cpdColorGray200: string;
@@ -308,7 +308,7 @@ export const cpdIconReOrder = "icons/re-order.svg";
308
308
  export const cpdIconDevicePasskey = "icons/device-passkey.svg";
309
309
  export const cpdIconSpace = "icons/space.svg";
310
310
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
311
- export const cpdIconGuest = "icons/guest.svg";
311
+ export const cpdIconGuestSolid = "icons/guest-solid.svg";
312
312
  export const cpdIconLeftPanelClose = "icons/left-panel-close.svg";
313
313
  export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
314
314
  export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
@@ -318,6 +318,8 @@ export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
318
318
  export const cpdIconTree = "icons/tree.svg";
319
319
  export const cpdIconBug = "icons/bug.svg";
320
320
  export const cpdIconTranslate = "icons/translate.svg";
321
+ export const cpdIconCaptionsSolid = "icons/captions-solid.svg";
322
+ export const cpdIconCaptions = "icons/captions.svg";
321
323
  export const cpdIconRotateLeft = "icons/rotate-left.svg";
322
324
  export const cpdIconRotateRight = "icons/rotate-right.svg";
323
325
  export const cpdIconZoomIn = "icons/zoom-in.svg";
@@ -341,6 +343,13 @@ export const cpdIconUnsave = "icons/unsave.svg";
341
343
  export const cpdIconSaveSolid = "icons/save-solid.svg";
342
344
  export const cpdIconHourglassSolid = "icons/hourglass-solid.svg";
343
345
  export const cpdIconHourglass = "icons/hourglass.svg";
346
+ export const cpdIconSmartTiles = "icons/smart-tiles.svg";
347
+ export const cpdIconBlur = "icons/blur.svg";
348
+ export const cpdIconGuest = "icons/guest.svg";
349
+ export const cpdIconTranscribe = "icons/transcribe.svg";
350
+ export const cpdIconRecord = "icons/record.svg";
351
+ export const cpdIconRecordBorder = "icons/record-border.svg";
352
+ export const cpdIconRecordDot = "icons/record-dot.svg";
344
353
  export const cpdColorThemeBg = "#101317";
345
354
  export const cpdColorGray100 = "#14171b";
346
355
  export const cpdColorGray200 = "#181a1f";
@@ -283,7 +283,7 @@ export const cpdIconReOrder: string;
283
283
  export const cpdIconDevicePasskey: string;
284
284
  export const cpdIconSpace: string;
285
285
  export const cpdIconSpaceSolid: string;
286
- export const cpdIconGuest: string;
286
+ export const cpdIconGuestSolid: string;
287
287
  export const cpdIconLeftPanelClose: string;
288
288
  export const cpdIconLeftPanelOpen: string;
289
289
  export const cpdIconBackspaceSolid: string;
@@ -293,6 +293,8 @@ export const cpdIconAdvancedSettings: string;
293
293
  export const cpdIconTree: string;
294
294
  export const cpdIconBug: string;
295
295
  export const cpdIconTranslate: string;
296
+ export const cpdIconCaptionsSolid: string;
297
+ export const cpdIconCaptions: string;
296
298
  export const cpdIconRotateLeft: string;
297
299
  export const cpdIconRotateRight: string;
298
300
  export const cpdIconZoomIn: string;
@@ -313,6 +315,13 @@ export const cpdIconUnsave: string;
313
315
  export const cpdIconSaveSolid: string;
314
316
  export const cpdIconHourglassSolid: string;
315
317
  export const cpdIconHourglass: string;
318
+ export const cpdIconSmartTiles: string;
319
+ export const cpdIconBlur: string;
320
+ export const cpdIconGuest: string;
321
+ export const cpdIconTranscribe: string;
322
+ export const cpdIconRecord: string;
323
+ export const cpdIconRecordBorder: string;
324
+ export const cpdIconRecordDot: string;
316
325
  export const cpdColorThemeBg: string;
317
326
  export const cpdColorGray100: string;
318
327
  export const cpdColorGray200: string;
@@ -308,7 +308,7 @@ export const cpdIconReOrder = "icons/re-order.svg";
308
308
  export const cpdIconDevicePasskey = "icons/device-passkey.svg";
309
309
  export const cpdIconSpace = "icons/space.svg";
310
310
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
311
- export const cpdIconGuest = "icons/guest.svg";
311
+ export const cpdIconGuestSolid = "icons/guest-solid.svg";
312
312
  export const cpdIconLeftPanelClose = "icons/left-panel-close.svg";
313
313
  export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
314
314
  export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
@@ -318,6 +318,8 @@ export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
318
318
  export const cpdIconTree = "icons/tree.svg";
319
319
  export const cpdIconBug = "icons/bug.svg";
320
320
  export const cpdIconTranslate = "icons/translate.svg";
321
+ export const cpdIconCaptionsSolid = "icons/captions-solid.svg";
322
+ export const cpdIconCaptions = "icons/captions.svg";
321
323
  export const cpdIconRotateLeft = "icons/rotate-left.svg";
322
324
  export const cpdIconRotateRight = "icons/rotate-right.svg";
323
325
  export const cpdIconZoomIn = "icons/zoom-in.svg";
@@ -341,6 +343,13 @@ export const cpdIconUnsave = "icons/unsave.svg";
341
343
  export const cpdIconSaveSolid = "icons/save-solid.svg";
342
344
  export const cpdIconHourglassSolid = "icons/hourglass-solid.svg";
343
345
  export const cpdIconHourglass = "icons/hourglass.svg";
346
+ export const cpdIconSmartTiles = "icons/smart-tiles.svg";
347
+ export const cpdIconBlur = "icons/blur.svg";
348
+ export const cpdIconGuest = "icons/guest.svg";
349
+ export const cpdIconTranscribe = "icons/transcribe.svg";
350
+ export const cpdIconRecord = "icons/record.svg";
351
+ export const cpdIconRecordBorder = "icons/record-border.svg";
352
+ export const cpdIconRecordDot = "icons/record-dot.svg";
344
353
  export const cpdColorThemeBg = "#101317";
345
354
  export const cpdColorGray100 = "#181a1f";
346
355
  export const cpdColorGray200 = "#1d1f24";
@@ -283,7 +283,7 @@ export const cpdIconReOrder: string;
283
283
  export const cpdIconDevicePasskey: string;
284
284
  export const cpdIconSpace: string;
285
285
  export const cpdIconSpaceSolid: string;
286
- export const cpdIconGuest: string;
286
+ export const cpdIconGuestSolid: string;
287
287
  export const cpdIconLeftPanelClose: string;
288
288
  export const cpdIconLeftPanelOpen: string;
289
289
  export const cpdIconBackspaceSolid: string;
@@ -293,6 +293,8 @@ export const cpdIconAdvancedSettings: string;
293
293
  export const cpdIconTree: string;
294
294
  export const cpdIconBug: string;
295
295
  export const cpdIconTranslate: string;
296
+ export const cpdIconCaptionsSolid: string;
297
+ export const cpdIconCaptions: string;
296
298
  export const cpdIconRotateLeft: string;
297
299
  export const cpdIconRotateRight: string;
298
300
  export const cpdIconZoomIn: string;
@@ -313,6 +315,13 @@ export const cpdIconUnsave: string;
313
315
  export const cpdIconSaveSolid: string;
314
316
  export const cpdIconHourglassSolid: string;
315
317
  export const cpdIconHourglass: string;
318
+ export const cpdIconSmartTiles: string;
319
+ export const cpdIconBlur: string;
320
+ export const cpdIconGuest: string;
321
+ export const cpdIconTranscribe: string;
322
+ export const cpdIconRecord: string;
323
+ export const cpdIconRecordBorder: string;
324
+ export const cpdIconRecordDot: string;
316
325
  export const cpdColorThemeBg: string;
317
326
  export const cpdColorGray100: string;
318
327
  export const cpdColorGray200: string;
@@ -308,7 +308,7 @@ export const cpdIconReOrder = "icons/re-order.svg";
308
308
  export const cpdIconDevicePasskey = "icons/device-passkey.svg";
309
309
  export const cpdIconSpace = "icons/space.svg";
310
310
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
311
- export const cpdIconGuest = "icons/guest.svg";
311
+ export const cpdIconGuestSolid = "icons/guest-solid.svg";
312
312
  export const cpdIconLeftPanelClose = "icons/left-panel-close.svg";
313
313
  export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
314
314
  export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
@@ -318,6 +318,8 @@ export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
318
318
  export const cpdIconTree = "icons/tree.svg";
319
319
  export const cpdIconBug = "icons/bug.svg";
320
320
  export const cpdIconTranslate = "icons/translate.svg";
321
+ export const cpdIconCaptionsSolid = "icons/captions-solid.svg";
322
+ export const cpdIconCaptions = "icons/captions.svg";
321
323
  export const cpdIconRotateLeft = "icons/rotate-left.svg";
322
324
  export const cpdIconRotateRight = "icons/rotate-right.svg";
323
325
  export const cpdIconZoomIn = "icons/zoom-in.svg";
@@ -341,6 +343,13 @@ export const cpdIconUnsave = "icons/unsave.svg";
341
343
  export const cpdIconSaveSolid = "icons/save-solid.svg";
342
344
  export const cpdIconHourglassSolid = "icons/hourglass-solid.svg";
343
345
  export const cpdIconHourglass = "icons/hourglass.svg";
346
+ export const cpdIconSmartTiles = "icons/smart-tiles.svg";
347
+ export const cpdIconBlur = "icons/blur.svg";
348
+ export const cpdIconGuest = "icons/guest.svg";
349
+ export const cpdIconTranscribe = "icons/transcribe.svg";
350
+ export const cpdIconRecord = "icons/record.svg";
351
+ export const cpdIconRecordBorder = "icons/record-border.svg";
352
+ export const cpdIconRecordDot = "icons/record-dot.svg";
344
353
  export const cpdColorThemeBg = "#ffffff";
345
354
  export const cpdColorGray100 = "#fbfcfd";
346
355
  export const cpdColorGray200 = "#f7f9fa";
@@ -283,7 +283,7 @@ export const cpdIconReOrder: string;
283
283
  export const cpdIconDevicePasskey: string;
284
284
  export const cpdIconSpace: string;
285
285
  export const cpdIconSpaceSolid: string;
286
- export const cpdIconGuest: string;
286
+ export const cpdIconGuestSolid: string;
287
287
  export const cpdIconLeftPanelClose: string;
288
288
  export const cpdIconLeftPanelOpen: string;
289
289
  export const cpdIconBackspaceSolid: string;
@@ -293,6 +293,8 @@ export const cpdIconAdvancedSettings: string;
293
293
  export const cpdIconTree: string;
294
294
  export const cpdIconBug: string;
295
295
  export const cpdIconTranslate: string;
296
+ export const cpdIconCaptionsSolid: string;
297
+ export const cpdIconCaptions: string;
296
298
  export const cpdIconRotateLeft: string;
297
299
  export const cpdIconRotateRight: string;
298
300
  export const cpdIconZoomIn: string;
@@ -313,6 +315,13 @@ export const cpdIconUnsave: string;
313
315
  export const cpdIconSaveSolid: string;
314
316
  export const cpdIconHourglassSolid: string;
315
317
  export const cpdIconHourglass: string;
318
+ export const cpdIconSmartTiles: string;
319
+ export const cpdIconBlur: string;
320
+ export const cpdIconGuest: string;
321
+ export const cpdIconTranscribe: string;
322
+ export const cpdIconRecord: string;
323
+ export const cpdIconRecordBorder: string;
324
+ export const cpdIconRecordDot: string;
316
325
  export const cpdColorThemeBg: string;
317
326
  export const cpdColorGray100: string;
318
327
  export const cpdColorGray200: string;
@@ -308,7 +308,7 @@ export const cpdIconReOrder = "icons/re-order.svg";
308
308
  export const cpdIconDevicePasskey = "icons/device-passkey.svg";
309
309
  export const cpdIconSpace = "icons/space.svg";
310
310
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
311
- export const cpdIconGuest = "icons/guest.svg";
311
+ export const cpdIconGuestSolid = "icons/guest-solid.svg";
312
312
  export const cpdIconLeftPanelClose = "icons/left-panel-close.svg";
313
313
  export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
314
314
  export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
@@ -318,6 +318,8 @@ export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
318
318
  export const cpdIconTree = "icons/tree.svg";
319
319
  export const cpdIconBug = "icons/bug.svg";
320
320
  export const cpdIconTranslate = "icons/translate.svg";
321
+ export const cpdIconCaptionsSolid = "icons/captions-solid.svg";
322
+ export const cpdIconCaptions = "icons/captions.svg";
321
323
  export const cpdIconRotateLeft = "icons/rotate-left.svg";
322
324
  export const cpdIconRotateRight = "icons/rotate-right.svg";
323
325
  export const cpdIconZoomIn = "icons/zoom-in.svg";
@@ -341,6 +343,13 @@ export const cpdIconUnsave = "icons/unsave.svg";
341
343
  export const cpdIconSaveSolid = "icons/save-solid.svg";
342
344
  export const cpdIconHourglassSolid = "icons/hourglass-solid.svg";
343
345
  export const cpdIconHourglass = "icons/hourglass.svg";
346
+ export const cpdIconSmartTiles = "icons/smart-tiles.svg";
347
+ export const cpdIconBlur = "icons/blur.svg";
348
+ export const cpdIconGuest = "icons/guest.svg";
349
+ export const cpdIconTranscribe = "icons/transcribe.svg";
350
+ export const cpdIconRecord = "icons/record.svg";
351
+ export const cpdIconRecordBorder = "icons/record-border.svg";
352
+ export const cpdIconRecordDot = "icons/record-dot.svg";
344
353
  export const cpdColorThemeBg = "#ffffff";
345
354
  export const cpdColorGray100 = "#f7f9fa";
346
355
  export const cpdColorGray200 = "#f0f2f5";
package/icons/$icons.json CHANGED
@@ -824,8 +824,8 @@
824
824
  "value": "icons/space-solid.svg",
825
825
  "type": "icon"
826
826
  },
827
- "guest": {
828
- "value": "icons/guest.svg",
827
+ "guest-solid": {
828
+ "value": "icons/guest-solid.svg",
829
829
  "type": "icon"
830
830
  },
831
831
  "left-panel-close": {
@@ -864,6 +864,14 @@
864
864
  "value": "icons/translate.svg",
865
865
  "type": "icon"
866
866
  },
867
+ "captions-solid": {
868
+ "value": "icons/captions-solid.svg",
869
+ "type": "icon"
870
+ },
871
+ "captions": {
872
+ "value": "icons/captions.svg",
873
+ "type": "icon"
874
+ },
867
875
  "rotate-left": {
868
876
  "value": "icons/rotate-left.svg",
869
877
  "type": "icon"
@@ -943,6 +951,34 @@
943
951
  "hourglass": {
944
952
  "value": "icons/hourglass.svg",
945
953
  "type": "icon"
954
+ },
955
+ "smart-tiles": {
956
+ "value": "icons/smart-tiles.svg",
957
+ "type": "icon"
958
+ },
959
+ "blur": {
960
+ "value": "icons/blur.svg",
961
+ "type": "icon"
962
+ },
963
+ "guest": {
964
+ "value": "icons/guest.svg",
965
+ "type": "icon"
966
+ },
967
+ "transcribe": {
968
+ "value": "icons/transcribe.svg",
969
+ "type": "icon"
970
+ },
971
+ "record": {
972
+ "value": "icons/record.svg",
973
+ "type": "icon"
974
+ },
975
+ "record-border": {
976
+ "value": "icons/record-border.svg",
977
+ "type": "icon"
978
+ },
979
+ "record-dot": {
980
+ "value": "icons/record-dot.svg",
981
+ "type": "icon"
946
982
  }
947
983
  }
948
984
  }
package/icons/blur.svg ADDED
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M19.793 3.207a1 1 0 0 1 1.414 1.414L4.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414L9.621 21.207a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-6.586 6.586a1 1 0 0 1-1.414-1.414zm0 5a1 1 0 0 1 1.414 1.414l-1.586 1.586a1 1 0 0 1-1.414-1.415zm-4.5-15.5a1 1 0 0 1 1.414 1.414L4.121 16.707a1 1 0 0 1-1.414-1.414zm-5 0a1 1 0 0 1 1.414 1.414l-7.586 7.586a1 1 0 0 1-1.414-1.415zm-5.5.5a1 1 0 0 1 1.414 1.414L4.621 6.207a1 1 0 0 1-1.414-1.415z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M20 4a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zM7 14a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2zm9 0a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm-9-4a1 1 0 1 0 0 2h1a1 1 0 1 0 0-2zm4 0a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M13 14a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm4 0a1 1 0 1 1 0 2h-1a1 1 0 1 1 0-2zm-9-4a1 1 0 1 1 0 2H7a1 1 0 1 1 0-2zm9 0a1 1 0 1 1 0 2h-6a1 1 0 1 1 0-2z"/><path fill-rule="evenodd" d="M20.204 4.01A2 2 0 0 1 22 6v12a2 2 0 0 1-1.796 1.99L20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16zM4 18h16V6H4z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"/><path d="M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"/></svg>
package/icons/guest.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M8.148 4.304a1.04 1.04 0 0 1 1.47 0l1.343 1.344-5.5 5.5a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.344 1.343a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.47z"/><path d="M14.383 4.304a1.04 1.04 0 0 1 1.469 0l6.844 6.844a1.04 1.04 0 0 1 0 1.47l-6.844 6.843a1.04 1.04 0 0 1-1.469 0L7.54 12.618a1.04 1.04 0 0 1 0-1.47z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M14.381 4.305a1.04 1.04 0 0 1 1.47 0l6.844 6.842a1.04 1.04 0 0 1 0 1.47l-6.843 6.844a1.04 1.04 0 0 1-1.47 0l-6.843-6.843a1.04 1.04 0 0 1 0-1.471zm-4.75 7.577 5.486 5.486L20.6 11.88l-5.484-5.484z" clip-rule="evenodd"/><path d="M8.147 4.305a1.04 1.04 0 0 1 1.47 0l1.344 1.343-5.5 5.499a1.04 1.04 0 0 0 0 1.47l5.5 5.5-1.343 1.343a1.04 1.04 0 0 1-1.471 0l-6.844-6.842a1.04 1.04 0 0 1 0-1.471z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M20 12a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10v-2a8 8 0 0 0 8-8"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M12 6a6 6 0 1 1 0 12 6 6 0 0 1 0-12"/><path fill-rule="evenodd" d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M9 4a2 2 0 0 1 2 2v12a2 2 0 0 1-1.796 1.99L9 20H4l-.204-.01A2 2 0 0 1 2 18V6a2 2 0 0 1 2-2zM4 18h5V6H4zm16-5a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 20h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 18v-3a2 2 0 0 1 2-2zm-5 5h5v-3h-5zm5-14a2 2 0 0 1 2 2v3a2 2 0 0 1-1.796 1.99L20 11h-5l-.204-.01a2 2 0 0 1-1.785-1.786L13 9V6a2 2 0 0 1 2-2zm-5 5h5V6h-5z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M17.633 9.413a2 2 0 0 1 2.829 0l.937.938a2 2 0 0 1 0 2.829l-5.727 5.726q-.037.035-.076.069l-.411.412c-.25.25-.55.419-.869.508q-.03.015-.063.027l-3.158 1.054a1 1 0 0 1-1.266-1.266l1.054-3.158q.012-.038.028-.072c.09-.315.26-.611.507-.859l3.656-3.656.07-.065z"/><path d="M19 3a2 2 0 0 1 2 2v2a1 1 0 1 1-2 0V5H5v14h2a1 1 0 1 1 0 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/><path d="M9 15a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm2-4a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zm4-4a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2z"/></svg>
package/icons/zoom-in.svg CHANGED
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><g clip-path="url(#a)"><path d="M10.5 6.5q.425 0 .713.287.288.288.287.713v2h2q.425 0 .713.287.288.288.287.713a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287h-2v2a.97.97 0 0 1-.287.713.97.97 0 0 1-.713.287.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713v-2h-2a.97.97 0 0 1-.713-.287.97.97 0 0 1-.287-.713q0-.425.287-.713A.97.97 0 0 1 7.5 9.5h2v-2q0-.425.287-.713A.97.97 0 0 1 10.5 6.5"/><path fill-rule="evenodd" d="M10.5 3a7.5 7.5 0 0 1 5.963 12.049l3.244 3.244a1 1 0 1 1-1.414 1.414l-3.244-3.244A7.5 7.5 0 1 1 10.5 3m0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11" clip-rule="evenodd"/><path d="M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"/><path d="M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"/></g><defs><clipPath id="a"><path d="M0 0h24v24H0z"/></clipPath></defs></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414zM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0"/><path d="M7.875 11.375h1.75v1.75q0 .372.252.623A.85.85 0 0 0 10.5 14a.85.85 0 0 0 .623-.252.85.85 0 0 0 .252-.623v-1.75h1.75a.85.85 0 0 0 .623-.252A.85.85 0 0 0 14 10.5a.85.85 0 0 0-.252-.623.85.85 0 0 0-.623-.252h-1.75v-1.75a.85.85 0 0 0-.252-.623A.85.85 0 0 0 10.5 7a.85.85 0 0 0-.623.252.85.85 0 0 0-.252.623v1.75h-1.75a.85.85 0 0 0-.623.252A.85.85 0 0 0 7 10.5q0 .372.252.623a.85.85 0 0 0 .623.252"/></svg>
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "10.2.4",
3
+ "version": "11.1.0",
4
4
  "description": "Compound design tokens",
5
- "packageManager": "pnpm@11.13.0+sha512.88d94724d8f2e6c186744a5584c6e59ecac869ec7ba15e9cb4cd628e8dc7066820b2481d8ee3b51ea8da323a7378068aa58c556a3720d32b7c20a051d088363a",
5
+ "packageManager": "pnpm@12.4.2+sha512.08adc6613180275c7c9edada39dcf08c9c61ad4e7eaf330a4f3461f102b0f907423454d117f98e72d47fef0616070644d7bffc973a6a57f5090a6d7c368b07c9",
6
6
  "sideEffects": false,
7
7
  "scripts": {
8
8
  "build": "vite build && tsx ./build.ts",