@vector-im/compound-design-tokens 2.0.2 → 2.1.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.
@@ -207,9 +207,9 @@
207
207
  font-style: normal;
208
208
  font-weight: 500;
209
209
  font-display: swap;
210
- ascent-override: 96.9911%;
211
- descent-override: 24.15%;
212
- size-adjust: 99.8803%;
210
+ ascent-override: 96.7903%;
211
+ descent-override: 24.1%;
212
+ size-adjust: 100.0875%;
213
213
  }
214
214
 
215
215
  @font-face {
@@ -336,9 +336,9 @@
336
336
  font-style: normal;
337
337
  font-weight: 600;
338
338
  font-display: swap;
339
- ascent-override: 98.0072%;
340
- descent-override: 24.403%;
341
- size-adjust: 98.8448%;
339
+ ascent-override: 97.8084%;
340
+ descent-override: 24.3535%;
341
+ size-adjust: 99.0457%;
342
342
  }
343
343
  @font-face {
344
344
  font-family: "Inter Fallback: Arial";
@@ -0,0 +1,20 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function AudioIcon(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
+ fill: "#1B1D22",
14
+ d: "M12 3a1 1 0 0 1 1 1v16a1 1 0 1 1-2 0V4a1 1 0 0 1 1-1Zm4 3a1 1 0 0 1 1 1v10a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm5 4a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4ZM4 9a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm5-2a1 1 0 0 0-2 0v10a1 1 0 1 0 2 0V7Z"
15
+ })
16
+ });
17
+ }
18
+ ;
19
+ AudioIcon.displayName = "AudioIcon";
20
+ module.exports = React.forwardRef(AudioIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * audio.svg
5
+ */
6
+ declare const AudioIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default AudioIcon;
@@ -0,0 +1,20 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function AudioIcon(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
+ fill: "#1B1D22",
14
+ d: "M12 3a1 1 0 0 1 1 1v16a1 1 0 1 1-2 0V4a1 1 0 0 1 1-1Zm4 3a1 1 0 0 1 1 1v10a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm5 4a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4ZM4 9a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm5-2a1 1 0 0 0-2 0v10a1 1 0 1 0 2 0V7Z"
15
+ })
16
+ });
17
+ }
18
+ ;
19
+ AudioIcon.displayName = "AudioIcon";
20
+ export default forwardRef(AudioIcon);
@@ -8,6 +8,7 @@ module.exports = {
8
8
  AskToJoinSolidIcon: require("./ask-to-join-solid.cjs"),
9
9
  AskToJoinIcon: require("./ask-to-join.cjs"),
10
10
  AttachmentIcon: require("./attachment.cjs"),
11
+ AudioIcon: require("./audio.cjs"),
11
12
  BlockIcon: require("./block.cjs"),
12
13
  BoldIcon: require("./bold.cjs"),
13
14
  CalendarIcon: require("./calendar.cjs"),
@@ -123,6 +124,9 @@ module.exports = {
123
124
  PollsIcon: require("./polls.cjs"),
124
125
  PopOutIcon: require("./pop-out.cjs"),
125
126
  PreferencesIcon: require("./preferences.cjs"),
127
+ PresenceOutline8X8Icon: require("./presence-outline-8x8.cjs"),
128
+ PresenceSolid8X8Icon: require("./presence-solid-8x8.cjs"),
129
+ PresenceStrikethrough8X8Icon: require("./presence-strikethrough-8x8.cjs"),
126
130
  PublicIcon: require("./public.cjs"),
127
131
  QrCodeIcon: require("./qr-code.cjs"),
128
132
  QuoteIcon: require("./quote.cjs"),
@@ -7,6 +7,7 @@ export { default as ArrowUpIcon } from "./arrow-up.js";
7
7
  export { default as AskToJoinSolidIcon } from "./ask-to-join-solid.js";
8
8
  export { default as AskToJoinIcon } from "./ask-to-join.js";
9
9
  export { default as AttachmentIcon } from "./attachment.js";
10
+ export { default as AudioIcon } from "./audio.js";
10
11
  export { default as BlockIcon } from "./block.js";
11
12
  export { default as BoldIcon } from "./bold.js";
12
13
  export { default as CalendarIcon } from "./calendar.js";
@@ -122,6 +123,9 @@ export { default as PollsEndIcon } from "./polls-end.js";
122
123
  export { default as PollsIcon } from "./polls.js";
123
124
  export { default as PopOutIcon } from "./pop-out.js";
124
125
  export { default as PreferencesIcon } from "./preferences.js";
126
+ export { default as PresenceOutline8X8Icon } from "./presence-outline-8x8.js";
127
+ export { default as PresenceSolid8X8Icon } from "./presence-solid-8x8.js";
128
+ export { default as PresenceStrikethrough8X8Icon } from "./presence-strikethrough-8x8.js";
125
129
  export { default as PublicIcon } from "./public.js";
126
130
  export { default as QrCodeIcon } from "./qr-code.js";
127
131
  export { default as QuoteIcon } from "./quote.js";
@@ -7,6 +7,7 @@ export { default as ArrowUpIcon } from "./arrow-up.js";
7
7
  export { default as AskToJoinSolidIcon } from "./ask-to-join-solid.js";
8
8
  export { default as AskToJoinIcon } from "./ask-to-join.js";
9
9
  export { default as AttachmentIcon } from "./attachment.js";
10
+ export { default as AudioIcon } from "./audio.js";
10
11
  export { default as BlockIcon } from "./block.js";
11
12
  export { default as BoldIcon } from "./bold.js";
12
13
  export { default as CalendarIcon } from "./calendar.js";
@@ -122,6 +123,9 @@ export { default as PollsEndIcon } from "./polls-end.js";
122
123
  export { default as PollsIcon } from "./polls.js";
123
124
  export { default as PopOutIcon } from "./pop-out.js";
124
125
  export { default as PreferencesIcon } from "./preferences.js";
126
+ export { default as PresenceOutline8X8Icon } from "./presence-outline-8x8.js";
127
+ export { default as PresenceSolid8X8Icon } from "./presence-solid-8x8.js";
128
+ export { default as PresenceStrikethrough8X8Icon } from "./presence-strikethrough-8x8.js";
125
129
  export { default as PublicIcon } from "./public.js";
126
130
  export { default as QrCodeIcon } from "./qr-code.js";
127
131
  export { default as QuoteIcon } from "./quote.js";
@@ -0,0 +1,31 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function PresenceOutline8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M4 6.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM4 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z",
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 0h8v8H0z"
24
+ })
25
+ })
26
+ })]
27
+ });
28
+ }
29
+ ;
30
+ PresenceOutline8X8Icon.displayName = "PresenceOutline8X8Icon";
31
+ module.exports = React.forwardRef(PresenceOutline8X8Icon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * presence-outline-8x8.svg
5
+ */
6
+ declare const PresenceOutline8X8Icon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default PresenceOutline8X8Icon;
@@ -0,0 +1,31 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function PresenceOutline8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M4 6.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM4 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z",
17
+ clipRule: "evenodd"
18
+ })
19
+ }), /*#__PURE__*/_jsx("defs", {
20
+ children: /*#__PURE__*/_jsx("clipPath", {
21
+ id: "a",
22
+ children: /*#__PURE__*/_jsx("path", {
23
+ d: "M0 0h8v8H0z"
24
+ })
25
+ })
26
+ })]
27
+ });
28
+ }
29
+ ;
30
+ PresenceOutline8X8Icon.displayName = "PresenceOutline8X8Icon";
31
+ export default forwardRef(PresenceOutline8X8Icon);
@@ -0,0 +1,29 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function PresenceSolid8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
16
+ })
17
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
18
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
19
+ id: "a",
20
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
21
+ d: "M0 0h8v8H0z"
22
+ })
23
+ })
24
+ })]
25
+ });
26
+ }
27
+ ;
28
+ PresenceSolid8X8Icon.displayName = "PresenceSolid8X8Icon";
29
+ module.exports = React.forwardRef(PresenceSolid8X8Icon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * presence-solid-8x8.svg
5
+ */
6
+ declare const PresenceSolid8X8Icon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default PresenceSolid8X8Icon;
@@ -0,0 +1,29 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function PresenceSolid8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_jsx("path", {
15
+ d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
16
+ })
17
+ }), /*#__PURE__*/_jsx("defs", {
18
+ children: /*#__PURE__*/_jsx("clipPath", {
19
+ id: "a",
20
+ children: /*#__PURE__*/_jsx("path", {
21
+ d: "M0 0h8v8H0z"
22
+ })
23
+ })
24
+ })]
25
+ });
26
+ }
27
+ ;
28
+ PresenceSolid8X8Icon.displayName = "PresenceSolid8X8Icon";
29
+ export default forwardRef(PresenceSolid8X8Icon);
@@ -0,0 +1,31 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function PresenceStrikethrough8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_reactJsxRuntime.jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM5.435 6.048A2.5 2.5 0 0 1 1.687 3.05l3.748 2.998Zm.914-1.19L2.648 1.897a2.5 2.5 0 0 1 3.701 2.961Z",
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 0h8v8H0z"
24
+ })
25
+ })
26
+ })]
27
+ });
28
+ }
29
+ ;
30
+ PresenceStrikethrough8X8Icon.displayName = "PresenceStrikethrough8X8Icon";
31
+ module.exports = React.forwardRef(PresenceStrikethrough8X8Icon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * presence-strikethrough-8x8.svg
5
+ */
6
+ declare const PresenceStrikethrough8X8Icon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default PresenceStrikethrough8X8Icon;
@@ -0,0 +1,31 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function PresenceStrikethrough8X8Icon(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 8 8",
10
+ ref: ref,
11
+ ...props,
12
+ children: [/*#__PURE__*/_jsx("g", {
13
+ clipPath: "url(#a)",
14
+ children: /*#__PURE__*/_jsx("path", {
15
+ fillRule: "evenodd",
16
+ d: "M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM5.435 6.048A2.5 2.5 0 0 1 1.687 3.05l3.748 2.998Zm.914-1.19L2.648 1.897a2.5 2.5 0 0 1 3.701 2.961Z",
17
+ clipRule: "evenodd"
18
+ })
19
+ }), /*#__PURE__*/_jsx("defs", {
20
+ children: /*#__PURE__*/_jsx("clipPath", {
21
+ id: "a",
22
+ children: /*#__PURE__*/_jsx("path", {
23
+ d: "M0 0h8v8H0z"
24
+ })
25
+ })
26
+ })]
27
+ });
28
+ }
29
+ ;
30
+ PresenceStrikethrough8X8Icon.displayName = "PresenceStrikethrough8X8Icon";
31
+ export default forwardRef(PresenceStrikethrough8X8Icon);
@@ -86,6 +86,7 @@ export const cpdIconArrowUp: string;
86
86
  export const cpdIconAskToJoinSolid: string;
