@vector-im/compound-design-tokens 10.1.1 → 10.2.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.
Files changed (41) hide show
  1. package/assets/web/icons/crop.cjs +21 -0
  2. package/assets/web/icons/crop.d.ts +11 -0
  3. package/assets/web/icons/crop.js +21 -0
  4. package/assets/web/icons/expand-all.cjs +19 -0
  5. package/assets/web/icons/expand-all.d.ts +11 -0
  6. package/assets/web/icons/expand-all.js +19 -0
  7. package/assets/web/icons/flip-horizontal.cjs +19 -0
  8. package/assets/web/icons/flip-horizontal.d.ts +11 -0
  9. package/assets/web/icons/flip-horizontal.js +19 -0
  10. package/assets/web/icons/flip-vertical.cjs +19 -0
  11. package/assets/web/icons/flip-vertical.d.ts +11 -0
  12. package/assets/web/icons/flip-vertical.js +19 -0
  13. package/assets/web/icons/index.cjs +7 -0
  14. package/assets/web/icons/index.d.ts +7 -0
  15. package/assets/web/icons/index.js +7 -0
  16. package/assets/web/icons/save-solid.cjs +19 -0
  17. package/assets/web/icons/save-solid.d.ts +11 -0
  18. package/assets/web/icons/save-solid.js +19 -0
  19. package/assets/web/icons/save.cjs +19 -0
  20. package/assets/web/icons/save.d.ts +11 -0
  21. package/assets/web/icons/save.js +19 -0
  22. package/assets/web/icons/unsave.cjs +23 -0
  23. package/assets/web/icons/unsave.d.ts +11 -0
  24. package/assets/web/icons/unsave.js +23 -0
  25. package/assets/web/js/cpdDark.d.ts +8 -1
  26. package/assets/web/js/cpdDark.js +8 -1
  27. package/assets/web/js/cpdDarkHc.d.ts +8 -1
  28. package/assets/web/js/cpdDarkHc.js +8 -1
  29. package/assets/web/js/cpdLight.d.ts +8 -1
  30. package/assets/web/js/cpdLight.js +8 -1
  31. package/assets/web/js/cpdLightHc.d.ts +8 -1
  32. package/assets/web/js/cpdLightHc.js +8 -1
  33. package/icons/$icons.json +32 -4
  34. package/icons/crop.svg +1 -0
  35. package/icons/expand-all.svg +1 -0
  36. package/icons/flip-horizontal.svg +1 -0
  37. package/icons/flip-vertical.svg +1 -0
  38. package/icons/save-solid.svg +1 -0
  39. package/icons/save.svg +1 -0
  40. package/icons/unsave.svg +1 -0
  41. package/package.json +1 -1
