@vector-im/compound-design-tokens 6.7.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.
- package/assets/web/icons/index.cjs +2 -0
- package/assets/web/icons/index.d.ts +2 -0
- package/assets/web/icons/index.js +2 -0
- package/assets/web/icons/stop-solid.cjs +19 -0
- package/assets/web/icons/stop-solid.d.ts +11 -0
- package/assets/web/icons/stop-solid.js +19 -0
- package/assets/web/icons/stop.cjs +19 -0
- package/assets/web/icons/stop.d.ts +11 -0
- package/assets/web/icons/stop.js +19 -0
- package/assets/web/js/cpdDark.d.ts +2 -0
- package/assets/web/js/cpdDark.js +2 -0
- package/assets/web/js/cpdDarkHc.d.ts +2 -0
- package/assets/web/js/cpdDarkHc.js +2 -0
- package/assets/web/js/cpdLight.d.ts +2 -0
- package/assets/web/js/cpdLight.js +2 -0
- package/assets/web/js/cpdLightHc.d.ts +2 -0
- package/assets/web/js/cpdLightHc.js +2 -0
- package/icons/$icons.json +8 -0
- package/icons/stop-solid.svg +1 -0
- package/icons/stop.svg +1 -0
- package/package.json +1 -1
|
@@ -174,6 +174,8 @@ 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"),
|
|
@@ -173,6 +173,8 @@ 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";
|
|
@@ -173,6 +173,8 @@ 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";
|
|
@@ -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,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);
|
|
@@ -296,6 +296,8 @@ 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;
|
|
299
301
|
export const cpdIconTheme: string;
|
|
300
302
|
export const cpdColorThemeBg: string;
|
|
301
303
|
export const cpdColorGray100: string;
|
package/assets/web/js/cpdDark.js
CHANGED
|
@@ -324,6 +324,8 @@ 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";
|
|
327
329
|
export const cpdIconTheme = "icons/theme.svg";
|
|
328
330
|
export const cpdColorThemeBg = "#101317";
|
|
329
331
|
export const cpdColorGray100 = "#14171b";
|
|
@@ -296,6 +296,8 @@ 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;
|
|
299
301
|
export const cpdIconTheme: string;
|
|
300
302
|
export const cpdColorThemeBg: string;
|
|
301
303
|
export const cpdColorGray100: string;
|
|
@@ -324,6 +324,8 @@ 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";
|
|
327
329
|
export const cpdIconTheme = "icons/theme.svg";
|
|
328
330
|
export const cpdColorThemeBg = "#101317";
|
|
329
331
|
export const cpdColorGray100 = "#181a1f";
|
|
@@ -296,6 +296,8 @@ 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;
|
|
299
301
|
export const cpdIconTheme: string;
|
|
300
302
|
export const cpdColorThemeBg: string;
|
|
301
303
|
export const cpdColorGray100: string;
|
|
@@ -324,6 +324,8 @@ 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";
|
|
327
329
|
export const cpdIconTheme = "icons/theme.svg";
|
|
328
330
|
export const cpdColorThemeBg = "#ffffff";
|
|
329
331
|
export const cpdColorGray100 = "#fbfcfd";
|
|
@@ -296,6 +296,8 @@ 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;
|
|
299
301
|
export const cpdIconTheme: string;
|
|
300
302
|
export const cpdColorThemeBg: string;
|
|
301
303
|
export const cpdColorGray100: string;
|
|
@@ -324,6 +324,8 @@ 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";
|
|
327
329
|
export const cpdIconTheme = "icons/theme.svg";
|
|
328
330
|
export const cpdColorThemeBg = "#ffffff";
|
|
329
331
|
export const cpdColorGray100 = "#f7f9fa";
|
package/icons/$icons.json
CHANGED
|
@@ -876,6 +876,14 @@
|
|
|
876
876
|
"value": "icons/voice-call-outgoing-solid.svg",
|
|
877
877
|
"type": "icon"
|
|
878
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
|
+
},
|
|
879
887
|
"theme": {
|
|
880
888
|
"value": "icons/theme.svg",
|
|
881
889
|
"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 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>
|