87
87
  export const cpdIconAskToJoin: string;
88
88
  export const cpdIconAttachment: string;
89
+ export const cpdIconAudio: string;
89
90
  export const cpdIconBlock: string;
90
91
  export const cpdIconBold: string;
91
92
  export const cpdIconCalendar: string;
@@ -201,6 +202,9 @@ export const cpdIconPollsEnd: string;
201
202
  export const cpdIconPolls: string;
202
203
  export const cpdIconPopOut: string;
203
204
  export const cpdIconPreferences: string;
205
+ export const cpdIconPresenceOutline8X8: string;
206
+ export const cpdIconPresenceSolid8X8: string;
207
+ export const cpdIconPresenceStrikethrough8X8: string;
204
208
  export const cpdIconPublic: string;
205
209
  export const cpdIconQrCode: string;
206
210
  export const cpdIconQuote: string;
@@ -108,6 +108,7 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
108
108
  export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
109
109
  export const cpdIconAskToJoin = "icons/ask-to-join.svg";
110
110
  export const cpdIconAttachment = "icons/attachment.svg";
111
+ export const cpdIconAudio = "icons/audio.svg";
111
112
  export const cpdIconBlock = "icons/block.svg";
112
113
  export const cpdIconBold = "icons/bold.svg";
113
114
  export const cpdIconCalendar = "icons/calendar.svg";
