@vector-im/compound-design-tokens 6.6.0 → 6.8.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.
@@ -174,11 +174,14 @@ module.exports = {
174
174
  SpotlightViewIcon: require("./spotlight-view.cjs"),
175
175
  SpotlightIcon: require("./spotlight.cjs"),
176
176
  StickerIcon: require("./sticker.cjs"),
177
+ StopSolidIcon: require("./stop-solid.cjs"),
178
+ StopIcon: require("./stop.cjs"),
177
179
  StrikethroughIcon: require("./strikethrough.cjs"),
178
180
  SwitchCameraSolidIcon: require("./switch-camera-solid.cjs"),
179
181
  TakePhotoSolidIcon: require("./take-photo-solid.cjs"),
180
182
  TakePhotoIcon: require("./take-photo.cjs"),
181
183
  TextFormattingIcon: require("./text-formatting.cjs"),
184
+ ThemeIcon: require("./theme.cjs"),
182
185
  ThreadsSolidIcon: require("./threads-solid.cjs"),
183
186
  ThreadsIcon: require("./threads.cjs"),
184
187
  TimeIcon: require("./time.cjs"),
@@ -173,11 +173,14 @@ export { default as SpinnerIcon } from "./spinner.js";
173
173
  export { default as SpotlightViewIcon } from "./spotlight-view.js";
174
174
  export { default as SpotlightIcon } from "./spotlight.js";
175
175
  export { default as StickerIcon } from "./sticker.js";
176
+ export { default as StopSolidIcon } from "./stop-solid.js";
177
+ export { default as StopIcon } from "./stop.js";
176
178
  export { default as StrikethroughIcon } from "./strikethrough.js";
177
179
  export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
178
180
  export { default as TakePhotoSolidIcon } from "./take-photo-solid.js";
179
181
  export { default as TakePhotoIcon } from "./take-photo.js";
180
182
  export { default as TextFormattingIcon } from "./text-formatting.js";
183
+ export { default as ThemeIcon } from "./theme.js";
181
184
  export { default as ThreadsSolidIcon } from "./threads-solid.js";
182
185
  export { default as ThreadsIcon } from "./threads.js";
183
186
  export { default as TimeIcon } from "./time.js";
@@ -173,11 +173,14 @@ export { default as SpinnerIcon } from "./spinner.js";
173
173
  export { default as SpotlightViewIcon } from "./spotlight-view.js";
174
174
  export { default as SpotlightIcon } from "./spotlight.js";
175
175
  export { default as StickerIcon } from "./sticker.js";
176
+ export { default as StopSolidIcon } from "./stop-solid.js";
177
+ export { default as StopIcon } from "./stop.js";
176
178
  export { default as StrikethroughIcon } from "./strikethrough.js";
177
179
  export { default as SwitchCameraSolidIcon } from "./switch-camera-solid.js";
178
180
  export { default as TakePhotoSolidIcon } from "./take-photo-solid.js";
179
181
  export { default as TakePhotoIcon } from "./take-photo.js";
180
182
  export { default as TextFormattingIcon } from "./text-formatting.js";
183
+ export { default as ThemeIcon } from "./theme.js";
181
184
  export { default as ThreadsSolidIcon } from "./threads-solid.js";
182
185
  export { default as ThreadsIcon } from "./threads.js";
183
186
  export { default as TimeIcon } from "./time.js";
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function StopSolidIcon(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 8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ StopSolidIcon.displayName = "StopSolidIcon";
19
+ module.exports = React.forwardRef(StopSolidIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * stop-solid.svg
5
+ */
6
+ declare const StopSolidIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default StopSolidIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function StopSolidIcon(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 8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ StopSolidIcon.displayName = "StopSolidIcon";
19
+ export default forwardRef(StopSolidIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function StopIcon(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: "M16 18v2H8v-2zm2-2V8a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2v2a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4v-2a2 2 0 0 0 2-2"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ StopIcon.displayName = "StopIcon";
19
+ module.exports = React.forwardRef(StopIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * stop.svg
5
+ */
6
+ declare const StopIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default StopIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function StopIcon(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: "M16 18v2H8v-2zm2-2V8a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2v2a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4v-2a2 2 0 0 0 2-2"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ StopIcon.displayName = "StopIcon";
19
+ export default forwardRef(StopIcon);
@@ -0,0 +1,19 @@
1
+ var _reactJsxRuntime = require("react/jsx-runtime");
2
+ var React = require("react");
3
+ function ThemeIcon(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 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10m1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ ThemeIcon.displayName = "ThemeIcon";
19
+ module.exports = React.forwardRef(ThemeIcon);
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+
3
+ /**
4
+ * theme.svg
5
+ */
6
+ declare const ThemeIcon: React.ForwardRefExoticComponent<
7
+ Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
8
+ React.RefAttributes<SVGSVGElement>
9
+ >;
10
+
11
+ export default ThemeIcon;
@@ -0,0 +1,19 @@
1
+ import { forwardRef } from "react";
2
+ import { jsx as _jsx } from "react/jsx-runtime";
3
+ function ThemeIcon(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 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10m1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93z"
14
+ })
15
+ });
16
+ }
17
+ ;
18
+ ThemeIcon.displayName = "ThemeIcon";
19
+ export default forwardRef(ThemeIcon);
@@ -296,6 +296,9 @@ export const cpdIconVideoCallOutgoingSolid: string;
296
296
  export const cpdIconVoiceCallMissedSolid: string;
297
297
  export const cpdIconVoiceCallDeclinedSolid: string;
298
298
  export const cpdIconVoiceCallOutgoingSolid: string;
299
+ export const cpdIconStopSolid: string;
300
+ export const cpdIconStop: string;
301
+ export const cpdIconTheme: string;
299
302
  export const cpdColorThemeBg: string;
300
303
  export const cpdColorGray100: string;
301
304
  export const cpdColorGray200: string;
@@ -324,6 +324,9 @@ export const cpdIconVoiceCallDeclinedSolid =
324
324
  "icons/voice-call-declined-solid.svg";
325
325
  export const cpdIconVoiceCallOutgoingSolid =
326
326
  "icons/voice-call-outgoing-solid.svg";
327
+ export const cpdIconStopSolid = "icons/stop-solid.svg";
328
+ export const cpdIconStop = "icons/stop.svg";
329
+ export const cpdIconTheme = "icons/theme.svg";
327
330
  export const cpdColorThemeBg = "#101317";
328
331
  export const cpdColorGray100 = "#14171b";
329
332
  export const cpdColorGray200 = "#181a1f";
@@ -296,6 +296,9 @@ export const cpdIconVideoCallOutgoingSolid: string;
296
296
  export const cpdIconVoiceCallMissedSolid: string;
297
297
  export const cpdIconVoiceCallDeclinedSolid: string;
298
298
  export const cpdIconVoiceCallOutgoingSolid: string;
299
+ export const cpdIconStopSolid: string;
300
+ export const cpdIconStop: string;
301
+ export const cpdIconTheme: string;
299
302
  export const cpdColorThemeBg: string;
300
303
  export const cpdColorGray100: string;
301
304
  export const cpdColorGray200: string;
@@ -324,6 +324,9 @@ export const cpdIconVoiceCallDeclinedSolid =
324
324
  "icons/voice-call-declined-solid.svg";
325
325
  export const cpdIconVoiceCallOutgoingSolid =
326
326
  "icons/voice-call-outgoing-solid.svg";
327
+ export const cpdIconStopSolid = "icons/stop-solid.svg";
328
+ export const cpdIconStop = "icons/stop.svg";
329
+ export const cpdIconTheme = "icons/theme.svg";
327
330
  export const cpdColorThemeBg = "#101317";
328
331
  export const cpdColorGray100 = "#181a1f";
329
332
  export const cpdColorGray200 = "#1d1f24";
@@ -296,6 +296,9 @@ export const cpdIconVideoCallOutgoingSolid: string;
296
296
  export const cpdIconVoiceCallMissedSolid: string;
297
297
  export const cpdIconVoiceCallDeclinedSolid: string;
298
298
  export const cpdIconVoiceCallOutgoingSolid: string;
299
+ export const cpdIconStopSolid: string;
300
+ export const cpdIconStop: string;
301
+ export const cpdIconTheme: string;
299
302
  export const cpdColorThemeBg: string;
300
303
  export const cpdColorGray100: string;
301
304
  export const cpdColorGray200: string;
@@ -324,6 +324,9 @@ export const cpdIconVoiceCallDeclinedSolid =
324
324
  "icons/voice-call-declined-solid.svg";
325
325
  export const cpdIconVoiceCallOutgoingSolid =
326
326
  "icons/voice-call-outgoing-solid.svg";
327
+ export const cpdIconStopSolid = "icons/stop-solid.svg";
328
+ export const cpdIconStop = "icons/stop.svg";
329
+ export const cpdIconTheme = "icons/theme.svg";
327
330
  export const cpdColorThemeBg = "#ffffff";
328
331
  export const cpdColorGray100 = "#fbfcfd";
329
332
  export const cpdColorGray200 = "#f7f9fa";
@@ -296,6 +296,9 @@ export const cpdIconVideoCallOutgoingSolid: string;
296
296
  export const cpdIconVoiceCallMissedSolid: string;
297
297
  export const cpdIconVoiceCallDeclinedSolid: string;
298
298
  export const cpdIconVoiceCallOutgoingSolid: string;
299
+ export const cpdIconStopSolid: string;
300
+ export const cpdIconStop: string;
301
+ export const cpdIconTheme: string;
299
302
  export const cpdColorThemeBg: string;
300
303
  export const cpdColorGray100: string;
301
304
  export const cpdColorGray200: string;
@@ -324,6 +324,9 @@ export const cpdIconVoiceCallDeclinedSolid =
324
324
  "icons/voice-call-declined-solid.svg";
325
325
  export const cpdIconVoiceCallOutgoingSolid =
326
326
  "icons/voice-call-outgoing-solid.svg";
327
+ export const cpdIconStopSolid = "icons/stop-solid.svg";
328
+ export const cpdIconStop = "icons/stop.svg";
329
+ export const cpdIconTheme = "icons/theme.svg";
327
330
  export const cpdColorThemeBg = "#ffffff";
328
331
  export const cpdColorGray100 = "#f7f9fa";
329
332
  export const cpdColorGray200 = "#f0f2f5";
package/icons/$icons.json CHANGED
@@ -875,6 +875,18 @@
875
875
  "voice-call-outgoing-solid": {
876
876
  "value": "icons/voice-call-outgoing-solid.svg",
877
877
  "type": "icon"
878
+ },
879
+ "stop-solid": {
880
+ "value": "icons/stop-solid.svg",
881
+ "type": "icon"
882
+ },
883
+ "stop": {
884
+ "value": "icons/stop.svg",
885
+ "type": "icon"
886
+ },
887
+ "theme": {
888
+ "value": "icons/theme.svg",
889
+ "type": "icon"
878
890
  }
879
891
  }
880
892
  }
@@ -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 8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4z"/></svg>
package/icons/stop.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="M16 18v2H8v-2zm2-2V8a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2v2a4 4 0 0 1-4-4V8a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4v-2a2 2 0 0 0 2-2"/></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 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10m1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93z"/></svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vector-im/compound-design-tokens",
3
- "version": "6.6.0",
3
+ "version": "6.8.0",
4
4
  "description": "Compound design tokens",
5
5
  "sideEffects": false,
6
6
  "scripts": {