@vector-im/compound-design-tokens 6.10.1 → 7.0.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.
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function AiIcon(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: "M9.5 2 11 6.5 15.5 8 11 9.5 9.5 14 8 9.5 3.5 8 8 6.5zm9.5 9 1 3 3 1-3 1-1 3-1-3-3-1 3-1zm-7 6 .75 2.25L15 20l-2.25.75L12 23l-.75-2.25L9 20l2.25-.75z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ AiIcon.displayName = "AiIcon";
19
+ module.exports = React.forwardRef(AiIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * ai.svg
5
+ */
6
+ declare const AiIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default AiIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function AiIcon(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: "M9.5 2 11 6.5 15.5 8 11 9.5 9.5 14 8 9.5 3.5 8 8 6.5zm9.5 9 1 3 3 1-3 1-1 3-1-3-3-1 3-1zm-7 6 .75 2.25L15 20l-2.25.75L12 23l-.75-2.25L9 20l2.25-.75z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ AiIcon.displayName = "AiIcon";
19
+ export default forwardRef(AiIcon);
@@ -0,0 +1,23 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function DevicePasskeyIcon(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
+ fillRule: "evenodd",
14
+ d: "M19.5 9.385q1.458 0 2.48 1.021Q23 11.426 23 12.885q0 1.122-.642 2.027a3.4 3.4 0 0 1-1.691 1.269v.204l.758.759q.088.087.124.189a.7.7 0 0 1 .036.219q0 .116-.036.218a.5.5 0 0 1-.124.19l-.758.759.802 1.02a.6.6 0 0 1 .11.197.5.5 0 0 1 .02.226.57.57 0 0 1-.204.38l-1.501 1.313a.62.62 0 0 1-.409.145.5.5 0 0 1-.212-.044.6.6 0 0 1-.167-.116l-.598-.599a.58.58 0 0 1-.175-.423v-4.637a3.54 3.54 0 0 1-1.875-1.553A3.36 3.36 0 0 1 16 12.885q0-1.458 1.02-2.479 1.022-1.02 2.48-1.021m0 2.334q-.481 0-.824.343a1.12 1.12 0 0 0-.343.823q0 .48.343.824.342.343.824.343t.824-.343q.343-.342.343-.824 0-.48-.343-.823a1.12 1.12 0 0 0-.824-.343",
15
+ clipRule: "evenodd"
16
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
17
+ d: "M11 13.125q1.532 0 3.025.298a5.25 5.25 0 0 0 1.054 2.737q.542.714 1.254 1.217v3.441q0 .092.007.182H3.125q-.478 0-.802-.323A1.1 1.1 0 0 1 2 19.875V17.85q0-.957.492-1.758A3.3 3.3 0 0 1 3.8 14.869a16.7 16.7 0 0 1 3.544-1.309A15.5 15.5 0 0 1 11 13.125M11 3q1.857 0 3.178 1.322Q15.5 5.644 15.5 7.5t-1.322 3.178T11 12t-3.178-1.322T6.5 7.5t1.322-3.178T11 3"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ DevicePasskeyIcon.displayName = "DevicePasskeyIcon";
23
+ module.exports = React.forwardRef(DevicePasskeyIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * device-passkey.svg
5
+ */
6
+ declare const DevicePasskeyIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default DevicePasskeyIcon;
@@ -0,0 +1,23 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function DevicePasskeyIcon(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
+ fillRule: "evenodd",
14
+ d: "M19.5 9.385q1.458 0 2.48 1.021Q23 11.426 23 12.885q0 1.122-.642 2.027a3.4 3.4 0 0 1-1.691 1.269v.204l.758.759q.088.087.124.189a.7.7 0 0 1 .036.219q0 .116-.036.218a.5.5 0 0 1-.124.19l-.758.759.802 1.02a.6.6 0 0 1 .11.197.5.5 0 0 1 .02.226.57.57 0 0 1-.204.38l-1.501 1.313a.62.62 0 0 1-.409.145.5.5 0 0 1-.212-.044.6.6 0 0 1-.167-.116l-.598-.599a.58.58 0 0 1-.175-.423v-4.637a3.54 3.54 0 0 1-1.875-1.553A3.36 3.36 0 0 1 16 12.885q0-1.458 1.02-2.479 1.022-1.02 2.48-1.021m0 2.334q-.481 0-.824.343a1.12 1.12 0 0 0-.343.823q0 .48.343.824.342.343.824.343t.824-.343q.343-.342.343-.824 0-.48-.343-.823a1.12 1.12 0 0 0-.824-.343",
15
+ clipRule: "evenodd"
16
+ }), /*#__PURE__*/_jsx("path", {
17
+ d: "M11 13.125q1.532 0 3.025.298a5.25 5.25 0 0 0 1.054 2.737q.542.714 1.254 1.217v3.441q0 .092.007.182H3.125q-.478 0-.802-.323A1.1 1.1 0 0 1 2 19.875V17.85q0-.957.492-1.758A3.3 3.3 0 0 1 3.8 14.869a16.7 16.7 0 0 1 3.544-1.309A15.5 15.5 0 0 1 11 13.125M11 3q1.857 0 3.178 1.322Q15.5 5.644 15.5 7.5t-1.322 3.178T11 12t-3.178-1.322T6.5 7.5t1.322-3.178T11 3"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ DevicePasskeyIcon.displayName = "DevicePasskeyIcon";
23
+ export default forwardRef(DevicePasskeyIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function FolderIcon(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: "M4 20q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 18V6q0-.824.587-1.412A1.93 1.93 0 0 1 4 4h6l2 2h8q.824 0 1.413.588Q22 7.175 22 8v10q0 .824-.587 1.413A1.93 1.93 0 0 1 20 20zm0-2h16V8h-8.825l-2-2H4z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FolderIcon.displayName = "FolderIcon";
19
+ module.exports = React.forwardRef(FolderIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * folder.svg
5
+ */
6
+ declare const FolderIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default FolderIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function FolderIcon(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: "M4 20q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 18V6q0-.824.587-1.412A1.93 1.93 0 0 1 4 4h6l2 2h8q.824 0 1.413.588Q22 7.175 22 8v10q0 .824-.587 1.413A1.93 1.93 0 0 1 20 20zm0-2h16V8h-8.825l-2-2H4z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FolderIcon.displayName = "FolderIcon";
19
+ export default forwardRef(FolderIcon);
@@ -41,6 +41,7 @@ module.exports = {
41
41
  CopyIcon: require("./copy.cjs"),
42
42
  DarkModeIcon: require("./dark-mode.cjs"),
43
43
  DeleteIcon: require("./delete.cjs"),
44
+ DevicePasskeyIcon: require("./device-passkey.cjs"),
44
45
  DevicesIcon: require("./devices.cjs"),
45
46
  DialPadIcon: require("./dial-pad.cjs"),
46
47
  DocumentIcon: require("./document.cjs"),
@@ -67,6 +68,7 @@ module.exports = {
67
68
  FileErrorIcon: require("./file-error.cjs"),
68
69
  FilesIcon: require("./files.cjs"),
69
70
  FilterIcon: require("./filter.cjs"),
71
+ FolderIcon: require("./folder.cjs"),
70
72
  ForwardIcon: require("./forward.cjs"),
71
73
  FullScreenIcon: require("./full-screen.cjs"),
72
74
  GridIcon: require("./grid.cjs"),
@@ -40,6 +40,7 @@ export { default as ComputerIcon } from "./computer.js";
40
40
  export { default as CopyIcon } from "./copy.js";
41
41
  export { default as DarkModeIcon } from "./dark-mode.js";
42
42
  export { default as DeleteIcon } from "./delete.js";
43
+ export { default as DevicePasskeyIcon } from "./device-passkey.js";
43
44
  export { default as DevicesIcon } from "./devices.js";
44
45
  export { default as DialPadIcon } from "./dial-pad.js";
45
46
  export { default as DocumentIcon } from "./document.js";
@@ -66,6 +67,7 @@ export { default as FavouriteIcon } from "./favourite.js";
66
67
  export { default as FileErrorIcon } from "./file-error.js";
67
68
  export { default as FilesIcon } from "./files.js";
68
69
  export { default as FilterIcon } from "./filter.js";
70
+ export { default as FolderIcon } from "./folder.js";
69
71
  export { default as ForwardIcon } from "./forward.js";
70
72
  export { default as FullScreenIcon } from "./full-screen.js";
71
73
  export { default as GridIcon } from "./grid.js";
@@ -40,6 +40,7 @@ export { default as ComputerIcon } from "./computer.js";
40
40
  export { default as CopyIcon } from "./copy.js";
41
41
  export { default as DarkModeIcon } from "./dark-mode.js";
42
42
  export { default as DeleteIcon } from "./delete.js";
43
+ export { default as DevicePasskeyIcon } from "./device-passkey.js";
43
44
  export { default as DevicesIcon } from "./devices.js";
44
45
  export { default as DialPadIcon } from "./dial-pad.js";
45
46
  export { default as DocumentIcon } from "./document.js";
@@ -66,6 +67,7 @@ export { default as FavouriteIcon } from "./favourite.js";
66
67
  export { default as FileErrorIcon } from "./file-error.js";
67
68
  export { default as FilesIcon } from "./files.js";
68
69
  export { default as FilterIcon } from "./filter.js";
70
+ export { default as FolderIcon } from "./folder.js";
69
71
  export { default as ForwardIcon } from "./forward.js";
70
72
  export { default as FullScreenIcon } from "./full-screen.js";
71
73
  export { default as GridIcon } from "./grid.js";
@@ -277,6 +277,7 @@ export const cpdIconPresenceStrikethrough8X8: string;
277
277
  export const cpdIconError: string;
278
278
  export const cpdIconDialPad: string;
279
279
  export const cpdIconReOrder: string;
280
+ export const cpdIconDevicePasskey: string;
280
281
  export const cpdIconSpace: string;
281
282
  export const cpdIconSpaceSolid: string;
282
283
  export const cpdIconGuest: string;
@@ -301,6 +302,7 @@ export const cpdIconStopSolid: string;
301
302
  export const cpdIconStop: string;
302
303
  export const cpdIconTheme: string;
303
304
  export const cpdIconSection: string;
305
+ export const cpdIconFolder: string;
304
306
  export const cpdColorThemeBg: string;
305
307
  export const cpdColorGray100: string;
306
308
  export const cpdColorGray200: string;
@@ -302,6 +302,7 @@ export const cpdIconPresenceStrikethrough8X8 =
302
302
  export const cpdIconError = "icons/error.svg";
303
303
  export const cpdIconDialPad = "icons/dial-pad.svg";
304
304
  export const cpdIconReOrder = "icons/re-order.svg";
305
+ export const cpdIconDevicePasskey = "icons/device-passkey.svg";
305
306
  export const cpdIconSpace = "icons/space.svg";
306
307
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
307
308
  export const cpdIconGuest = "icons/guest.svg";
@@ -329,6 +330,7 @@ export const cpdIconStopSolid = "icons/stop-solid.svg";
329
330
  export const cpdIconStop = "icons/stop.svg";
330
331
  export const cpdIconTheme = "icons/theme.svg";
331
332
  export const cpdIconSection = "icons/section.svg";
333
+ export const cpdIconFolder = "icons/folder.svg";
332
334
  export const cpdColorThemeBg = "#101317";
333
335
  export const cpdColorGray100 = "#14171b";
334
336
  export const cpdColorGray200 = "#181a1f";
@@ -277,6 +277,7 @@ export const cpdIconPresenceStrikethrough8X8: string;
277
277
  export const cpdIconError: string;
278
278
  export const cpdIconDialPad: string;
279
279
  export const cpdIconReOrder: string;
280
+ export const cpdIconDevicePasskey: string;
280
281
  export const cpdIconSpace: string;
281
282
  export const cpdIconSpaceSolid: string;
282
283
  export const cpdIconGuest: string;
@@ -301,6 +302,7 @@ export const cpdIconStopSolid: string;
301
302
  export const cpdIconStop: string;
302
303
  export const cpdIconTheme: string;
303
304
  export const cpdIconSection: string;
305
+ export const cpdIconFolder: string;
304
306
  export const cpdColorThemeBg: string;
305
307
  export const cpdColorGray100: string;
306
308
  export const cpdColorGray200: string;
@@ -302,6 +302,7 @@ export const cpdIconPresenceStrikethrough8X8 =
302
302
  export const cpdIconError = "icons/error.svg";
303
303
  export const cpdIconDialPad = "icons/dial-pad.svg";
304
304
  export const cpdIconReOrder = "icons/re-order.svg";
305
+ export const cpdIconDevicePasskey = "icons/device-passkey.svg";
305
306
  export const cpdIconSpace = "icons/space.svg";
306
307
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
307
308
  export const cpdIconGuest = "icons/guest.svg";
@@ -329,6 +330,7 @@ export const cpdIconStopSolid = "icons/stop-solid.svg";
329
330
  export const cpdIconStop = "icons/stop.svg";
330
331
  export const cpdIconTheme = "icons/theme.svg";
331
332
  export const cpdIconSection = "icons/section.svg";
333
+ export const cpdIconFolder = "icons/folder.svg";
332
334
  export const cpdColorThemeBg = "#101317";
333
335
  export const cpdColorGray100 = "#181a1f";
334
336
  export const cpdColorGray200 = "#1d1f24";
@@ -277,6 +277,7 @@ export const cpdIconPresenceStrikethrough8X8: string;
277
277
  export const cpdIconError: string;
278
278
  export const cpdIconDialPad: string;
279
279
  export const cpdIconReOrder: string;
280
+ export const cpdIconDevicePasskey: string;
280
281
  export const cpdIconSpace: string;
281
282
  export const cpdIconSpaceSolid: string;
282
283
  export const cpdIconGuest: string;
@@ -301,6 +302,7 @@ export const cpdIconStopSolid: string;
301
302
  export const cpdIconStop: string;
302
303
  export const cpdIconTheme: string;
303
304
  export const cpdIconSection: string;
305
+ export const cpdIconFolder: string;
304
306
  export const cpdColorThemeBg: string;
305
307
  export const cpdColorGray100: string;
306
308
  export const cpdColorGray200: string;
@@ -302,6 +302,7 @@ export const cpdIconPresenceStrikethrough8X8 =
302
302
  export const cpdIconError = "icons/error.svg";
303
303
  export const cpdIconDialPad = "icons/dial-pad.svg";
304
304
  export const cpdIconReOrder = "icons/re-order.svg";
305
+ export const cpdIconDevicePasskey = "icons/device-passkey.svg";
305
306
  export const cpdIconSpace = "icons/space.svg";
306
307
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
307
308
  export const cpdIconGuest = "icons/guest.svg";
@@ -329,6 +330,7 @@ export const cpdIconStopSolid = "icons/stop-solid.svg";
329
330
  export const cpdIconStop = "icons/stop.svg";
330
331
  export const cpdIconTheme = "icons/theme.svg";
331
332
  export const cpdIconSection = "icons/section.svg";
333
+ export const cpdIconFolder = "icons/folder.svg";
332
334
  export const cpdColorThemeBg = "#ffffff";
333
335
  export const cpdColorGray100 = "#fbfcfd";
334
336
  export const cpdColorGray200 = "#f7f9fa";
@@ -277,6 +277,7 @@ export const cpdIconPresenceStrikethrough8X8: string;
277
277
  export const cpdIconError: string;
278
278
  export const cpdIconDialPad: string;
279
279
  export const cpdIconReOrder: string;
280
+ export const cpdIconDevicePasskey: string;
280
281
  export const cpdIconSpace: string;
281
282
  export const cpdIconSpaceSolid: string;
282
283
  export const cpdIconGuest: string;
@@ -301,6 +302,7 @@ export const cpdIconStopSolid: string;
301
302
  export const cpdIconStop: string;
302
303
  export const cpdIconTheme: string;
303
304
  export const cpdIconSection: string;
305
+ export const cpdIconFolder: string;
304
306
  export const cpdColorThemeBg: string;
305
307
  export const cpdColorGray100: string;
306
308
  export const cpdColorGray200: string;
@@ -302,6 +302,7 @@ export const cpdIconPresenceStrikethrough8X8 =
302
302
  export const cpdIconError = "icons/error.svg";
303
303
  export const cpdIconDialPad = "icons/dial-pad.svg";
304
304
  export const cpdIconReOrder = "icons/re-order.svg";
305
+ export const cpdIconDevicePasskey = "icons/device-passkey.svg";
305
306
  export const cpdIconSpace = "icons/space.svg";
306
307
  export const cpdIconSpaceSolid = "icons/space-solid.svg";
307
308
  export const cpdIconGuest = "icons/guest.svg";
@@ -329,6 +330,7 @@ export const cpdIconStopSolid = "icons/stop-solid.svg";
329
330
  export const cpdIconStop = "icons/stop.svg";
330
331
  export const cpdIconTheme = "icons/theme.svg";
331
332
  export const cpdIconSection = "icons/section.svg";
333
+ export const cpdIconFolder = "icons/folder.svg";
332
334
  export const cpdColorThemeBg = "#ffffff";
333
335
  export const cpdColorGray100 = "#f7f9fa";
334
336
  export const cpdColorGray200 = "#f0f2f5";
package/icons/$icons.json CHANGED
@@ -800,6 +800,10 @@
800
800
  "value": "icons/re-order.svg",
801
801
  "type": "icon"
802
802
  },
803
+ "device-passkey": {
804
+ "value": "icons/device-passkey.svg",
805
+ "type": "icon"
806
+ },
803
807
  "space": {
804
808
  "value": "icons/space.svg",
805
809
  "type": "icon"
@@ -895,6 +899,10 @@
895
899
  "section": {
896
900
  "value": "icons/section.svg",
897
901
  "type": "icon"
902
+ },
903
+ "folder": {
904
+ "value": "icons/folder.svg",
905
+ "type": "icon"
898
906
  }
899
907
  }
900
908
  }
@@ -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="M19.5 9.385q1.458 0 2.48 1.021Q23 11.426 23 12.885q0 1.122-.642 2.027a3.4 3.4 0 0 1-1.691 1.269v.204l.758.759q.088.087.124.189a.7.7 0 0 1 .036.219q0 .116-.036.218a.5.5 0 0 1-.124.19l-.758.759.802 1.02a.6.6 0 0 1 .11.197.5.5 0 0 1 .02.226.57.57 0 0 1-.204.38l-1.501 1.313a.62.62 0 0 1-.409.145.5.5 0 0 1-.212-.044.6.6 0 0 1-.167-.116l-.598-.599a.58.58 0 0 1-.175-.423v-4.637a3.54 3.54 0 0 1-1.875-1.553A3.36 3.36 0 0 1 16 12.885q0-1.458 1.02-2.479 1.022-1.02 2.48-1.021m0 2.334q-.481 0-.824.343a1.12 1.12 0 0 0-.343.823q0 .48.343.824.342.343.824.343t.824-.343q.343-.342.343-.824 0-.48-.343-.823a1.12 1.12 0 0 0-.824-.343" clip-rule="evenodd"/><path d="M11 13.125q1.532 0 3.025.298a5.25 5.25 0 0 0 1.054 2.737q.542.714 1.254 1.217v3.441q0 .092.007.182H3.125q-.478 0-.802-.323A1.1 1.1 0 0 1 2 19.875V17.85q0-.957.492-1.758A3.3 3.3 0 0 1 3.8 14.869a16.7 16.7 0 0 1 3.544-1.309A15.5 15.5 0 0 1 11 13.125M11 3q1.857 0 3.178 1.322Q15.5 5.644 15.5 7.5t-1.322 3.178T11 12t-3.178-1.322T6.5 7.5t1.322-3.178T11 3"/></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="M4 20q-.824 0-1.412-.587A1.93 1.93 0 0 1 2 18V6q0-.824.587-1.412A1.93 1.93 0 0 1 4 4h6l2 2h8q.824 0 1.413.588Q22 7.175 22 8v10q0 .824-.587 1.413A1.93 1.93 0 0 1 20 20zm0-2h16V8h-8.825l-2-2H4z"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "6.10.1",
3
+ "version": "7.0.0",
4
4
  "description": "Compound design tokens",
5
5
  "sideEffects": false,
6
6
  "scripts": {