@@ -224,6 +225,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
224
225
  export const cpdIconPolls = "icons/polls.svg";
225
226
  export const cpdIconPopOut = "icons/pop-out.svg";
226
227
  export const cpdIconPreferences = "icons/preferences.svg";
228
+ export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
229
+ export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
230
+ export const cpdIconPresenceStrikethrough8X8 =
231
+ "icons/presence-strikethrough-8x8.svg";
227
232
  export const cpdIconPublic = "icons/public.svg";
228
233
  export const cpdIconQrCode = "icons/qr-code.svg";
229
234
  export const cpdIconQuote = "icons/quote.svg";
@@ -86,6 +86,7 @@ export const cpdIconArrowUp: string;
86
86
  export const cpdIconAskToJoinSolid: string;
87
87
  export const cpdIconAskToJoin: string;
88
88
  export const cpdIconAttachment: string;
89
+ export const cpdIconAudio: string;
89
90
  export const cpdIconBlock: string;
90
91
  export const cpdIconBold: string;
91
92
  export const cpdIconCalendar: string;
@@ -201,6 +202,9 @@ export const cpdIconPollsEnd: string;
201
202
  export const cpdIconPolls: string;
202
203
  export const cpdIconPopOut: string;
203
204
  export const cpdIconPreferences: string;