@@ -0,0 +1,21 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function CropIcon(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: "M6 2a1 1 0 0 1 1 1v13a1 1 0 0 0 1 1h13a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H8a3 3 0 0 1-3-3V7H3a1 1 0 0 1 0-2h2V3a1 1 0 0 1 1-1"
14
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
15
+ d: "M16 5a3 3 0 0 1 3 3v7h-2V8a1 1 0 0 0-1-1H9V5z"
16
+ })]
17
+ });
18
+ }
19
+ ;
20
+ CropIcon.displayName = "CropIcon";
21
+ module.exports = React.forwardRef(CropIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * crop.svg
5
+ */
6
+ declare const CropIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default CropIcon;
@@ -0,0 +1,21 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function CropIcon(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: "M6 2a1 1 0 0 1 1 1v13a1 1 0 0 0 1 1h13a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H8a3 3 0 0 1-3-3V7H3a1 1 0 0 1 0-2h2V3a1 1 0 0 1 1-1"
14
+ }), /*#__PURE__*/_jsx("path", {
15
+ d: "M16 5a3 3 0 0 1 3 3v7h-2V8a1 1 0 0 0-1-1H9V5z"
16
+ })]
17
+ });
18
+ }
19
+ ;
20
+ CropIcon.displayName = "CropIcon";
21
+ export default forwardRef(CropIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function ExpandAllIcon(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: "m12 19.2 3.9-3.9a.95.95 0 0 1 .7-.275q.425 0 .7.275a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7l-3.875 3.875q-.575.575-1.425.575t-1.425-.575L6.7 16.7a.95.95 0 0 1-.275-.7q0-.425.275-.7a.95.95 0 0 1 .7-.275q.425 0 .7.275zm0-14.25-3.9 3.9a.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275.95.95 0 0 1-.275-.7q0-.425.275-.7l3.875-3.875Q11.15 3 12 3t1.425.575L17.3 7.45a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ ExpandAllIcon.displayName = "ExpandAllIcon";
19
+ module.exports = React.forwardRef(ExpandAllIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * expand-all.svg
5
+ */
6
+ declare const ExpandAllIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default ExpandAllIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function ExpandAllIcon(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: "m12 19.2 3.9-3.9a.95.95 0 0 1 .7-.275q.425 0 .7.275a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7l-3.875 3.875q-.575.575-1.425.575t-1.425-.575L6.7 16.7a.95.95 0 0 1-.275-.7q0-.425.275-.7a.95.95 0 0 1 .7-.275q.425 0 .7.275zm0-14.25-3.9 3.9a.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275.95.95 0 0 1-.275-.7q0-.425.275-.7l3.875-3.875Q11.15 3 12 3t1.425.575L17.3 7.45a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ ExpandAllIcon.displayName = "ExpandAllIcon";
19
+ export default forwardRef(ExpandAllIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function FlipHorizontalIcon(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: "M12 2a1 1 0 0 1 1 1v18a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1M2 8a1 1 0 0 1 1.6-.8l5.334 4a1 1 0 0 1 0 1.6l-5.334 4A1 1 0 0 1 2 16zm18.4-.8A1 1 0 0 1 22 8v8a1 1 0 0 1-1.6.8l-5.334-4a1 1 0 0 1 0-1.6z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FlipHorizontalIcon.displayName = "FlipHorizontalIcon";
19
+ module.exports = React.forwardRef(FlipHorizontalIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * flip-horizontal.svg
5
+ */
6
+ declare const FlipHorizontalIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default FlipHorizontalIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function FlipHorizontalIcon(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: "M12 2a1 1 0 0 1 1 1v18a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1M2 8a1 1 0 0 1 1.6-.8l5.334 4a1 1 0 0 1 0 1.6l-5.334 4A1 1 0 0 1 2 16zm18.4-.8A1 1 0 0 1 22 8v8a1 1 0 0 1-1.6.8l-5.334-4a1 1 0 0 1 0-1.6z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FlipHorizontalIcon.displayName = "FlipHorizontalIcon";
19
+ export default forwardRef(FlipHorizontalIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function FlipVerticalIcon(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: "M11.2 15.066a1 1 0 0 1 1.6 0l4 5.334A1 1 0 0 1 16 22H8a1 1 0 0 1-.8-1.6zM21 11a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2zm-5-9a1 1 0 0 1 .8 1.6l-4 5.334a1 1 0 0 1-1.6 0L7.2 3.6A1 1 0 0 1 8 2z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FlipVerticalIcon.displayName = "FlipVerticalIcon";
19
+ module.exports = React.forwardRef(FlipVerticalIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * flip-vertical.svg
5
+ */
6
+ declare const FlipVerticalIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default FlipVerticalIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function FlipVerticalIcon(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: "M11.2 15.066a1 1 0 0 1 1.6 0l4 5.334A1 1 0 0 1 16 22H8a1 1 0 0 1-.8-1.6zM21 11a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2zm-5-9a1 1 0 0 1 .8 1.6l-4 5.334a1 1 0 0 1-1.6 0L7.2 3.6A1 1 0 0 1 8 2z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ FlipVerticalIcon.displayName = "FlipVerticalIcon";
19
+ export default forwardRef(FlipVerticalIcon);
@@ -40,6 +40,7 @@ module.exports = {
40
40
  ComposeIcon: require("./compose.cjs"),
41
41
  ComputerIcon: require("./computer.cjs"),
42
42
  CopyIcon: require("./copy.cjs"),
43
+ CropIcon: require("./crop.cjs"),
43
44
  DarkModeIcon: require("./dark-mode.cjs"),
44
45
  DeleteIcon: require("./delete.cjs"),
45
46
  DevicePasskeyIcon: require("./device-passkey.cjs"),
@@ -59,6 +60,7 @@ module.exports = {
59
60
  ErrorSolidIcon: require("./error-solid.cjs"),
60
61
  ErrorIcon: require("./error.cjs"),
61
62
  ExitFullScreenIcon: require("./exit-full-screen.cjs"),
63
+ ExpandAllIcon: require("./expand-all.cjs"),
62
64
  ExpandIcon: require("./expand.cjs"),
63
65
  ExploreIcon: require("./explore.cjs"),
64
66
  ExportArchiveIcon: require("./export-archive.cjs"),
@@ -69,6 +71,8 @@ module.exports = {
69
71
  FileErrorIcon: require("./file-error.cjs"),
70
72
  FilesIcon: require("./files.cjs"),
71
73
  FilterIcon: require("./filter.cjs"),
74
+ FlipHorizontalIcon: require("./flip-horizontal.cjs"),
75
+ FlipVerticalIcon: require("./flip-vertical.cjs"),
72
76
  FolderIcon: require("./folder.cjs"),
73
77
  ForwardIcon: require("./forward.cjs"),
74
78
  FullScreenIcon: require("./full-screen.cjs"),
@@ -159,6 +163,8 @@ module.exports = {
159
163
  RoomIcon: require("./room.cjs"),
160
164
  RotateLeftIcon: require("./rotate-left.cjs"),
161
165
  RotateRightIcon: require("./rotate-right.cjs"),
166
+ SaveSolidIcon: require("./save-solid.cjs"),
167
+ SaveIcon: require("./save.cjs"),
162
168
  SearchIcon: require("./search.cjs"),
163
169
  SectionIcon: require("./section.cjs"),
164
170
  SendSolidIcon: require("./send-solid.cjs"),
@@ -196,6 +202,7 @@ module.exports = {
196
202
  UnknownSolidIcon: require("./unknown-solid.cjs"),
197
203
  UnknownIcon: require("./unknown.cjs"),
198
204
  UnpinIcon: require("./unpin.cjs"),
205
+ UnsaveIcon: require("./unsave.cjs"),
199
206
  UserAddSolidIcon: require("./user-add-solid.cjs"),
200
207
  UserAddIcon: require("./user-add.cjs"),
201
208
  UserProfileSolidIcon: require("./user-profile-solid.cjs"),
@@ -39,6 +39,7 @@ export { default as CompanyIcon } from "./company.js";
39
39
  export { default as ComposeIcon } from "./compose.js";
40
40
  export { default as ComputerIcon } from "./computer.js";
41
41
  export { default as CopyIcon } from "./copy.js";
42
+ export { default as CropIcon } from "./crop.js";
42
43
  export { default as DarkModeIcon } from "./dark-mode.js";
43
44
  export { default as DeleteIcon } from "./delete.js";
44
45
  export { default as DevicePasskeyIcon } from "./device-passkey.js";
@@ -58,6 +59,7 @@ export { default as EndCallIcon } from "./end-call.js";
58
59
  export { default as ErrorSolidIcon } from "./error-solid.js";
59
60
  export { default as ErrorIcon } from "./error.js";
60
61
  export { default as ExitFullScreenIcon } from "./exit-full-screen.js";
62
+ export { default as ExpandAllIcon } from "./expand-all.js";
61
63
  export { default as ExpandIcon } from "./expand.js";
62
64
  export { default as ExploreIcon } from "./explore.js";
63
65
  export { default as ExportArchiveIcon } from "./export-archive.js";
@@ -68,6 +70,8 @@ export { default as FavouriteIcon } from "./favourite.js";
68
70
  export { default as FileErrorIcon } from "./file-error.js";
69
71
  export { default as FilesIcon } from "./files.js";
70
72
  export { default as FilterIcon } from "./filter.js";
73
+ export { default as FlipHorizontalIcon } from "./flip-horizontal.js";
74
+ export { default as FlipVerticalIcon } from "./flip-vertical.js";
71
75
  export { default as FolderIcon } from "./folder.js";
72
76
  export { default as ForwardIcon } from "./forward.js";
73
77
  export { default as FullScreenIcon } from "./full-screen.js";
@@ -158,6 +162,8 @@ export { default as RestartIcon } from "./restart.js";
158
162
  export { default as RoomIcon } from "./room.js";
159
163
  export { default as RotateLeftIcon } from "./rotate-left.js";
160
164
  export { default as RotateRightIcon } from "./rotate-right.js";
165
+ export { default as SaveSolidIcon } from "./save-solid.js";
166
+ export { default as SaveIcon } from "./save.js";
161
167
  export { default as SearchIcon } from "./search.js";
162
168
  export { default as SectionIcon } from "./section.js";
163
169
  export { default as SendSolidIcon } from "./send-solid.js";
@@ -195,6 +201,7 @@ export { default as UnderlineIcon } from "./underline.js";
195
201
  export { default as UnknownSolidIcon } from "./unknown-solid.js";
196
202
  export { default as UnknownIcon } from "./unknown.js";
197
203
  export { default as UnpinIcon } from "./unpin.js";
204
+ export { default as UnsaveIcon } from "./unsave.js";
198
205
  export { default as UserAddSolidIcon } from "./user-add-solid.js";
199
206
  export { default as UserAddIcon } from "./user-add.js";
200
207
  export { default as UserProfileSolidIcon } from "./user-profile-solid.js";
@@ -39,6 +39,7 @@ export { default as CompanyIcon } from "./company.js";
39
39
  export { default as ComposeIcon } from "./compose.js";
40
40
  export { default as ComputerIcon } from "./computer.js";
41
41
  export { default as CopyIcon } from "./copy.js";
42
+ export { default as CropIcon } from "./crop.js";
42
43
  export { default as DarkModeIcon } from "./dark-mode.js";
43
44
  export { default as DeleteIcon } from "./delete.js";
44
45
  export { default as DevicePasskeyIcon } from "./device-passkey.js";
@@ -58,6 +59,7 @@ export { default as EndCallIcon } from "./end-call.js";
58
59
  export { default as ErrorSolidIcon } from "./error-solid.js";
59
60
  export { default as ErrorIcon } from "./error.js";
60
61
  export { default as ExitFullScreenIcon } from "./exit-full-screen.js";
62
+ export { default as ExpandAllIcon } from "./expand-all.js";
61
63
  export { default as ExpandIcon } from "./expand.js";
62
64
  export { default as ExploreIcon } from "./explore.js";
63
65
  export { default as ExportArchiveIcon } from "./export-archive.js";
@@ -68,6 +70,8 @@ export { default as FavouriteIcon } from "./favourite.js";
68
70
  export { default as FileErrorIcon } from "./file-error.js";
69
71
  export { default as FilesIcon } from "./files.js";
70
72
  export { default as FilterIcon } from "./filter.js";
73
+ export { default as FlipHorizontalIcon } from "./flip-horizontal.js";
74
+ export { default as FlipVerticalIcon } from "./flip-vertical.js";
71
75
  export { default as FolderIcon } from "./folder.js";
72
76
  export { default as ForwardIcon } from "./forward.js";
73
77
  export { default as FullScreenIcon } from "./full-screen.js";
@@ -158,6 +162,8 @@ export { default as RestartIcon } from "./restart.js";
158
162
  export { default as RoomIcon } from "./room.js";
159
163
  export { default as RotateLeftIcon } from "./rotate-left.js";
160
164
  export { default as RotateRightIcon } from "./rotate-right.js";
165
+ export { default as SaveSolidIcon } from "./save-solid.js";
166
+ export { default as SaveIcon } from "./save.js";
161
167
  export { default as SearchIcon } from "./search.js";
162
168
  export { default as SectionIcon } from "./section.js";
163
169
  export { default as SendSolidIcon } from "./send-solid.js";
@@ -195,6 +201,7 @@ export { default as UnderlineIcon } from "./underline.js";
195
201
  export { default as UnknownSolidIcon } from "./unknown-solid.js";
196
202
  export { default as UnknownIcon } from "./unknown.js";
197
203
  export { default as UnpinIcon } from "./unpin.js";
204
+ export { default as UnsaveIcon } from "./unsave.js";
198
205
  export { default as UserAddSolidIcon } from "./user-add-solid.js";
199
206
  export { default as UserAddIcon } from "./user-add.js";
200
207
  export { default as UserProfileSolidIcon } from "./user-profile-solid.js";
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function SaveSolidIcon(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 2H6a2 2 0 0 0-2 2v16.336c0 1.583 1.75 2.538 3.082 1.683l3.836-2.467a2 2 0 0 1 2.164 0l3.836 2.467c1.331.855 3.082-.1 3.082-1.683V4a2 2 0 0 0-2-2"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ SaveSolidIcon.displayName = "SaveSolidIcon";
19
+ module.exports = React.forwardRef(SaveSolidIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * save-solid.svg
5
+ */
6
+ declare const SaveSolidIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default SaveSolidIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function SaveSolidIcon(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 2H6a2 2 0 0 0-2 2v16.336c0 1.583 1.75 2.538 3.082 1.683l3.836-2.467a2 2 0 0 1 2.164 0l3.836 2.467c1.331.855 3.082-.1 3.082-1.683V4a2 2 0 0 0-2-2"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ SaveSolidIcon.displayName = "SaveSolidIcon";
19
+ export default forwardRef(SaveSolidIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function SaveIcon(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.837 17.869a4 4 0 0 1 4.326 0L18 20.336V4H6v16.336zM20 20.336c0 1.582-1.751 2.538-3.082 1.682l-3.836-2.466a2 2 0 0 0-2.164 0l-3.836 2.466-.126.076C5.643 22.814 4 21.869 4 20.336V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ SaveIcon.displayName = "SaveIcon";
19
+ module.exports = React.forwardRef(SaveIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * save.svg
5
+ */
6
+ declare const SaveIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default SaveIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function SaveIcon(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.837 17.869a4 4 0 0 1 4.326 0L18 20.336V4H6v16.336zM20 20.336c0 1.582-1.751 2.538-3.082 1.682l-3.836-2.466a2 2 0 0 0-2.164 0l-3.836 2.466-.126.076C5.643 22.814 4 21.869 4 20.336V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ SaveIcon.displayName = "SaveIcon";
19
+ export default forwardRef(SaveIcon);
@@ -0,0 +1,23 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function UnsaveIcon(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: "M3.503 2.083a1 1 0 0 1 1.414 0l17 17a1 1 0 1 1-1.414 1.414L20 19.994v.342c0 1.582-1.75 2.538-3.082 1.683l-3.836-2.467a2 2 0 0 0-2.164 0l-3.836 2.467-.126.075C5.643 22.814 4 21.869 4 20.336V3.994l-.497-.497a1 1 0 0 1 0-1.414M6 20.336l3.837-2.467a4 4 0 0 1 4.326 0L18 20.336v-2.342l-12-12z",
15
+ clipRule: "evenodd"
16
+ }), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
17
+ d: "M18 2a2 2 0 0 1 2 2v10.35l-2-2V4H9.65l-2-2z"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ UnsaveIcon.displayName = "UnsaveIcon";
23
+ module.exports = React.forwardRef(UnsaveIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * unsave.svg
5
+ */
6
+ declare const UnsaveIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default UnsaveIcon;
@@ -0,0 +1,23 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ function UnsaveIcon(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: "M3.503 2.083a1 1 0 0 1 1.414 0l17 17a1 1 0 1 1-1.414 1.414L20 19.994v.342c0 1.582-1.75 2.538-3.082 1.683l-3.836-2.467a2 2 0 0 0-2.164 0l-3.836 2.467-.126.075C5.643 22.814 4 21.869 4 20.336V3.994l-.497-.497a1 1 0 0 1 0-1.414M6 20.336l3.837-2.467a4 4 0 0 1 4.326 0L18 20.336v-2.342l-12-12z",
15
+ clipRule: "evenodd"
16
+ }), /*#__PURE__*/_jsx("path", {
17
+ d: "M18 2a2 2 0 0 1 2 2v10.35l-2-2V4H9.65l-2-2z"
18
+ })]
19
+ });
20
+ }
21
+ ;
22
+ UnsaveIcon.displayName = "UnsaveIcon";
23
+ export default forwardRef(UnsaveIcon);
@@ -207,6 +207,9 @@ export const cpdIconListView: string;
207
207
  export const cpdIconEarpiece: string;
208
208
  export const cpdIconFullScreen: string;
209
209
  export const cpdIconExitFullScreen: string;
210
+ export const cpdIconFlipHorizontal: string;
211
+ export const cpdIconFlipVertical: string;
212
+ export const cpdIconCrop: string;
210
213
  export const cpdIconKeyOffSolid: string;
211
214
  export const cpdIconCloudSolid: string;
212
215
  export const cpdIconKeyOff: string;
@@ -227,6 +230,7 @@ export const cpdIconListBulleted: string;
227
230
  export const cpdIconListNumbered: string;
228
231
  export const cpdIconIndentIncrease: string;
229
232
  export const cpdIconIndentDecrease: string;
233
+ export const cpdIconCalendar: string;
230
234
  export const cpdIconLock: string;
231
235
  export const cpdIconTakePhoto: string;
232
236
  export const cpdIconTakePhotoSolid: string;
@@ -263,7 +267,6 @@ export const cpdIconArrowUp: string;
263
267
  export const cpdIconRoom: string;
264
268
  export const cpdIconMarkAsUnread: string;
265
269
  export const cpdIconMarkAsRead: string;
266
- export const cpdIconCalendar: string;
267
270
  export const cpdIconMac: string;
268
271
  export const cpdIconWindows: string;
269
272
  export const cpdIconLinux: string;
@@ -303,7 +306,11 @@ export const cpdIconStop: string;
303
306
  export const cpdIconTheme: string;
304
307
  export const cpdIconSection: string;
305
308
  export const cpdIconCollapseAll: string;
309
+ export const cpdIconExpandAll: string;
306
310
  export const cpdIconFolder: string;
311
+ export const cpdIconSave: string;
312
+ export const cpdIconUnsave: string;
313
+ export const cpdIconSaveSolid: string;
307
314
  export const cpdColorThemeBg: string;
308
315
  export const cpdColorGray100: string;
309
316
  export const cpdColorGray200: string;
@@ -230,6 +230,9 @@ export const cpdIconListView = "icons/list-view.svg";
230
230
  export const cpdIconEarpiece = "icons/earpiece.svg";
231
231
  export const cpdIconFullScreen = "icons/full-screen.svg";
232
232
  export const cpdIconExitFullScreen = "icons/exit-full-screen.svg";
233
+ export const cpdIconFlipHorizontal = "icons/flip-horizontal.svg";
234
+ export const cpdIconFlipVertical = "icons/flip-vertical.svg";
235
+ export const cpdIconCrop = "icons/crop.svg";
233
236
  export const cpdIconKeyOffSolid = "icons/key-off-solid.svg";
234
237
  export const cpdIconCloudSolid = "icons/cloud-solid.svg";
235
238
  export const cpdIconKeyOff = "icons/key-off.svg";
@@ -251,6 +254,7 @@ export const cpdIconListBulleted = "icons/list-bulleted.svg";
251
254
  export const cpdIconListNumbered = "icons/list-numbered.svg";
252
255
  export const cpdIconIndentIncrease = "icons/indent-increase.svg";
253
256
  export const cpdIconIndentDecrease = "icons/indent-decrease.svg";
257
+ export const cpdIconCalendar = "icons/calendar.svg";
254
258
  export const cpdIconLock = "icons/lock.svg";
255
259
  export const cpdIconTakePhoto = "icons/take-photo.svg";
256
260
  export const cpdIconTakePhotoSolid = "icons/take-photo-solid.svg";
@@ -287,7 +291,6 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
287
291
  export const cpdIconRoom = "icons/room.svg";
288
292
  export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
289
293
  export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
290
- export const cpdIconCalendar = "icons/calendar.svg";
291
294
  export const cpdIconMac = "icons/mac.svg";
292
295
  export const cpdIconWindows = "icons/windows.svg";
293
296
  export const cpdIconLinux = "icons/linux.svg";
@@ -331,7 +334,11 @@ export const cpdIconStop = "icons/stop.svg";
331
334
  export const cpdIconTheme = "icons/theme.svg";
332
335
  export const cpdIconSection = "icons/section.svg";
333
336
  export const cpdIconCollapseAll = "icons/collapse-all.svg";
337
+ export const cpdIconExpandAll = "icons/expand-all.svg";
334
338
  export const cpdIconFolder = "icons/folder.svg";
339
+ export const cpdIconSave = "icons/save.svg";
340
+ export const cpdIconUnsave = "icons/unsave.svg";
341
+ export const cpdIconSaveSolid = "icons/save-solid.svg";
335
342
  export const cpdColorThemeBg = "#101317";
336
343
  export const cpdColorGray100 = "#14171b";
337
344
  export const cpdColorGray200 = "#181a1f";
@@ -207,6 +207,9 @@ export const cpdIconListView: string;
207
207
  export const cpdIconEarpiece: string;
208
208
  export const cpdIconFullScreen: string;
209
209
  export const cpdIconExitFullScreen: string;
210
+ export const cpdIconFlipHorizontal: string;
211
+ export const cpdIconFlipVertical: string;
212
+ export const cpdIconCrop: string;
210
213
  export const cpdIconKeyOffSolid: string;
211
214
  export const cpdIconCloudSolid: string;
212
215
  export const cpdIconKeyOff: string;
@@ -227,6 +230,7 @@ export const cpdIconListBulleted: string;
227
230
  export const cpdIconListNumbered: string;
228
231
  export const cpdIconIndentIncrease: string;
229
232
  export const cpdIconIndentDecrease: string;
233
+ export const cpdIconCalendar: string;
230
234
  export const cpdIconLock: string;
231
235
  export const cpdIconTakePhoto: string;
232
236
  export const cpdIconTakePhotoSolid: string;
@@ -263,7 +267,6 @@ export const cpdIconArrowUp: string;
263
267
  export const cpdIconRoom: string;
264
268
  export const cpdIconMarkAsUnread: string;
265
269
  export const cpdIconMarkAsRead: string;
266
- export const cpdIconCalendar: string;
267
270
  export const cpdIconMac: string;
268
271
  export const cpdIconWindows: string;
269
272
  export const cpdIconLinux: string;
@@ -303,7 +306,11 @@ export const cpdIconStop: string;
303
306
  export const cpdIconTheme: string;
304
307
  export const cpdIconSection: string;
305
308
  export const cpdIconCollapseAll: string;
309
+ export const cpdIconExpandAll: string;
306
310
  export const cpdIconFolder: string;
311
+ export const cpdIconSave: string;
312
+ export const cpdIconUnsave: string;
313
+ export const cpdIconSaveSolid: string;
307
314
  export const cpdColorThemeBg: string;
308
315
  export const cpdColorGray100: string;
309
316
  export const cpdColorGray200: string;
@@ -230,6 +230,9 @@ export const cpdIconListView = "icons/list-view.svg";
230
230
  export const cpdIconEarpiece = "icons/earpiece.svg";
231
231
  export const cpdIconFullScreen = "icons/full-screen.svg";
232
232
  export const cpdIconExitFullScreen = "icons/exit-full-screen.svg";
233
+ export const cpdIconFlipHorizontal = "icons/flip-horizontal.svg";
234
+ export const cpdIconFlipVertical = "icons/flip-vertical.svg";
235
+ export const cpdIconCrop = "icons/crop.svg";
233
236
  export const cpdIconKeyOffSolid = "icons/key-off-solid.svg";
234
237
  export const cpdIconCloudSolid = "icons/cloud-solid.svg";
235
238
  export const cpdIconKeyOff = "icons/key-off.svg";
@@ -251,6 +254,7 @@ export const cpdIconListBulleted = "icons/list-bulleted.svg";
251
254
  export const cpdIconListNumbered = "icons/list-numbered.svg";
252
255
  export const cpdIconIndentIncrease = "icons/indent-increase.svg";
253
256
  export const cpdIconIndentDecrease = "icons/indent-decrease.svg";
257
+ export const cpdIconCalendar = "icons/calendar.svg";
254
258
  export const cpdIconLock = "icons/lock.svg";
255
259
  export const cpdIconTakePhoto = "icons/take-photo.svg";
256
260
  export const cpdIconTakePhotoSolid = "icons/take-photo-solid.svg";
@@ -287,7 +291,6 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
287
291
  export const cpdIconRoom = "icons/room.svg";
288
292
  export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
289
293
  export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
290
- export const cpdIconCalendar = "icons/calendar.svg";
291
294
  export const cpdIconMac = "icons/mac.svg";
292
295
  export const cpdIconWindows = "icons/windows.svg";
293
296
  export const cpdIconLinux = "icons/linux.svg";
@@ -331,7 +334,11 @@ export const cpdIconStop = "icons/stop.svg";
331
334
  export const cpdIconTheme = "icons/theme.svg";
332
335
  export const cpdIconSection = "icons/section.svg";
333
336
  export const cpdIconCollapseAll = "icons/collapse-all.svg";
337
+ export const cpdIconExpandAll = "icons/expand-all.svg";
334
338
  export const cpdIconFolder = "icons/folder.svg";
339
+ export const cpdIconSave = "icons/save.svg";
340
+ export const cpdIconUnsave = "icons/unsave.svg";
341
+ export const cpdIconSaveSolid = "icons/save-solid.svg";
335
342
  export const cpdColorThemeBg = "#101317";
336
343
  export const cpdColorGray100 = "#181a1f";
337
344
  export const cpdColorGray200 = "#1d1f24";
@@ -207,6 +207,9 @@ export const cpdIconListView: string;
207
207
  export const cpdIconEarpiece: string;
208
208
  export const cpdIconFullScreen: string;
209
209
  export const cpdIconExitFullScreen: string;
210
+ export const cpdIconFlipHorizontal: string;
211
+ export const cpdIconFlipVertical: string;
212
+ export const cpdIconCrop: string;
210
213
  export const cpdIconKeyOffSolid: string;
211
214
  export const cpdIconCloudSolid: string;
212
215
  export const cpdIconKeyOff: string;
@@ -227,6 +230,7 @@ export const cpdIconListBulleted: string;
227
230
  export const cpdIconListNumbered: string;
228
231
  export const cpdIconIndentIncrease: string;
229
232
  export const cpdIconIndentDecrease: string;
233
+ export const cpdIconCalendar: string;
230
234
  export const cpdIconLock: string;
231
235
  export const cpdIconTakePhoto: string;
232
236
  export const cpdIconTakePhotoSolid: string;
@@ -263,7 +267,6 @@ export const cpdIconArrowUp: string;
263
267
  export const cpdIconRoom: string;
264
268
  export const cpdIconMarkAsUnread: string;
265
269
  export const cpdIconMarkAsRead: string;
266
- export const cpdIconCalendar: string;
267
270
  export const cpdIconMac: string;
268
271
  export const cpdIconWindows: string;
269
272
  export const cpdIconLinux: string;
@@ -303,7 +306,11 @@ export const cpdIconStop: string;
303
306
  export const cpdIconTheme: string;
304
307
  export const cpdIconSection: string;
305
308
  export const cpdIconCollapseAll: string;
309
+ export const cpdIconExpandAll: string;
306
310
  export const cpdIconFolder: string;
311
+ export const cpdIconSave: string;
312
+ export const cpdIconUnsave: string;
313
+ export const cpdIconSaveSolid: string;
307
314
  export const cpdColorThemeBg: string;
308
315
  export const cpdColorGray100: string;
309
316
  export const cpdColorGray200: string;
@@ -230,6 +230,9 @@ export const cpdIconListView = "icons/list-view.svg";
230
230
  export const cpdIconEarpiece = "icons/earpiece.svg";
231
231
  export const cpdIconFullScreen = "icons/full-screen.svg";
232
232
  export const cpdIconExitFullScreen = "icons/exit-full-screen.svg";
233
+ export const cpdIconFlipHorizontal = "icons/flip-horizontal.svg";
234
+ export const cpdIconFlipVertical = "icons/flip-vertical.svg";
235
+ export const cpdIconCrop = "icons/crop.svg";
233
236
  export const cpdIconKeyOffSolid = "icons/key-off-solid.svg";
234
237
  export const cpdIconCloudSolid = "icons/cloud-solid.svg";
235
238
  export const cpdIconKeyOff = "icons/key-off.svg";
@@ -251,6 +254,7 @@ export const cpdIconListBulleted = "icons/list-bulleted.svg";
251
254
  export const cpdIconListNumbered = "icons/list-numbered.svg";
252
255
  export const cpdIconIndentIncrease = "icons/indent-increase.svg";
253
256
  export const cpdIconIndentDecrease = "icons/indent-decrease.svg";
257
+ export const cpdIconCalendar = "icons/calendar.svg";
254
258
  export const cpdIconLock = "icons/lock.svg";
255
259
  export const cpdIconTakePhoto = "icons/take-photo.svg";
256
260
  export const cpdIconTakePhotoSolid = "icons/take-photo-solid.svg";
@@ -287,7 +291,6 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
287
291
  export const cpdIconRoom = "icons/room.svg";
288
292
  export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
289
293
  export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
290
- export const cpdIconCalendar = "icons/calendar.svg";
291
294
  export const cpdIconMac = "icons/mac.svg";
292
295
  export const cpdIconWindows = "icons/windows.svg";
293
296
  export const cpdIconLinux = "icons/linux.svg";
@@ -331,7 +334,11 @@ export const cpdIconStop = "icons/stop.svg";
331
334
  export const cpdIconTheme = "icons/theme.svg";
332
335
  export const cpdIconSection = "icons/section.svg";
333
336
  export const cpdIconCollapseAll = "icons/collapse-all.svg";
337
+ export const cpdIconExpandAll = "icons/expand-all.svg";
334
338
  export const cpdIconFolder = "icons/folder.svg";
339
+ export const cpdIconSave = "icons/save.svg";
340
+ export const cpdIconUnsave = "icons/unsave.svg";
341
+ export const cpdIconSaveSolid = "icons/save-solid.svg";
335
342
  export const cpdColorThemeBg = "#ffffff";
336
343
  export const cpdColorGray100 = "#fbfcfd";
337
344
  export const cpdColorGray200 = "#f7f9fa";
@@ -207,6 +207,9 @@ export const cpdIconListView: string;
207
207
  export const cpdIconEarpiece: string;
208
208
  export const cpdIconFullScreen: string;
209
209
  export const cpdIconExitFullScreen: string;
210
+ export const cpdIconFlipHorizontal: string;
211
+ export const cpdIconFlipVertical: string;
212
+ export const cpdIconCrop: string;
210
213
  export const cpdIconKeyOffSolid: string;
211
214
  export const cpdIconCloudSolid: string;
212
215
  export const cpdIconKeyOff: string;
@@ -227,6 +230,7 @@ export const cpdIconListBulleted: string;
227
230
  export const cpdIconListNumbered: string;
228
231
  export const cpdIconIndentIncrease: string;
229
232
  export const cpdIconIndentDecrease: string;
233
+ export const cpdIconCalendar: string;
230
234
  export const cpdIconLock: string;
231
235
  export const cpdIconTakePhoto: string;
232
236
  export const cpdIconTakePhotoSolid: string;
@@ -263,7 +267,6 @@ export const cpdIconArrowUp: string;
263
267
  export const cpdIconRoom: string;
264
268
  export const cpdIconMarkAsUnread: string;
265
269
  export const cpdIconMarkAsRead: string;
266
- export const cpdIconCalendar: string;
267
270
  export const cpdIconMac: string;
268
271
  export const cpdIconWindows: string;
269
272
  export const cpdIconLinux: string;
@@ -303,7 +306,11 @@ export const cpdIconStop: string;
303
306
  export const cpdIconTheme: string;
304
307
  export const cpdIconSection: string;
305
308
  export const cpdIconCollapseAll: string;
309
+ export const cpdIconExpandAll: string;
306
310
  export const cpdIconFolder: string;
311
+ export const cpdIconSave: string;
312
+ export const cpdIconUnsave: string;
313
+ export const cpdIconSaveSolid: string;
307
314
  export const cpdColorThemeBg: string;
308
315
  export const cpdColorGray100: string;
309
316
  export const cpdColorGray200: string;
@@ -230,6 +230,9 @@ export const cpdIconListView = "icons/list-view.svg";
230
230
  export const cpdIconEarpiece = "icons/earpiece.svg";
231
231
  export const cpdIconFullScreen = "icons/full-screen.svg";
232
232
  export const cpdIconExitFullScreen = "icons/exit-full-screen.svg";
233
+ export const cpdIconFlipHorizontal = "icons/flip-horizontal.svg";
234
+ export const cpdIconFlipVertical = "icons/flip-vertical.svg";
235
+ export const cpdIconCrop = "icons/crop.svg";
233
236
  export const cpdIconKeyOffSolid = "icons/key-off-solid.svg";
234
237
  export const cpdIconCloudSolid = "icons/cloud-solid.svg";
235
238
  export const cpdIconKeyOff = "icons/key-off.svg";
@@ -251,6 +254,7 @@ export const cpdIconListBulleted = "icons/list-bulleted.svg";
251
254
  export const cpdIconListNumbered = "icons/list-numbered.svg";
252
255
  export const cpdIconIndentIncrease = "icons/indent-increase.svg";
253
256
  export const cpdIconIndentDecrease = "icons/indent-decrease.svg";
257
+ export const cpdIconCalendar = "icons/calendar.svg";
254
258
  export const cpdIconLock = "icons/lock.svg";
255
259
  export const cpdIconTakePhoto = "icons/take-photo.svg";
256
260
  export const cpdIconTakePhotoSolid = "icons/take-photo-solid.svg";
@@ -287,7 +291,6 @@ export const cpdIconArrowUp = "icons/arrow-up.svg";
287
291
  export const cpdIconRoom = "icons/room.svg";
288
292
  export const cpdIconMarkAsUnread = "icons/mark-as-unread.svg";
289
293
  export const cpdIconMarkAsRead = "icons/mark-as-read.svg";
290
- export const cpdIconCalendar = "icons/calendar.svg";
291
294
  export const cpdIconMac = "icons/mac.svg";
292
295
  export const cpdIconWindows = "icons/windows.svg";
293
296
  export const cpdIconLinux = "icons/linux.svg";
@@ -331,7 +334,11 @@ export const cpdIconStop = "icons/stop.svg";
331
334
  export const cpdIconTheme = "icons/theme.svg";
332
335
  export const cpdIconSection = "icons/section.svg";
333
336
  export const cpdIconCollapseAll = "icons/collapse-all.svg";
337
+ export const cpdIconExpandAll = "icons/expand-all.svg";
334
338
  export const cpdIconFolder = "icons/folder.svg";
339
+ export const cpdIconSave = "icons/save.svg";
340
+ export const cpdIconUnsave = "icons/unsave.svg";
341
+ export const cpdIconSaveSolid = "icons/save-solid.svg";
335
342
  export const cpdColorThemeBg = "#ffffff";
336
343
  export const cpdColorGray100 = "#f7f9fa";
337
344
  export const cpdColorGray200 = "#f0f2f5";
package/icons/$icons.json CHANGED
@@ -520,6 +520,18 @@
520
520
  "value": "icons/exit-full-screen.svg",
521
521
  "type": "icon"
522
522
  },
523
+ "flip-horizontal": {
524
+ "value": "icons/flip-horizontal.svg",
525
+ "type": "icon"
526
+ },
527
+ "flip-vertical": {
528
+ "value": "icons/flip-vertical.svg",
529
+ "type": "icon"
530
+ },
531
+ "crop": {
532
+ "value": "icons/crop.svg",
533
+ "type": "icon"
534
+ },
523
535
  "key-off-solid": {
524
536
  "value": "icons/key-off-solid.svg",
525
537
  "type": "icon"
@@ -600,6 +612,10 @@
600
612
  "value": "icons/indent-decrease.svg",
601
613
  "type": "icon"
602
614
  },
615
+ "calendar": {
616
+ "value": "icons/calendar.svg",
617
+ "type": "icon"
618
+ },
603
619
  "lock": {
604
620
  "value": "icons/lock.svg",
605
621
  "type": "icon"
@@ -744,10 +760,6 @@
744
760
  "value": "icons/mark-as-read.svg",
745
761
  "type": "icon"
746
762
  },
747
- "calendar": {
748
- "value": "icons/calendar.svg",
749
- "type": "icon"
750
- },
751
763
  "mac": {
752
764
  "value": "icons/mac.svg",
753
765
  "type": "icon"
@@ -904,9 +916,25 @@
904
916
  "value": "icons/collapse-all.svg",
905
917
  "type": "icon"
906
918
  },
919
+ "expand-all": {
920
+ "value": "icons/expand-all.svg",
921
+ "type": "icon"
922
+ },
907
923
  "folder": {
908
924
  "value": "icons/folder.svg",
909
925
  "type": "icon"
926
+ },
927
+ "save": {
928
+ "value": "icons/save.svg",
929
+ "type": "icon"
930
+ },
931
+ "unsave": {
932
+ "value": "icons/unsave.svg",
933
+ "type": "icon"
934
+ },
935
+ "save-solid": {
936
+ "value": "icons/save-solid.svg",
937
+ "type": "icon"
910
938
  }
911
939
  }
912
940
  }
package/icons/crop.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="M6 2a1 1 0 0 1 1 1v13a1 1 0 0 0 1 1h13a1 1 0 1 1 0 2h-2v2a1 1 0 1 1-2 0v-2H8a3 3 0 0 1-3-3V7H3a1 1 0 0 1 0-2h2V3a1 1 0 0 1 1-1"/><path d="M16 5a3 3 0 0 1 3 3v7h-2V8a1 1 0 0 0-1-1H9V5z"/></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 19.2 3.9-3.9a.95.95 0 0 1 .7-.275q.425 0 .7.275a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7l-3.875 3.875q-.575.575-1.425.575t-1.425-.575L6.7 16.7a.95.95 0 0 1-.275-.7q0-.425.275-.7a.95.95 0 0 1 .7-.275q.425 0 .7.275zm0-14.25-3.9 3.9a.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275.95.95 0 0 1-.275-.7q0-.425.275-.7l3.875-3.875Q11.15 3 12 3t1.425.575L17.3 7.45a.95.95 0 0 1 .275.7.95.95 0 0 1-.275.7.95.95 0 0 1-.7.275.95.95 0 0 1-.7-.275z"/></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 2a1 1 0 0 1 1 1v18a1 1 0 1 1-2 0V3a1 1 0 0 1 1-1M2 8a1 1 0 0 1 1.6-.8l5.334 4a1 1 0 0 1 0 1.6l-5.334 4A1 1 0 0 1 2 16zm18.4-.8A1 1 0 0 1 22 8v8a1 1 0 0 1-1.6.8l-5.334-4a1 1 0 0 1 0-1.6z"/></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="M11.2 15.066a1 1 0 0 1 1.6 0l4 5.334A1 1 0 0 1 16 22H8a1 1 0 0 1-.8-1.6zM21 11a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2zm-5-9a1 1 0 0 1 .8 1.6l-4 5.334a1 1 0 0 1-1.6 0L7.2 3.6A1 1 0 0 1 8 2z"/></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 2H6a2 2 0 0 0-2 2v16.336c0 1.583 1.75 2.538 3.082 1.683l3.836-2.467a2 2 0 0 1 2.164 0l3.836 2.467c1.331.855 3.082-.1 3.082-1.683V4a2 2 0 0 0-2-2"/></svg>
package/icons/save.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="M9.837 17.869a4 4 0 0 1 4.326 0L18 20.336V4H6v16.336zM20 20.336c0 1.582-1.751 2.538-3.082 1.682l-3.836-2.466a2 2 0 0 0-2.164 0l-3.836 2.466-.126.076C5.643 22.814 4 21.869 4 20.336V4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"/></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="M3.503 2.083a1 1 0 0 1 1.414 0l17 17a1 1 0 1 1-1.414 1.414L20 19.994v.342c0 1.582-1.75 2.538-3.082 1.683l-3.836-2.467a2 2 0 0 0-2.164 0l-3.836 2.467-.126.075C5.643 22.814 4 21.869 4 20.336V3.994l-.497-.497a1 1 0 0 1 0-1.414M6 20.336l3.837-2.467a4 4 0 0 1 4.326 0L18 20.336v-2.342l-12-12z" clip-rule="evenodd"/><path d="M18 2a2 2 0 0 1 2 2v10.35l-2-2V4H9.65l-2-2z"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "10.1.1",
3
+ "version": "10.2.1",
4
4
  "description": "Compound design tokens",
5
5
  "sideEffects": false,
6
6
  "scripts": {