@vector-im/compound-design-tokens 1.9.1 → 1.9.2
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 +1 -0
- package/assets/web/icons/index.d.ts +1 -0
- package/assets/web/icons/index.js +1 -0
- package/assets/web/icons/reaction-solid.cjs +21 -0
- package/assets/web/icons/reaction-solid.d.ts +11 -0
- package/assets/web/icons/reaction-solid.js +21 -0
- package/assets/web/js/cpdDark.d.ts +634 -633
- package/assets/web/js/cpdDark.js +49 -24
- package/assets/web/js/cpdDarkHc.d.ts +634 -633
- package/assets/web/js/cpdDarkHc.js +49 -24
- package/assets/web/js/cpdLight.d.ts +634 -633
- package/assets/web/js/cpdLight.js +49 -24
- package/assets/web/js/cpdLightHc.d.ts +634 -633
- package/assets/web/js/cpdLightHc.js +49 -24
- package/icons/$icons.json +1 -1
- package/icons/reaction-solid.svg +3 -0
- package/package.json +4 -2
|
@@ -122,6 +122,7 @@ module.exports = {
|
|
|
122
122
|
QuoteIcon: require("./quote.cjs"),
|
|
123
123
|
RaisedHandSolidIcon: require("./raised-hand-solid.cjs"),
|
|
124
124
|
ReactionAddIcon: require("./reaction-add.cjs"),
|
|
125
|
+
ReactionSolidIcon: require("./reaction-solid.cjs"),
|
|
125
126
|
ReactionIcon: require("./reaction.cjs"),
|
|
126
127
|
ReplyIcon: require("./reply.cjs"),
|
|
127
128
|
RestartIcon: require("./restart.cjs"),
|
|
@@ -121,6 +121,7 @@ export { default as QrCodeIcon } from "./qr-code.js";
|
|
|
121
121
|
export { default as QuoteIcon } from "./quote.js";
|
|
122
122
|
export { default as RaisedHandSolidIcon } from "./raised-hand-solid.js";
|
|
123
123
|
export { default as ReactionAddIcon } from "./reaction-add.js";
|
|
124
|
+
export { default as ReactionSolidIcon } from "./reaction-solid.js";
|
|
124
125
|
export { default as ReactionIcon } from "./reaction.js";
|
|
125
126
|
export { default as ReplyIcon } from "./reply.js";
|
|
126
127
|
export { default as RestartIcon } from "./restart.js";
|
|
@@ -121,6 +121,7 @@ export { default as QrCodeIcon } from "./qr-code.js";
|
|
|
121
121
|
export { default as QuoteIcon } from "./quote.js";
|
|
122
122
|
export { default as RaisedHandSolidIcon } from "./raised-hand-solid.js";
|
|
123
123
|
export { default as ReactionAddIcon } from "./reaction-add.js";
|
|
124
|
+
export { default as ReactionSolidIcon } from "./reaction-solid.js";
|
|
124
125
|
export { default as ReactionIcon } from "./reaction.js";
|
|
125
126
|
export { default as ReplyIcon } from "./reply.js";
|
|
126
127
|
export { default as RestartIcon } from "./restart.js";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function ReactionSolidIcon(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
|
+
fillRule: "evenodd",
|
|
14
|
+
d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.536-6.464a1 1 0 0 0-1.415-1.415A2.988 2.988 0 0 1 12 15a2.988 2.988 0 0 1-2.121-.879 1 1 0 1 0-1.414 1.415A4.987 4.987 0 0 0 12 17c1.38 0 2.632-.56 3.536-1.464ZM10 10.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
ReactionSolidIcon.displayName = "ReactionSolidIcon";
|
|
21
|
+
module.exports = React.forwardRef(ReactionSolidIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* reaction-solid.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const ReactionSolidIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default ReactionSolidIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function ReactionSolidIcon(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
|
+
fillRule: "evenodd",
|
|
14
|
+
d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.536-6.464a1 1 0 0 0-1.415-1.415A2.988 2.988 0 0 1 12 15a2.988 2.988 0 0 1-2.121-.879 1 1 0 1 0-1.414 1.415A4.987 4.987 0 0 0 12 17c1.38 0 2.632-.56 3.536-1.464ZM10 10.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5.5 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
ReactionSolidIcon.displayName = "ReactionSolidIcon";
|
|
21
|
+
export default forwardRef(ReactionSolidIcon);
|