205
+ export const cpdIconPresenceOutline8X8: string;
206
+ export const cpdIconPresenceSolid8X8: string;
207
+ export const cpdIconPresenceStrikethrough8X8: string;
204
208
  export const cpdIconPublic: string;
205
209
  export const cpdIconQrCode: string;
206
210
  export const cpdIconQuote: string;
@@ -108,6 +108,7 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
108
108
  export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
109
109
  export const cpdIconAskToJoin = "icons/ask-to-join.svg";
110
110
  export const cpdIconAttachment = "icons/attachment.svg";
111
+ export const cpdIconAudio = "icons/audio.svg";
111
112
  export const cpdIconBlock = "icons/block.svg";
112
113
  export const cpdIconBold = "icons/bold.svg";
113
114
  export const cpdIconCalendar = "icons/calendar.svg";
@@ -224,6 +225,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
224
225
  export const cpdIconPolls = "icons/polls.svg";
225
226
  export const cpdIconPopOut = "icons/pop-out.svg";
226
227
  export const cpdIconPreferences = "icons/preferences.svg";
228
+ export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
229
+ export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
230
+ export const cpdIconPresenceStrikethrough8X8 =
231
+ "icons/presence-strikethrough-8x8.svg";
227
232
  export const cpdIconPublic = "icons/public.svg";
228
233
  export const cpdIconQrCode = "icons/qr-code.svg";
229
234
  export const cpdIconQuote = "icons/quote.svg";
@@ -86,6 +86,7 @@ export const cpdIconArrowUp: string;
86
86
  export const cpdIconAskToJoinSolid: string;
87
87
  export const cpdIconAskToJoin: string;
88
88
  export const cpdIconAttachment: string;
89
+ export const cpdIconAudio: string;
89
90
  export const cpdIconBlock: string;
90
91
  export const cpdIconBold: string;
91
92
  export const cpdIconCalendar: string;
@@ -201,6 +202,9 @@ export const cpdIconPollsEnd: string;
201
202
  export const cpdIconPolls: string;
202
203
  export const cpdIconPopOut: string;
203
204
  export const cpdIconPreferences: string;
205
+ export const cpdIconPresenceOutline8X8: string;
206
+ export const cpdIconPresenceSolid8X8: string;
207
+ export const cpdIconPresenceStrikethrough8X8: string;
204
208
  export const cpdIconPublic: string;
205
209
  export const cpdIconQrCode: string;
206
210
  export const cpdIconQuote: string;
@@ -108,6 +108,7 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
108
108
  export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
109
109
  export const cpdIconAskToJoin = "icons/ask-to-join.svg";
110
110
  export const cpdIconAttachment = "icons/attachment.svg";
111
+ export const cpdIconAudio = "icons/audio.svg";
111
112
  export const cpdIconBlock = "icons/block.svg";
112
113
  export const cpdIconBold = "icons/bold.svg";
113
114
  export const cpdIconCalendar = "icons/calendar.svg";
@@ -224,6 +225,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
224
225
  export const cpdIconPolls = "icons/polls.svg";
225
226
  export const cpdIconPopOut = "icons/pop-out.svg";
226
227
  export const cpdIconPreferences = "icons/preferences.svg";
228
+ export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
229
+ export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
230
+ export const cpdIconPresenceStrikethrough8X8 =
231
+ "icons/presence-strikethrough-8x8.svg";
227
232
  export const cpdIconPublic = "icons/public.svg";
