@vector-im/compound-design-tokens 6.4.3 → 6.5.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/advanced-settings.cjs +25 -0
- package/assets/web/icons/advanced-settings.d.ts +11 -0
- package/assets/web/icons/advanced-settings.js +25 -0
- package/assets/web/icons/backspace.cjs +4 -14
- package/assets/web/icons/backspace.js +5 -15
- package/assets/web/icons/bug.cjs +19 -0
- package/assets/web/icons/bug.d.ts +11 -0
- package/assets/web/icons/bug.js +19 -0
- package/assets/web/icons/index.cjs +9 -1
- package/assets/web/icons/index.d.ts +9 -1
- package/assets/web/icons/index.js +9 -1
- package/assets/web/icons/rotate-left.cjs +19 -0
- package/assets/web/icons/rotate-left.d.ts +11 -0
- package/assets/web/icons/rotate-left.js +19 -0
- package/assets/web/icons/rotate-right.cjs +29 -0
- package/assets/web/icons/rotate-right.d.ts +11 -0
- package/assets/web/icons/rotate-right.js +29 -0
- package/assets/web/icons/translate.cjs +21 -0
- package/assets/web/icons/translate.d.ts +11 -0
- package/assets/web/icons/translate.js +21 -0
- package/assets/web/icons/tree.cjs +19 -0
- package/assets/web/icons/tree.d.ts +11 -0
- package/assets/web/icons/tree.js +19 -0
- package/assets/web/icons/zoom-in.cjs +29 -0
- package/assets/web/icons/zoom-in.d.ts +11 -0
- package/assets/web/icons/zoom-in.js +29 -0
- package/assets/web/icons/zoom-out.cjs +29 -0
- package/assets/web/icons/zoom-out.d.ts +11 -0
- package/assets/web/icons/zoom-out.js +29 -0
- package/assets/web/js/cpdDark.d.ts +8 -0
- package/assets/web/js/cpdDark.js +8 -0
- package/assets/web/js/cpdDarkHc.d.ts +8 -0
- package/assets/web/js/cpdDarkHc.js +8 -0
- package/assets/web/js/cpdLight.d.ts +8 -0
- package/assets/web/js/cpdLight.js +8 -0
- package/assets/web/js/cpdLightHc.d.ts +8 -0
- package/assets/web/js/cpdLightHc.js +8 -0
- package/icons/$icons.json +32 -0
- package/icons/advanced-settings.svg +1 -0
- package/icons/backspace.svg +1 -1
- package/icons/bug.svg +1 -0
- package/icons/rotate-left.svg +1 -0
- package/icons/rotate-right.svg +1 -0
- package/icons/translate.svg +1 -0
- package/icons/tree.svg +1 -0
- package/icons/zoom-in.svg +1 -0
- package/icons/zoom-out.svg +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function AdvancedSettingsIcon(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: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
d: "M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.47 3.47 0 0 0-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71z",
|
|
19
|
+
clipRule: "evenodd"
|
|
20
|
+
})]
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
AdvancedSettingsIcon.displayName = "AdvancedSettingsIcon";
|
|
25
|
+
module.exports = React.forwardRef(AdvancedSettingsIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* advanced-settings.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const AdvancedSettingsIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default AdvancedSettingsIcon;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function AdvancedSettingsIcon(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: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
d: "M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.47 3.47 0 0 0-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71z",
|
|
19
|
+
clipRule: "evenodd"
|
|
20
|
+
})]
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
;
|
|
24
|
+
AdvancedSettingsIcon.displayName = "AdvancedSettingsIcon";
|
|
25
|
+
export default forwardRef(AdvancedSettingsIcon);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
2
|
var React = require("react");
|
|
3
3
|
function BackspaceIcon(props, ref) {
|
|
4
|
-
return /*#__PURE__*/_reactJsxRuntime.
|
|
4
|
+
return /*#__PURE__*/_reactJsxRuntime.jsx("svg", {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
width: "1em",
|
|
7
7
|
height: "1em",
|
|
@@ -9,19 +9,9 @@ function BackspaceIcon(props, ref) {
|
|
|
9
9
|
viewBox: "0 0 24 24",
|
|
10
10
|
ref: ref,
|
|
11
11
|
...props,
|
|
12
|
-
children:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
d: "M21.167 3.75H7.417c-.633 0-1.128.32-1.458.807L1 12l4.96 7.434c.33.486.824.816 1.457.816h13.75A1.84 1.84 0 0 0 23 18.417V5.583a1.84 1.84 0 0 0-1.833-1.833m0 14.667H7.48L3.2 12l4.272-6.417h13.695zm-10.625-1.834 3.291-3.29 3.291 3.29 1.293-1.292L15.126 12l3.29-3.29-1.292-1.293-3.29 3.29-3.291-3.29L9.25 8.709 12.54 12l-3.29 3.29z"
|
|
16
|
-
})
|
|
17
|
-
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
18
|
-
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
19
|
-
id: "a",
|
|
20
|
-
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
21
|
-
d: "M0 0h24v24H0z"
|
|
22
|
-
})
|
|
23
|
-
})
|
|
24
|
-
})]
|
|
12
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
13
|
+
d: "M21.167 3.75H7.417c-.633 0-1.128.32-1.458.807L1 12l4.96 7.434c.33.486.824.816 1.457.816h13.75A1.84 1.84 0 0 0 23 18.417V5.583a1.84 1.84 0 0 0-1.833-1.833m0 14.667H7.48L3.2 12l4.272-6.417h13.695zm-10.625-1.834 3.291-3.29 3.291 3.29 1.293-1.292L15.126 12l3.29-3.29-1.292-1.293-3.29 3.29-3.291-3.29L9.25 8.709 12.54 12l-3.29 3.29z"
|
|
14
|
+
})
|
|
25
15
|
});
|
|
26
16
|
}
|
|
27
17
|
;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { forwardRef } from "react";
|
|
2
|
-
import { jsx as _jsx
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
function BackspaceIcon(props, ref) {
|
|
4
|
-
return /*#__PURE__*/
|
|
4
|
+
return /*#__PURE__*/_jsx("svg", {
|
|
5
5
|
xmlns: "http://www.w3.org/2000/svg",
|
|
6
6
|
width: "1em",
|
|
7
7
|
height: "1em",
|
|
@@ -9,19 +9,9 @@ function BackspaceIcon(props, ref) {
|
|
|
9
9
|
viewBox: "0 0 24 24",
|
|
10
10
|
ref: ref,
|
|
11
11
|
...props,
|
|
12
|
-
children:
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
d: "M21.167 3.75H7.417c-.633 0-1.128.32-1.458.807L1 12l4.96 7.434c.33.486.824.816 1.457.816h13.75A1.84 1.84 0 0 0 23 18.417V5.583a1.84 1.84 0 0 0-1.833-1.833m0 14.667H7.48L3.2 12l4.272-6.417h13.695zm-10.625-1.834 3.291-3.29 3.291 3.29 1.293-1.292L15.126 12l3.29-3.29-1.292-1.293-3.29 3.29-3.291-3.29L9.25 8.709 12.54 12l-3.29 3.29z"
|
|
16
|
-
})
|
|
17
|
-
}), /*#__PURE__*/_jsx("defs", {
|
|
18
|
-
children: /*#__PURE__*/_jsx("clipPath", {
|
|
19
|
-
id: "a",
|
|
20
|
-
children: /*#__PURE__*/_jsx("path", {
|
|
21
|
-
d: "M0 0h24v24H0z"
|
|
22
|
-
})
|
|
23
|
-
})
|
|
24
|
-
})]
|
|
12
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
13
|
+
d: "M21.167 3.75H7.417c-.633 0-1.128.32-1.458.807L1 12l4.96 7.434c.33.486.824.816 1.457.816h13.75A1.84 1.84 0 0 0 23 18.417V5.583a1.84 1.84 0 0 0-1.833-1.833m0 14.667H7.48L3.2 12l4.272-6.417h13.695zm-10.625-1.834 3.291-3.29 3.291 3.29 1.293-1.292L15.126 12l3.29-3.29-1.292-1.293-3.29 3.29-3.291-3.29L9.25 8.709 12.54 12l-3.29 3.29z"
|
|
14
|
+
})
|
|
25
15
|
});
|
|
26
16
|
}
|
|
27
17
|
;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function BugIcon(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: "M19 8h-1.81a6 6 0 0 0-1.82-1.96l.93-.93a.996.996 0 1 0-1.41-1.41l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7A.996.996 0 1 0 7.7 5.11l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1m-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1m0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
BugIcon.displayName = "BugIcon";
|
|
19
|
+
module.exports = React.forwardRef(BugIcon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function BugIcon(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: "M19 8h-1.81a6 6 0 0 0-1.82-1.96l.93-.93a.996.996 0 1 0-1.41-1.41l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7A.996.996 0 1 0 7.7 5.11l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1m-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1m0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
BugIcon.displayName = "BugIcon";
|
|
19
|
+
export default forwardRef(BugIcon);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
AdminIcon: require("./admin.cjs"),
|
|
3
|
+
AdvancedSettingsIcon: require("./advanced-settings.cjs"),
|
|
3
4
|
ArrowDownIcon: require("./arrow-down.cjs"),
|
|
4
5
|
ArrowLeftIcon: require("./arrow-left.cjs"),
|
|
5
6
|
ArrowRightIcon: require("./arrow-right.cjs"),
|
|
@@ -13,6 +14,7 @@ module.exports = {
|
|
|
13
14
|
BackspaceIcon: require("./backspace.cjs"),
|
|
14
15
|
BlockIcon: require("./block.cjs"),
|
|
15
16
|
BoldIcon: require("./bold.cjs"),
|
|
17
|
+
BugIcon: require("./bug.cjs"),
|
|
16
18
|
CalendarIcon: require("./calendar.cjs"),
|
|
17
19
|
ChartIcon: require("./chart.cjs"),
|
|
18
20
|
ChatNewIcon: require("./chat-new.cjs"),
|
|
@@ -151,6 +153,8 @@ module.exports = {
|
|
|
151
153
|
ReplyIcon: require("./reply.cjs"),
|
|
152
154
|
RestartIcon: require("./restart.cjs"),
|
|
153
155
|
RoomIcon: require("./room.cjs"),
|
|
156
|
+
RotateLeftIcon: require("./rotate-left.cjs"),
|
|
157
|
+
RotateRightIcon: require("./rotate-right.cjs"),
|
|
154
158
|
SearchIcon: require("./search.cjs"),
|
|
155
159
|
SendSolidIcon: require("./send-solid.cjs"),
|
|
156
160
|
SendIcon: require("./send.cjs"),
|
|
@@ -178,6 +182,8 @@ module.exports = {
|
|
|
178
182
|
ThreadsSolidIcon: require("./threads-solid.cjs"),
|
|
179
183
|
ThreadsIcon: require("./threads.cjs"),
|
|
180
184
|
TimeIcon: require("./time.cjs"),
|
|
185
|
+
TranslateIcon: require("./translate.cjs"),
|
|
186
|
+
TreeIcon: require("./tree.cjs"),
|
|
181
187
|
UnderlineIcon: require("./underline.cjs"),
|
|
182
188
|
UnknownSolidIcon: require("./unknown-solid.cjs"),
|
|
183
189
|
UnknownIcon: require("./unknown.cjs"),
|
|
@@ -205,5 +211,7 @@ module.exports = {
|
|
|
205
211
|
VolumeOnIcon: require("./volume-on.cjs"),
|
|
206
212
|
WarningIcon: require("./warning.cjs"),
|
|
207
213
|
WebBrowserIcon: require("./web-browser.cjs"),
|
|
208
|
-
WindowsIcon: require("./windows.cjs")
|
|
214
|
+
WindowsIcon: require("./windows.cjs"),
|
|
215
|
+
ZoomInIcon: require("./zoom-in.cjs"),
|
|
216
|
+
ZoomOutIcon: require("./zoom-out.cjs")
|
|
209
217
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as AdminIcon } from "./admin.js";
|
|
2
|
+
export { default as AdvancedSettingsIcon } from "./advanced-settings.js";
|
|
2
3
|
export { default as ArrowDownIcon } from "./arrow-down.js";
|
|
3
4
|
export { default as ArrowLeftIcon } from "./arrow-left.js";
|
|
4
5
|
export { default as ArrowRightIcon } from "./arrow-right.js";
|
|
@@ -12,6 +13,7 @@ export { default as BackspaceSolidIcon } from "./backspace-solid.js";
|
|
|
12
13
|
export { default as BackspaceIcon } from "./backspace.js";
|
|
13
14
|
export { default as BlockIcon } from "./block.js";
|
|
14
15
|
export { default as BoldIcon } from "./bold.js";
|
|
16
|
+
export { default as BugIcon } from "./bug.js";
|
|
15
17
|
export { default as CalendarIcon } from "./calendar.js";
|
|
16
18
|
export { default as ChartIcon } from "./chart.js";
|
|
17
19
|
export { default as ChatNewIcon } from "./chat-new.js";
|
|
@@ -150,6 +152,8 @@ export { default as ReactionIcon } from "./reaction.js";
|
|
|
150
152
|
export { default as ReplyIcon } from "./reply.js";
|
|
151
153
|
export { default as RestartIcon } from "./restart.js";
|
|
152
154
|
export { default as RoomIcon } from "./room.js";
|
|
155
|
+
export { default as RotateLeftIcon } from "./rotate-left.js";
|
|
156
|
+
export { default as RotateRightIcon } from "./rotate-right.js";
|
|
153
157
|
export { default as SearchIcon } from "./search.js";
|
|
154
158
|
export { default as SendSolidIcon } from "./send-solid.js";
|
|
155
159
|
export { default as SendIcon } from "./send.js";
|
|
@@ -177,6 +181,8 @@ export { default as TextFormattingIcon } from "./text-formatting.js";
|
|
|
177
181
|
export { default as ThreadsSolidIcon } from "./threads-solid.js";
|
|
178
182
|
export { default as ThreadsIcon } from "./threads.js";
|
|
179
183
|
export { default as TimeIcon } from "./time.js";
|
|
184
|
+
export { default as TranslateIcon } from "./translate.js";
|
|
185
|
+
export { default as TreeIcon } from "./tree.js";
|
|
180
186
|
export { default as UnderlineIcon } from "./underline.js";
|
|
181
187
|
export { default as UnknownSolidIcon } from "./unknown-solid.js";
|
|
182
188
|
export { default as UnknownIcon } from "./unknown.js";
|
|
@@ -204,4 +210,6 @@ export { default as VolumeOnSolidIcon } from "./volume-on-solid.js";
|
|
|
204
210
|
export { default as VolumeOnIcon } from "./volume-on.js";
|
|
205
211
|
export { default as WarningIcon } from "./warning.js";
|
|
206
212
|
export { default as WebBrowserIcon } from "./web-browser.js";
|
|
207
|
-
export { default as WindowsIcon } from "./windows.js";
|
|
213
|
+
export { default as WindowsIcon } from "./windows.js";
|
|
214
|
+
export { default as ZoomInIcon } from "./zoom-in.js";
|
|
215
|
+
export { default as ZoomOutIcon } from "./zoom-out.js";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as AdminIcon } from "./admin.js";
|
|
2
|
+
export { default as AdvancedSettingsIcon } from "./advanced-settings.js";
|
|
2
3
|
export { default as ArrowDownIcon } from "./arrow-down.js";
|
|
3
4
|
export { default as ArrowLeftIcon } from "./arrow-left.js";
|
|
4
5
|
export { default as ArrowRightIcon } from "./arrow-right.js";
|
|
@@ -12,6 +13,7 @@ export { default as BackspaceSolidIcon } from "./backspace-solid.js";
|
|
|
12
13
|
export { default as BackspaceIcon } from "./backspace.js";
|
|
13
14
|
export { default as BlockIcon } from "./block.js";
|
|
14
15
|
export { default as BoldIcon } from "./bold.js";
|
|
16
|
+
export { default as BugIcon } from "./bug.js";
|
|
15
17
|
export { default as CalendarIcon } from "./calendar.js";
|
|
16
18
|
export { default as ChartIcon } from "./chart.js";
|
|
17
19
|
export { default as ChatNewIcon } from "./chat-new.js";
|
|
@@ -150,6 +152,8 @@ export { default as ReactionIcon } from "./reaction.js";
|
|
|
150
152
|
export { default as ReplyIcon } from "./reply.js";
|
|
151
153
|
export { default as RestartIcon } from "./restart.js";
|
|
152
154
|
export { default as RoomIcon } from "./room.js";
|
|
155
|
+
export { default as RotateLeftIcon } from "./rotate-left.js";
|
|
156
|
+
export { default as RotateRightIcon } from "./rotate-right.js";
|
|
153
157
|
export { default as SearchIcon } from "./search.js";
|
|
154
158
|
export { default as SendSolidIcon } from "./send-solid.js";
|
|
155
159
|
export { default as SendIcon } from "./send.js";
|
|
@@ -177,6 +181,8 @@ export { default as TextFormattingIcon } from "./text-formatting.js";
|
|
|
177
181
|
export { default as ThreadsSolidIcon } from "./threads-solid.js";
|
|
178
182
|
export { default as ThreadsIcon } from "./threads.js";
|
|
179
183
|
export { default as TimeIcon } from "./time.js";
|
|
184
|
+
export { default as TranslateIcon } from "./translate.js";
|
|
185
|
+
export { default as TreeIcon } from "./tree.js";
|
|
180
186
|
export { default as UnderlineIcon } from "./underline.js";
|
|
181
187
|
export { default as UnknownSolidIcon } from "./unknown-solid.js";
|
|
182
188
|
export { default as UnknownIcon } from "./unknown.js";
|
|
@@ -204,4 +210,6 @@ export { default as VolumeOnSolidIcon } from "./volume-on-solid.js";
|
|
|
204
210
|
export { default as VolumeOnIcon } from "./volume-on.js";
|
|
205
211
|
export { default as WarningIcon } from "./warning.js";
|
|
206
212
|
export { default as WebBrowserIcon } from "./web-browser.js";
|
|
207
|
-
export { default as WindowsIcon } from "./windows.js";
|
|
213
|
+
export { default as WindowsIcon } from "./windows.js";
|
|
214
|
+
export { default as ZoomInIcon } from "./zoom-in.js";
|
|
215
|
+
export { default as ZoomOutIcon } from "./zoom-out.js";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function RotateLeftIcon(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: "M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7q.18-.6.48-1.17c.22-.37.15-.84-.16-1.15M5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16a.97.97 0 0 0-.94-.72m2.85 6.02q.765.42 1.59.66c.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48a.97.97 0 0 0-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55M13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75a.97.97 0 0 0-.68.94v.02c0 .65.61 1.14 1.23.96A7.976 7.976 0 0 0 20 12c0-4.08-3.05-7.44-7-7.93"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
RotateLeftIcon.displayName = "RotateLeftIcon";
|
|
19
|
+
module.exports = React.forwardRef(RotateLeftIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* rotate-left.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const RotateLeftIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default RotateLeftIcon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function RotateLeftIcon(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: "M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7q.18-.6.48-1.17c.22-.37.15-.84-.16-1.15M5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16a.97.97 0 0 0-.94-.72m2.85 6.02q.765.42 1.59.66c.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48a.97.97 0 0 0-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55M13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75a.97.97 0 0 0-.68.94v.02c0 .65.61 1.14 1.23.96A7.976 7.976 0 0 0 20 12c0-4.08-3.05-7.44-7-7.93"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
RotateLeftIcon.displayName = "RotateLeftIcon";
|
|
19
|
+
export default forwardRef(RotateLeftIcon);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function RotateRightIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
d: "M14.83 4.83 12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03a.97.97 0 0 0-.68-.94A5.98 5.98 0 0 1 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08a.99.99 0 0 0 0-1.42m4.84 4.93q-.24-.825-.66-1.59c-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24M13 18.68v.02c0 .65.62 1.14 1.24.96q.825-.24 1.59-.66c.57-.31.66-1.1.2-1.56l-.02-.02a.97.97 0 0 0-1.16-.17c-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94m4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7q-.18.6-.48 1.17c-.21.38-.13.86.17 1.16"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
RotateRightIcon.displayName = "RotateRightIcon";
|
|
29
|
+
module.exports = React.forwardRef(RotateRightIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* rotate-right.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const RotateRightIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default RotateRightIcon;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function RotateRightIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
d: "M14.83 4.83 12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03a.97.97 0 0 0-.68-.94A5.98 5.98 0 0 1 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08a.99.99 0 0 0 0-1.42m4.84 4.93q-.24-.825-.66-1.59c-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24M13 18.68v.02c0 .65.62 1.14 1.24.96q.825-.24 1.59-.66c.57-.31.66-1.1.2-1.56l-.02-.02a.97.97 0 0 0-1.16-.17c-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94m4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7q-.18.6-.48 1.17c-.21.38-.13.86.17 1.16"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
RotateRightIcon.displayName = "RotateRightIcon";
|
|
29
|
+
export default forwardRef(RotateRightIcon);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function TranslateIcon(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: "M13 2a2 2 0 0 1 2 2v4h6a2 2 0 0 1 2 2v12.586c0 .89-1.077 1.337-1.707.707L19 21h-8a2 2 0 0 1-2-2v-4H5l-2.293 2.293c-.63.63-1.707.184-1.707-.707V4a2 2 0 0 1 2-2zm2.5 10.125H12v1.25h4.37c-.031.73-.325 1.457-.871 2.151a4.4 4.4 0 0 1-.613-1.026h-1.33c.202.69.57 1.335 1.067 1.932-.524.448-1.162.873-1.912 1.263l.578 1.11a11.3 11.3 0 0 0 2.21-1.483c.633.553 1.382 1.05 2.212 1.483l.578-1.11c-.75-.39-1.388-.815-1.912-1.263.758-.912 1.213-1.939 1.245-3.057H20v-1.25h-3.25V10.25H15.5zM3 14.172l.586-.586A2 2 0 0 1 5 13h4v-2.47H6.96L6.563 12H5l2.031-7H8.97l.96 3.312A2 2 0 0 1 11 8h2V4H3zm4.306-4.927h1.386l-.67-2.481h-.047z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
TranslateIcon.displayName = "TranslateIcon";
|
|
21
|
+
module.exports = React.forwardRef(TranslateIcon);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* translate.svg
|
|
5
|
+
*/
|
|
6
|
+
declare const TranslateIcon: React.ForwardRefExoticComponent<
|
|
7
|
+
Omit<React.SVGProps<SVGSVGElement>, "ref" | "children"> &
|
|
8
|
+
React.RefAttributes<SVGSVGElement>
|
|
9
|
+
>;
|
|
10
|
+
|
|
11
|
+
export default TranslateIcon;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function TranslateIcon(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: "M13 2a2 2 0 0 1 2 2v4h6a2 2 0 0 1 2 2v12.586c0 .89-1.077 1.337-1.707.707L19 21h-8a2 2 0 0 1-2-2v-4H5l-2.293 2.293c-.63.63-1.707.184-1.707-.707V4a2 2 0 0 1 2-2zm2.5 10.125H12v1.25h4.37c-.031.73-.325 1.457-.871 2.151a4.4 4.4 0 0 1-.613-1.026h-1.33c.202.69.57 1.335 1.067 1.932-.524.448-1.162.873-1.912 1.263l.578 1.11a11.3 11.3 0 0 0 2.21-1.483c.633.553 1.382 1.05 2.212 1.483l.578-1.11c-.75-.39-1.388-.815-1.912-1.263.758-.912 1.213-1.939 1.245-3.057H20v-1.25h-3.25V10.25H15.5zM3 14.172l.586-.586A2 2 0 0 1 5 13h4v-2.47H6.96L6.563 12H5l2.031-7H8.97l.96 3.312A2 2 0 0 1 11 8h2V4H3zm4.306-4.927h1.386l-.67-2.481h-.047z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
;
|
|
20
|
+
TranslateIcon.displayName = "TranslateIcon";
|
|
21
|
+
export default forwardRef(TranslateIcon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function TreeIcon(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.01 5v1H11c.333 0 1 0 1.5.5S13 7.667 13 8v7.01c0 .54.45.99.99.99H15v-1a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-1h-1.01C12.34 18 11 16.66 11 15.01V9c0-1 0-1-1-1H9v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.01a2 2 0 0 1 2 2"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
TreeIcon.displayName = "TreeIcon";
|
|
19
|
+
module.exports = React.forwardRef(TreeIcon);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
|
+
function TreeIcon(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.01 5v1H11c.333 0 1 0 1.5.5S13 7.667 13 8v7.01c0 .54.45.99.99.99H15v-1a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-1h-1.01C12.34 18 11 16.66 11 15.01V9c0-1 0-1-1-1H9v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.01a2 2 0 0 1 2 2"
|
|
14
|
+
})
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
;
|
|
18
|
+
TreeIcon.displayName = "TreeIcon";
|
|
19
|
+
export default forwardRef(TreeIcon);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function ZoomInIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
d: "M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
ZoomInIcon.displayName = "ZoomInIcon";
|
|
29
|
+
module.exports = React.forwardRef(ZoomInIcon);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function ZoomInIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
d: "M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
ZoomInIcon.displayName = "ZoomInIcon";
|
|
29
|
+
export default forwardRef(ZoomInIcon);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
var _reactJsxRuntime = require("react/jsx-runtime");
|
|
2
|
+
var React = require("react");
|
|
3
|
+
function ZoomOutIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
15
|
+
d: "M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_reactJsxRuntime.jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_reactJsxRuntime.jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
ZoomOutIcon.displayName = "ZoomOutIcon";
|
|
29
|
+
module.exports = React.forwardRef(ZoomOutIcon);
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { forwardRef } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
function ZoomOutIcon(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("g", {
|
|
13
|
+
clipPath: "url(#a)",
|
|
14
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
15
|
+
d: "M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5"
|
|
16
|
+
})
|
|
17
|
+
}), /*#__PURE__*/_jsx("defs", {
|
|
18
|
+
children: /*#__PURE__*/_jsx("clipPath", {
|
|
19
|
+
id: "a",
|
|
20
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
21
|
+
d: "M0 0h24v24H0z"
|
|
22
|
+
})
|
|
23
|
+
})
|
|
24
|
+
})]
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
;
|
|
28
|
+
ZoomOutIcon.displayName = "ZoomOutIcon";
|
|
29
|
+
export default forwardRef(ZoomOutIcon);
|
|
@@ -284,6 +284,14 @@ export const cpdIconLeftPanelOpen: string;
|
|
|
284
284
|
export const cpdIconBackspaceSolid: string;
|
|
285
285
|
export const cpdIconBackspace: string;
|
|
286
286
|
export const cpdIconSticker: string;
|
|
287
|
+
export const cpdIconAdvancedSettings: string;
|
|
288
|
+
export const cpdIconTree: string;
|
|
289
|
+
export const cpdIconBug: string;
|
|
290
|
+
export const cpdIconTranslate: string;
|
|
291
|
+
export const cpdIconRotateLeft: string;
|
|
292
|
+
export const cpdIconRotateRight: string;
|
|
293
|
+
export const cpdIconZoomIn: string;
|
|
294
|
+
export const cpdIconZoomOut: string;
|
|
287
295
|
export const cpdColorThemeBg: string;
|
|
288
296
|
export const cpdColorGray100: string;
|
|
289
297
|
export const cpdColorGray200: string;
|
package/assets/web/js/cpdDark.js
CHANGED
|
@@ -309,6 +309,14 @@ export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
|
|
|
309
309
|
export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
|
|
310
310
|
export const cpdIconBackspace = "icons/backspace.svg";
|
|
311
311
|
export const cpdIconSticker = "icons/sticker.svg";
|
|
312
|
+
export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
|
|
313
|
+
export const cpdIconTree = "icons/tree.svg";
|
|
314
|
+
export const cpdIconBug = "icons/bug.svg";
|
|
315
|
+
export const cpdIconTranslate = "icons/translate.svg";
|
|
316
|
+
export const cpdIconRotateLeft = "icons/rotate-left.svg";
|
|
317
|
+
export const cpdIconRotateRight = "icons/rotate-right.svg";
|
|
318
|
+
export const cpdIconZoomIn = "icons/zoom-in.svg";
|
|
319
|
+
export const cpdIconZoomOut = "icons/zoom-out.svg";
|
|
312
320
|
export const cpdColorThemeBg = "#101317";
|
|
313
321
|
export const cpdColorGray100 = "#14171b";
|
|
314
322
|
export const cpdColorGray200 = "#181a1f";
|
|
@@ -284,6 +284,14 @@ export const cpdIconLeftPanelOpen: string;
|
|
|
284
284
|
export const cpdIconBackspaceSolid: string;
|
|
285
285
|
export const cpdIconBackspace: string;
|
|
286
286
|
export const cpdIconSticker: string;
|
|
287
|
+
export const cpdIconAdvancedSettings: string;
|
|
288
|
+
export const cpdIconTree: string;
|
|
289
|
+
export const cpdIconBug: string;
|
|
290
|
+
export const cpdIconTranslate: string;
|
|
291
|
+
export const cpdIconRotateLeft: string;
|
|
292
|
+
export const cpdIconRotateRight: string;
|
|
293
|
+
export const cpdIconZoomIn: string;
|
|
294
|
+
export const cpdIconZoomOut: string;
|
|
287
295
|
export const cpdColorThemeBg: string;
|
|
288
296
|
export const cpdColorGray100: string;
|
|
289
297
|
export const cpdColorGray200: string;
|
|
@@ -309,6 +309,14 @@ export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
|
|
|
309
309
|
export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
|
|
310
310
|
export const cpdIconBackspace = "icons/backspace.svg";
|
|
311
311
|
export const cpdIconSticker = "icons/sticker.svg";
|
|
312
|
+
export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
|
|
313
|
+
export const cpdIconTree = "icons/tree.svg";
|
|
314
|
+
export const cpdIconBug = "icons/bug.svg";
|
|
315
|
+
export const cpdIconTranslate = "icons/translate.svg";
|
|
316
|
+
export const cpdIconRotateLeft = "icons/rotate-left.svg";
|
|
317
|
+
export const cpdIconRotateRight = "icons/rotate-right.svg";
|
|
318
|
+
export const cpdIconZoomIn = "icons/zoom-in.svg";
|
|
319
|
+
export const cpdIconZoomOut = "icons/zoom-out.svg";
|
|
312
320
|
export const cpdColorThemeBg = "#101317";
|
|
313
321
|
export const cpdColorGray100 = "#181a1f";
|
|
314
322
|
export const cpdColorGray200 = "#1d1f24";
|
|
@@ -284,6 +284,14 @@ export const cpdIconLeftPanelOpen: string;
|
|
|
284
284
|
export const cpdIconBackspaceSolid: string;
|
|
285
285
|
export const cpdIconBackspace: string;
|
|
286
286
|
export const cpdIconSticker: string;
|
|
287
|
+
export const cpdIconAdvancedSettings: string;
|
|
288
|
+
export const cpdIconTree: string;
|
|
289
|
+
export const cpdIconBug: string;
|
|
290
|
+
export const cpdIconTranslate: string;
|
|
291
|
+
export const cpdIconRotateLeft: string;
|
|
292
|
+
export const cpdIconRotateRight: string;
|
|
293
|
+
export const cpdIconZoomIn: string;
|
|
294
|
+
export const cpdIconZoomOut: string;
|
|
287
295
|
export const cpdColorThemeBg: string;
|
|
288
296
|
export const cpdColorGray100: string;
|
|
289
297
|
export const cpdColorGray200: string;
|
|
@@ -309,6 +309,14 @@ export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
|
|
|
309
309
|
export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
|
|
310
310
|
export const cpdIconBackspace = "icons/backspace.svg";
|
|
311
311
|
export const cpdIconSticker = "icons/sticker.svg";
|
|
312
|
+
export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
|
|
313
|
+
export const cpdIconTree = "icons/tree.svg";
|
|
314
|
+
export const cpdIconBug = "icons/bug.svg";
|
|
315
|
+
export const cpdIconTranslate = "icons/translate.svg";
|
|
316
|
+
export const cpdIconRotateLeft = "icons/rotate-left.svg";
|
|
317
|
+
export const cpdIconRotateRight = "icons/rotate-right.svg";
|
|
318
|
+
export const cpdIconZoomIn = "icons/zoom-in.svg";
|
|
319
|
+
export const cpdIconZoomOut = "icons/zoom-out.svg";
|
|
312
320
|
export const cpdColorThemeBg = "#ffffff";
|
|
313
321
|
export const cpdColorGray100 = "#fbfcfd";
|
|
314
322
|
export const cpdColorGray200 = "#f7f9fa";
|
|
@@ -284,6 +284,14 @@ export const cpdIconLeftPanelOpen: string;
|
|
|
284
284
|
export const cpdIconBackspaceSolid: string;
|
|
285
285
|
export const cpdIconBackspace: string;
|
|
286
286
|
export const cpdIconSticker: string;
|
|
287
|
+
export const cpdIconAdvancedSettings: string;
|
|
288
|
+
export const cpdIconTree: string;
|
|
289
|
+
export const cpdIconBug: string;
|
|
290
|
+
export const cpdIconTranslate: string;
|
|
291
|
+
export const cpdIconRotateLeft: string;
|
|
292
|
+
export const cpdIconRotateRight: string;
|
|
293
|
+
export const cpdIconZoomIn: string;
|
|
294
|
+
export const cpdIconZoomOut: string;
|
|
287
295
|
export const cpdColorThemeBg: string;
|
|
288
296
|
export const cpdColorGray100: string;
|
|
289
297
|
export const cpdColorGray200: string;
|
|
@@ -309,6 +309,14 @@ export const cpdIconLeftPanelOpen = "icons/left-panel-open.svg";
|
|
|
309
309
|
export const cpdIconBackspaceSolid = "icons/backspace-solid.svg";
|
|
310
310
|
export const cpdIconBackspace = "icons/backspace.svg";
|
|
311
311
|
export const cpdIconSticker = "icons/sticker.svg";
|
|
312
|
+
export const cpdIconAdvancedSettings = "icons/advanced-settings.svg";
|
|
313
|
+
export const cpdIconTree = "icons/tree.svg";
|
|
314
|
+
export const cpdIconBug = "icons/bug.svg";
|
|
315
|
+
export const cpdIconTranslate = "icons/translate.svg";
|
|
316
|
+
export const cpdIconRotateLeft = "icons/rotate-left.svg";
|
|
317
|
+
export const cpdIconRotateRight = "icons/rotate-right.svg";
|
|
318
|
+
export const cpdIconZoomIn = "icons/zoom-in.svg";
|
|
319
|
+
export const cpdIconZoomOut = "icons/zoom-out.svg";
|
|
312
320
|
export const cpdColorThemeBg = "#ffffff";
|
|
313
321
|
export const cpdColorGray100 = "#f7f9fa";
|
|
314
322
|
export const cpdColorGray200 = "#f0f2f5";
|
package/icons/$icons.json
CHANGED
|
@@ -827,6 +827,38 @@
|
|
|
827
827
|
"sticker": {
|
|
828
828
|
"value": "icons/sticker.svg",
|
|
829
829
|
"type": "icon"
|
|
830
|
+
},
|
|
831
|
+
"advanced-settings": {
|
|
832
|
+
"value": "icons/advanced-settings.svg",
|
|
833
|
+
"type": "icon"
|
|
834
|
+
},
|
|
835
|
+
"tree": {
|
|
836
|
+
"value": "icons/tree.svg",
|
|
837
|
+
"type": "icon"
|
|
838
|
+
},
|
|
839
|
+
"bug": {
|
|
840
|
+
"value": "icons/bug.svg",
|
|
841
|
+
"type": "icon"
|
|
842
|
+
},
|
|
843
|
+
"translate": {
|
|
844
|
+
"value": "icons/translate.svg",
|
|
845
|
+
"type": "icon"
|
|
846
|
+
},
|
|
847
|
+
"rotate-left": {
|
|
848
|
+
"value": "icons/rotate-left.svg",
|
|
849
|
+
"type": "icon"
|
|
850
|
+
},
|
|
851
|
+
"rotate-right": {
|
|
852
|
+
"value": "icons/rotate-right.svg",
|
|
853
|
+
"type": "icon"
|
|
854
|
+
},
|
|
855
|
+
"zoom-in": {
|
|
856
|
+
"value": "icons/zoom-in.svg",
|
|
857
|
+
"type": "icon"
|
|
858
|
+
},
|
|
859
|
+
"zoom-out": {
|
|
860
|
+
"value": "icons/zoom-out.svg",
|
|
861
|
+
"type": "icon"
|
|
830
862
|
}
|
|
831
863
|
}
|
|
832
864
|
}
|
|
@@ -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="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8" clip-rule="evenodd"/><path fill-rule="evenodd" d="M13.49 11.38c.43-1.22.17-2.64-.81-3.62a3.47 3.47 0 0 0-4.1-.59l2.35 2.35-1.41 1.41-2.35-2.35c-.71 1.32-.52 2.99.59 4.1.98.98 2.4 1.24 3.62.81l3.41 3.41c.2.2.51.2.71 0l1.4-1.4c.2-.2.2-.51 0-.71z" clip-rule="evenodd"/></svg>
|
package/icons/backspace.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M21.167 3.75H7.417c-.633 0-1.128.32-1.458.807L1 12l4.96 7.434c.33.486.824.816 1.457.816h13.75A1.84 1.84 0 0 0 23 18.417V5.583a1.84 1.84 0 0 0-1.833-1.833m0 14.667H7.48L3.2 12l4.272-6.417h13.695zm-10.625-1.834 3.291-3.29 3.291 3.29 1.293-1.292L15.126 12l3.29-3.29-1.292-1.293-3.29 3.29-3.291-3.29L9.25 8.709 12.54 12l-3.29 3.29z"/></svg>
|
package/icons/bug.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="M19 8h-1.81a6 6 0 0 0-1.82-1.96l.93-.93a.996.996 0 1 0-1.41-1.41l-1.47 1.47C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L9.11 3.7A.996.996 0 1 0 7.7 5.11l.92.93C7.88 6.55 7.26 7.22 6.81 8H5c-.55 0-1 .45-1 1s.45 1 1 1h1.09c-.05.33-.09.66-.09 1v1H5c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .34.04.67.09 1H5c-.55 0-1 .45-1 1s.45 1 1 1h1.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H19c.55 0 1-.45 1-1s-.45-1-1-1h-1.09c.05-.33.09-.66.09-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1v-1c0-.34-.04-.67-.09-1H19c.55 0 1-.45 1-1s-.45-1-1-1m-6 8h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1m0-4h-2c-.55 0-1-.45-1-1s.45-1 1-1h2c.55 0 1 .45 1 1s-.45 1-1 1"/></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="M6.56 7.98C6.1 7.52 5.31 7.6 5 8.17c-.28.51-.5 1.03-.67 1.58-.19.63.31 1.25.96 1.25h.01c.43 0 .82-.28.94-.7q.18-.6.48-1.17c.22-.37.15-.84-.16-1.15M5.31 13h-.02c-.65 0-1.15.62-.96 1.25.16.54.38 1.07.66 1.58.31.57 1.11.66 1.57.2.3-.31.38-.77.17-1.15-.2-.37-.36-.76-.48-1.16a.97.97 0 0 0-.94-.72m2.85 6.02q.765.42 1.59.66c.62.18 1.24-.32 1.24-.96v-.03c0-.43-.28-.82-.7-.94-.4-.12-.78-.28-1.15-.48a.97.97 0 0 0-1.16.17l-.03.03c-.45.45-.36 1.24.21 1.55M13 4.07v-.66c0-.89-1.08-1.34-1.71-.71L9.17 4.83c-.4.4-.4 1.04 0 1.43l2.13 2.08c.63.62 1.7.17 1.7-.72V6.09c2.84.48 5 2.94 5 5.91 0 2.73-1.82 5.02-4.32 5.75a.97.97 0 0 0-.68.94v.02c0 .65.61 1.14 1.23.96A7.976 7.976 0 0 0 20 12c0-4.08-3.05-7.44-7-7.93"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><g clip-path="url(#a)"><path d="M14.83 4.83 12.7 2.7c-.62-.62-1.7-.18-1.7.71v.66C7.06 4.56 4 7.92 4 12c0 3.64 2.43 6.71 5.77 7.68.62.18 1.23-.32 1.23-.96v-.03a.97.97 0 0 0-.68-.94A5.98 5.98 0 0 1 6 12c0-2.97 2.16-5.43 5-5.91v1.53c0 .89 1.07 1.33 1.7.71l2.13-2.08a.99.99 0 0 0 0-1.42m4.84 4.93q-.24-.825-.66-1.59c-.31-.57-1.1-.66-1.56-.2l-.01.01c-.31.31-.38.78-.17 1.16.2.37.36.76.48 1.16.12.42.51.7.94.7h.02c.65 0 1.15-.62.96-1.24M13 18.68v.02c0 .65.62 1.14 1.24.96q.825-.24 1.59-.66c.57-.31.66-1.1.2-1.56l-.02-.02a.97.97 0 0 0-1.16-.17c-.37.21-.76.37-1.16.49-.41.12-.69.51-.69.94m4.44-2.65c.46.46 1.25.37 1.56-.2.28-.51.5-1.04.67-1.59.18-.62-.31-1.24-.96-1.24h-.02c-.44 0-.82.28-.94.7q-.18.6-.48 1.17c-.21.38-.13.86.17 1.16"/></g><defs><clipPath id="a"><path d="M0 0h24v24H0z"/></clipPath></defs></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="M13 2a2 2 0 0 1 2 2v4h6a2 2 0 0 1 2 2v12.586c0 .89-1.077 1.337-1.707.707L19 21h-8a2 2 0 0 1-2-2v-4H5l-2.293 2.293c-.63.63-1.707.184-1.707-.707V4a2 2 0 0 1 2-2zm2.5 10.125H12v1.25h4.37c-.031.73-.325 1.457-.871 2.151a4.4 4.4 0 0 1-.613-1.026h-1.33c.202.69.57 1.335 1.067 1.932-.524.448-1.162.873-1.912 1.263l.578 1.11a11.3 11.3 0 0 0 2.21-1.483c.633.553 1.382 1.05 2.212 1.483l.578-1.11c-.75-.39-1.388-.815-1.912-1.263.758-.912 1.213-1.939 1.245-3.057H20v-1.25h-3.25V10.25H15.5zM3 14.172l.586-.586A2 2 0 0 1 5 13h4v-2.47H6.96L6.563 12H5l2.031-7H8.97l.96 3.312A2 2 0 0 1 11 8h2V4H3zm4.306-4.927h1.386l-.67-2.481h-.047z" clip-rule="evenodd"/></svg>
|
package/icons/tree.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.01 5v1H11c.333 0 1 0 1.5.5S13 7.667 13 8v7.01c0 .54.45.99.99.99H15v-1a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-1h-1.01C12.34 18 11 16.66 11 15.01V9c0-1 0-1-1-1H9v1a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.01a2 2 0 0 1 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"><g clip-path="url(#a)"><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.78 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m0-7c-.28 0-.5.22-.5.5V9H7.5c-.28 0-.5.22-.5.5s.22.5.5.5H9v1.5c0 .28.22.5.5.5s.5-.22.5-.5V10h1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7.5c0-.28-.22-.5-.5-.5"/></g><defs><clipPath id="a"><path d="M0 0h24v24H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><g clip-path="url(#a)"><path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.26 4.25c.41.41 1.07.41 1.48 0l.01-.01c.41-.41.41-1.07 0-1.48zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14m-2-5h4c.28 0 .5.22.5.5s-.22.5-.5.5h-4c-.28 0-.5-.22-.5-.5s.22-.5.5-.5"/></g><defs><clipPath id="a"><path d="M0 0h24v24H0z"/></clipPath></defs></svg>
|