228
233
  export const cpdIconQrCode = "icons/qr-code.svg";
229
234
  export const cpdIconQuote = "icons/quote.svg";
@@ -86,6 +86,7 @@ export const cpdIconArrowUp: string;
86
86
  export const cpdIconAskToJoinSolid: string;
87
87
  export const cpdIconAskToJoin: string;
88
88
  export const cpdIconAttachment: string;
89
+ export const cpdIconAudio: string;
89
90
  export const cpdIconBlock: string;
90
91
  export const cpdIconBold: string;
91
92
  export const cpdIconCalendar: string;
@@ -201,6 +202,9 @@ export const cpdIconPollsEnd: string;
201
202
  export const cpdIconPolls: string;
202
203
  export const cpdIconPopOut: string;
203
204
  export const cpdIconPreferences: string;
205
+ export const cpdIconPresenceOutline8X8: string;
206
+ export const cpdIconPresenceSolid8X8: string;
207
+ export const cpdIconPresenceStrikethrough8X8: string;
204
208
  export const cpdIconPublic: string;
205
209
  export const cpdIconQrCode: string;
206
210
  export const cpdIconQuote: string;
@@ -108,6 +108,7 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
108
108
  export const cpdIconAskToJoinSolid = "icons/ask-to-join-solid.svg";
109
109
  export const cpdIconAskToJoin = "icons/ask-to-join.svg";
110
110
  export const cpdIconAttachment = "icons/attachment.svg";
111
+ export const cpdIconAudio = "icons/audio.svg";
111
112
  export const cpdIconBlock = "icons/block.svg";
112
113
  export const cpdIconBold = "icons/bold.svg";
113
114
  export const cpdIconCalendar = "icons/calendar.svg";
@@ -224,6 +225,10 @@ export const cpdIconPollsEnd = "icons/polls-end.svg";
224
225
  export const cpdIconPolls = "icons/polls.svg";
225
226
  export const cpdIconPopOut = "icons/pop-out.svg";
226
227
  export const cpdIconPreferences = "icons/preferences.svg";
228
+ export const cpdIconPresenceOutline8X8 = "icons/presence-outline-8x8.svg";
229
+ export const cpdIconPresenceSolid8X8 = "icons/presence-solid-8x8.svg";
230
+ export const cpdIconPresenceStrikethrough8X8 =
231
+ "icons/presence-strikethrough-8x8.svg";
227
232
  export const cpdIconPublic = "icons/public.svg";
228
233
  export const cpdIconQrCode = "icons/qr-code.svg";
229
234
  export const cpdIconQuote = "icons/quote.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"},"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"},"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":{"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"}}}
@@ -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="#1B1D22" d="M12 3a1 1 0 0 1 1 1v16a1 1 0 1 1-2 0V4a1 1 0 0 1 1-1Zm4 3a1 1 0 0 1 1 1v10a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1Zm5 4a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0v-4ZM4 9a1 1 0 0 1 1 1v4a1 1 0 1 1-2 0v-4a1 1 0 0 1 1-1Zm5-2a1 1 0 0 0-2 0v10a1 1 0 1 0 2 0V7Z"/></svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" fill="currentColor" viewBox="0 0 8 8">
2
+ <g clip-path="url(#a)">
3
+ <path fill-rule="evenodd" d="M4 6.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5ZM4 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z" clip-rule="evenodd"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="a">
7
+ <path d="M0 0h8v8H0z"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" fill="currentColor" viewBox="0 0 8 8">
2
+ <g clip-path="url(#a)">
3
+ <path d="M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="a">
7
+ <path d="M0 0h8v8H0z"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" fill="currentColor" viewBox="0 0 8 8">
2
+ <g clip-path="url(#a)">
3
+ <path fill-rule="evenodd" d="M8 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM5.435 6.048A2.5 2.5 0 0 1 1.687 3.05l3.748 2.998Zm.914-1.19L2.648 1.897a2.5 2.5 0 0 1 3.701 2.961Z" clip-rule="evenodd"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="a">
7
+ <path d="M0 0h8v8H0z"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "2.0.2",
3
+ "version": "2.1.1",
4
4
  "description": "Compound design tokens",
5
5
  "sideEffects": false,
6
6
  "scripts": {