likec4 1.39.0 → 1.39.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/__app__/react/likec4.tsx +2 -2
- package/__app__/src/icons.js +495 -0
- package/__app__/src/likec4.js +16342 -0
- package/__app__/src/main.js +1602 -56668
- package/__app__/src/mantine.js +11569 -0
- package/__app__/src/style.css +1 -1
- package/__app__/src/vendors.js +27829 -0
- package/config/package.json +4 -0
- package/dist/cli/index.mjs +245 -248
- package/dist/index.d.mts +4 -10
- package/dist/index.mjs +1 -2
- package/dist/shared/{likec4.D0i_9Zhl.mjs → likec4.0IE9MZtt.mjs} +1 -1
- package/dist/shared/{likec4.C_KAHtJX.mjs → likec4.CvyLKWYl.mjs} +1531 -1530
- package/dist/vite-plugin/index.mjs +1 -2
- package/package.json +16 -24
- package/react/index.d.mts +2052 -430
- package/react/index.mjs +49 -49
- package/react/package.json +4 -0
- package/vite-plugin/package.json +4 -0
- package/__app__/src/index-CIsxIzOH.js +0 -465
package/__app__/react/likec4.tsx
CHANGED
|
@@ -5,14 +5,14 @@ export const likec4model = $likec4model.get()
|
|
|
5
5
|
|
|
6
6
|
export {
|
|
7
7
|
IconRenderer as RenderIcon,
|
|
8
|
-
useLikeC4Model,
|
|
9
|
-
useLikeC4View,
|
|
10
8
|
} from 'likec4:single-project'
|
|
11
9
|
|
|
12
10
|
export {
|
|
13
11
|
LikeC4ModelProvider,
|
|
14
12
|
LikeC4View,
|
|
15
13
|
ReactLikeC4,
|
|
14
|
+
useLikeC4Model,
|
|
15
|
+
useLikeC4View,
|
|
16
16
|
} from 'likec4:react'
|
|
17
17
|
|
|
18
18
|
export function isLikeC4ViewId(value: unknown): value is ViewId {
|
|
@@ -0,0 +1,495 @@
|
|
|
1
|
+
import { forwardRef, createElement } from "react";
|
|
2
|
+
/**
|
|
3
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license.
|
|
6
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
var defaultAttributes = {
|
|
9
|
+
outline: {
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
width: 24,
|
|
12
|
+
height: 24,
|
|
13
|
+
viewBox: "0 0 24 24",
|
|
14
|
+
fill: "none",
|
|
15
|
+
stroke: "currentColor",
|
|
16
|
+
strokeWidth: 2,
|
|
17
|
+
strokeLinecap: "round",
|
|
18
|
+
strokeLinejoin: "round"
|
|
19
|
+
},
|
|
20
|
+
filled: {
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
width: 24,
|
|
23
|
+
height: 24,
|
|
24
|
+
viewBox: "0 0 24 24",
|
|
25
|
+
fill: "currentColor",
|
|
26
|
+
stroke: "none"
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
31
|
+
*
|
|
32
|
+
* This source code is licensed under the MIT license.
|
|
33
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
34
|
+
*/
|
|
35
|
+
const createReactComponent = (type, iconName, iconNamePascal, iconNode) => {
|
|
36
|
+
const Component = forwardRef(
|
|
37
|
+
({ color = "currentColor", size = 24, stroke = 2, title, className, children, ...rest }, ref) => createElement(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
ref,
|
|
41
|
+
...defaultAttributes[type],
|
|
42
|
+
width: size,
|
|
43
|
+
height: size,
|
|
44
|
+
className: ["tabler-icon", `tabler-icon-${iconName}`, className].join(" "),
|
|
45
|
+
...type === "filled" ? {
|
|
46
|
+
fill: color
|
|
47
|
+
} : {
|
|
48
|
+
strokeWidth: stroke,
|
|
49
|
+
stroke: color
|
|
50
|
+
},
|
|
51
|
+
...rest
|
|
52
|
+
},
|
|
53
|
+
[
|
|
54
|
+
title && createElement("title", { key: "svg-title" }, title),
|
|
55
|
+
...iconNode.map(([tag, attrs]) => createElement(tag, attrs)),
|
|
56
|
+
...Array.isArray(children) ? children : [children]
|
|
57
|
+
]
|
|
58
|
+
)
|
|
59
|
+
);
|
|
60
|
+
return Component.displayName = `${iconNamePascal}`, Component;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
64
|
+
*
|
|
65
|
+
* This source code is licensed under the MIT license.
|
|
66
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
67
|
+
*/
|
|
68
|
+
const __iconNode$R = [["path", { d: "M12 9v4", key: "svg-0" }], ["path", { d: "M10.363 3.591l-8.106 13.534a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636 -2.87l-8.106 -13.536a1.914 1.914 0 0 0 -3.274 0z", key: "svg-1" }], ["path", { d: "M12 16h.01", key: "svg-2" }]], IconAlertTriangle = createReactComponent("outline", "alert-triangle", "AlertTriangle", __iconNode$R);
|
|
69
|
+
/**
|
|
70
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
71
|
+
*
|
|
72
|
+
* This source code is licensed under the MIT license.
|
|
73
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
74
|
+
*/
|
|
75
|
+
const __iconNode$Q = [["path", { d: "M7 7l10 10", key: "svg-0" }], ["path", { d: "M17 8l0 9l-9 0", key: "svg-1" }]], IconArrowDownRight = createReactComponent("outline", "arrow-down-right", "ArrowDownRight", __iconNode$Q);
|
|
76
|
+
/**
|
|
77
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
78
|
+
*
|
|
79
|
+
* This source code is licensed under the MIT license.
|
|
80
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
81
|
+
*/
|
|
82
|
+
const __iconNode$P = [["path", { d: "M5 12l14 0", key: "svg-0" }], ["path", { d: "M5 12l6 6", key: "svg-1" }], ["path", { d: "M5 12l6 -6", key: "svg-2" }]], IconArrowLeft = createReactComponent("outline", "arrow-left", "ArrowLeft", __iconNode$P);
|
|
83
|
+
/**
|
|
84
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
85
|
+
*
|
|
86
|
+
* This source code is licensed under the MIT license.
|
|
87
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
88
|
+
*/
|
|
89
|
+
const __iconNode$O = [["path", { d: "M5 12l14 0", key: "svg-0" }], ["path", { d: "M13 18l6 -6", key: "svg-1" }], ["path", { d: "M13 6l6 6", key: "svg-2" }]], IconArrowRight = createReactComponent("outline", "arrow-right", "ArrowRight", __iconNode$O);
|
|
90
|
+
/**
|
|
91
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
92
|
+
*
|
|
93
|
+
* This source code is licensed under the MIT license.
|
|
94
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
95
|
+
*/
|
|
96
|
+
const __iconNode$N = [["path", { d: "M4 8h16", key: "svg-0" }], ["path", { d: "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z", key: "svg-1" }], ["path", { d: "M8 4v4", key: "svg-2" }]], IconBrowser = createReactComponent("outline", "browser", "Browser", __iconNode$N);
|
|
97
|
+
/**
|
|
98
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
99
|
+
*
|
|
100
|
+
* This source code is licensed under the MIT license.
|
|
101
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
102
|
+
*/
|
|
103
|
+
const __iconNode$M = [["path", { d: "M5 12l5 5l10 -10", key: "svg-0" }]], IconCheck = createReactComponent("outline", "check", "Check", __iconNode$M);
|
|
104
|
+
/**
|
|
105
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
106
|
+
*
|
|
107
|
+
* This source code is licensed under the MIT license.
|
|
108
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
109
|
+
*/
|
|
110
|
+
const __iconNode$L = [["path", { d: "M6 9l6 6l6 -6", key: "svg-0" }]], IconChevronDown = createReactComponent("outline", "chevron-down", "ChevronDown", __iconNode$L);
|
|
111
|
+
/**
|
|
112
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
113
|
+
*
|
|
114
|
+
* This source code is licensed under the MIT license.
|
|
115
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
116
|
+
*/
|
|
117
|
+
const __iconNode$K = [["path", { d: "M15 6l-6 6l6 6", key: "svg-0" }]], IconChevronLeft = createReactComponent("outline", "chevron-left", "ChevronLeft", __iconNode$K);
|
|
118
|
+
/**
|
|
119
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
120
|
+
*
|
|
121
|
+
* This source code is licensed under the MIT license.
|
|
122
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
123
|
+
*/
|
|
124
|
+
const __iconNode$J = [["path", { d: "M9 6l6 6l-6 6", key: "svg-0" }]], IconChevronRight = createReactComponent("outline", "chevron-right", "ChevronRight", __iconNode$J);
|
|
125
|
+
/**
|
|
126
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
127
|
+
*
|
|
128
|
+
* This source code is licensed under the MIT license.
|
|
129
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
130
|
+
*/
|
|
131
|
+
const __iconNode$I = [["path", { d: "M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z", key: "svg-0" }], ["path", { d: "M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1", key: "svg-1" }]], IconCopy = createReactComponent("outline", "copy", "Copy", __iconNode$I);
|
|
132
|
+
/**
|
|
133
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
134
|
+
*
|
|
135
|
+
* This source code is licensed under the MIT license.
|
|
136
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
137
|
+
*/
|
|
138
|
+
const __iconNode$H = [["path", { d: "M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0", key: "svg-0" }], ["path", { d: "M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12", key: "svg-1" }]], IconCylinder = createReactComponent("outline", "cylinder", "Cylinder", __iconNode$H);
|
|
139
|
+
/**
|
|
140
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
141
|
+
*
|
|
142
|
+
* This source code is licensed under the MIT license.
|
|
143
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
144
|
+
*/
|
|
145
|
+
const __iconNode$G = [["path", { d: "M6 5a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v14a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2v-14z", key: "svg-0" }], ["path", { d: "M11 4h2", key: "svg-1" }], ["path", { d: "M12 17v.01", key: "svg-2" }]], IconDeviceMobile = createReactComponent("outline", "device-mobile", "DeviceMobile", __iconNode$G);
|
|
146
|
+
/**
|
|
147
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
148
|
+
*
|
|
149
|
+
* This source code is licensed under the MIT license.
|
|
150
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
151
|
+
*/
|
|
152
|
+
const __iconNode$F = [["path", { d: "M12 6h-6a2 2 0 0 0 -2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-6", key: "svg-0" }], ["path", { d: "M11 13l9 -9", key: "svg-1" }], ["path", { d: "M15 4h5v5", key: "svg-2" }]], IconExternalLink = createReactComponent("outline", "external-link", "ExternalLink", __iconNode$F);
|
|
153
|
+
/**
|
|
154
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
155
|
+
*
|
|
156
|
+
* This source code is licensed under the MIT license.
|
|
157
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
158
|
+
*/
|
|
159
|
+
const __iconNode$E = [["path", { d: "M14 3v4a1 1 0 0 0 1 1h4", key: "svg-0" }], ["path", { d: "M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z", key: "svg-1" }], ["path", { d: "M10 13l-1 2l1 2", key: "svg-2" }], ["path", { d: "M14 13l1 2l-1 2", key: "svg-3" }]], IconFileCode = createReactComponent("outline", "file-code", "FileCode", __iconNode$E);
|
|
160
|
+
/**
|
|
161
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
162
|
+
*
|
|
163
|
+
* This source code is licensed under the MIT license.
|
|
164
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
165
|
+
*/
|
|
166
|
+
const __iconNode$D = [["path", { d: "M4 21v-4a3 3 0 0 1 3 -3h5", key: "svg-0" }], ["path", { d: "M9 17l3 -3l-3 -3", key: "svg-1" }], ["path", { d: "M14 3v4a1 1 0 0 0 1 1h4", key: "svg-2" }], ["path", { d: "M5 11v-6a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2h-9.5", key: "svg-3" }]], IconFileSymlink = createReactComponent("outline", "file-symlink", "FileSymlink", __iconNode$D);
|
|
167
|
+
/**
|
|
168
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
169
|
+
*
|
|
170
|
+
* This source code is licensed under the MIT license.
|
|
171
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
172
|
+
*/
|
|
173
|
+
const __iconNode$C = [["path", { d: "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0", key: "svg-0" }], ["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-1" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-2" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-3" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-4" }]], IconFocusCentered = createReactComponent("outline", "focus-centered", "FocusCentered", __iconNode$C);
|
|
174
|
+
/**
|
|
175
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
176
|
+
*
|
|
177
|
+
* This source code is licensed under the MIT license.
|
|
178
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
179
|
+
*/
|
|
180
|
+
const __iconNode$B = [["path", { d: "M5 19l2.757 -7.351a1 1 0 0 1 .936 -.649h12.307a1 1 0 0 1 .986 1.164l-.996 5.211a2 2 0 0 1 -1.964 1.625h-14.026a2 2 0 0 1 -2 -2v-11a2 2 0 0 1 2 -2h4l3 3h7a2 2 0 0 1 2 2v2", key: "svg-0" }]], IconFolderOpen = createReactComponent("outline", "folder-open", "FolderOpen", __iconNode$B);
|
|
181
|
+
/**
|
|
182
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
183
|
+
*
|
|
184
|
+
* This source code is licensed under the MIT license.
|
|
185
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
186
|
+
*/
|
|
187
|
+
const __iconNode$A = [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", key: "svg-0" }], ["path", { d: "M12 16v.01", key: "svg-1" }], ["path", { d: "M12 13a2 2 0 0 0 .914 -3.782a1.98 1.98 0 0 0 -2.414 .483", key: "svg-2" }]], IconHelpCircle = createReactComponent("outline", "help-circle", "HelpCircle", __iconNode$A);
|
|
188
|
+
/**
|
|
189
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
190
|
+
*
|
|
191
|
+
* This source code is licensed under the MIT license.
|
|
192
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
193
|
+
*/
|
|
194
|
+
const __iconNode$z = [["path", { d: "M3 4m0 3a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v10a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3z", key: "svg-0" }], ["path", { d: "M9 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0", key: "svg-1" }], ["path", { d: "M15 8l2 0", key: "svg-2" }], ["path", { d: "M15 12l2 0", key: "svg-3" }], ["path", { d: "M7 16l10 0", key: "svg-4" }]], IconId = createReactComponent("outline", "id", "Id", __iconNode$z);
|
|
195
|
+
/**
|
|
196
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
197
|
+
*
|
|
198
|
+
* This source code is licensed under the MIT license.
|
|
199
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
200
|
+
*/
|
|
201
|
+
const __iconNode$y = [["path", { d: "M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0", key: "svg-0" }], ["path", { d: "M12 9h.01", key: "svg-1" }], ["path", { d: "M11 12h1v4h1", key: "svg-2" }]], IconInfoCircle = createReactComponent("outline", "info-circle", "InfoCircle", __iconNode$y);
|
|
202
|
+
/**
|
|
203
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
204
|
+
*
|
|
205
|
+
* This source code is licensed under the MIT license.
|
|
206
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
207
|
+
*/
|
|
208
|
+
const __iconNode$x = [["path", { d: "M4 20l16 0", key: "svg-0" }], ["path", { d: "M9 4m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z", key: "svg-1" }]], IconLayoutAlignBottom = createReactComponent("outline", "layout-align-bottom", "LayoutAlignBottom", __iconNode$x);
|
|
209
|
+
/**
|
|
210
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
211
|
+
*
|
|
212
|
+
* This source code is licensed under the MIT license.
|
|
213
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
214
|
+
*/
|
|
215
|
+
const __iconNode$w = [["path", { d: "M12 4l0 5", key: "svg-0" }], ["path", { d: "M12 15l0 5", key: "svg-1" }], ["path", { d: "M6 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z", key: "svg-2" }]], IconLayoutAlignCenter = createReactComponent("outline", "layout-align-center", "LayoutAlignCenter", __iconNode$w);
|
|
216
|
+
/**
|
|
217
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
218
|
+
*
|
|
219
|
+
* This source code is licensed under the MIT license.
|
|
220
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
221
|
+
*/
|
|
222
|
+
const __iconNode$v = [["path", { d: "M4 4l0 16", key: "svg-0" }], ["path", { d: "M8 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z", key: "svg-1" }]], IconLayoutAlignLeft = createReactComponent("outline", "layout-align-left", "LayoutAlignLeft", __iconNode$v);
|
|
223
|
+
/**
|
|
224
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
225
|
+
*
|
|
226
|
+
* This source code is licensed under the MIT license.
|
|
227
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
228
|
+
*/
|
|
229
|
+
const __iconNode$u = [["path", { d: "M4 12l5 0", key: "svg-0" }], ["path", { d: "M15 12l5 0", key: "svg-1" }], ["path", { d: "M9 6m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z", key: "svg-2" }]], IconLayoutAlignMiddle = createReactComponent("outline", "layout-align-middle", "LayoutAlignMiddle", __iconNode$u);
|
|
230
|
+
/**
|
|
231
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
232
|
+
*
|
|
233
|
+
* This source code is licensed under the MIT license.
|
|
234
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
235
|
+
*/
|
|
236
|
+
const __iconNode$t = [["path", { d: "M20 4l0 16", key: "svg-0" }], ["path", { d: "M4 9m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z", key: "svg-1" }]], IconLayoutAlignRight = createReactComponent("outline", "layout-align-right", "LayoutAlignRight", __iconNode$t);
|
|
237
|
+
/**
|
|
238
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
239
|
+
*
|
|
240
|
+
* This source code is licensed under the MIT license.
|
|
241
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
242
|
+
*/
|
|
243
|
+
const __iconNode$s = [["path", { d: "M4 4l16 0", key: "svg-0" }], ["path", { d: "M9 8m0 2a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-2a2 2 0 0 1 -2 -2z", key: "svg-1" }]], IconLayoutAlignTop = createReactComponent("outline", "layout-align-top", "LayoutAlignTop", __iconNode$s);
|
|
244
|
+
/**
|
|
245
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
246
|
+
*
|
|
247
|
+
* This source code is licensed under the MIT license.
|
|
248
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
249
|
+
*/
|
|
250
|
+
const __iconNode$r = [["path", { d: "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z", key: "svg-0" }], ["path", { d: "M4 12h8", key: "svg-1" }], ["path", { d: "M12 15h8", key: "svg-2" }], ["path", { d: "M12 9h8", key: "svg-3" }], ["path", { d: "M12 4v16", key: "svg-4" }]], IconLayoutBoardSplit = createReactComponent("outline", "layout-board-split", "LayoutBoardSplit", __iconNode$r);
|
|
251
|
+
/**
|
|
252
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
253
|
+
*
|
|
254
|
+
* This source code is licensed under the MIT license.
|
|
255
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
256
|
+
*/
|
|
257
|
+
const __iconNode$q = [["path", { d: "M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z", key: "svg-0" }], ["path", { d: "M10 4l4 16", key: "svg-1" }], ["path", { d: "M12 12l-8 2", key: "svg-2" }]], IconLayoutCollage = createReactComponent("outline", "layout-collage", "LayoutCollage", __iconNode$q);
|
|
258
|
+
/**
|
|
259
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
260
|
+
*
|
|
261
|
+
* This source code is licensed under the MIT license.
|
|
262
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
263
|
+
*/
|
|
264
|
+
const __iconNode$p = [["path", { d: "M5 4h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-0" }], ["path", { d: "M5 16h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-1" }], ["path", { d: "M15 12h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-6a1 1 0 0 1 1 -1", key: "svg-2" }], ["path", { d: "M15 4h4a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1", key: "svg-3" }]], IconLayoutDashboard = createReactComponent("outline", "layout-dashboard", "LayoutDashboard", __iconNode$p);
|
|
265
|
+
/**
|
|
266
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
267
|
+
*
|
|
268
|
+
* This source code is licensed under the MIT license.
|
|
269
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
270
|
+
*/
|
|
271
|
+
const __iconNode$o = [["path", { d: "M9 15l6 -6", key: "svg-0" }], ["path", { d: "M11 6l.463 -.536a5 5 0 0 1 7.071 7.072l-.534 .464", key: "svg-1" }], ["path", { d: "M13 18l-.397 .534a5.068 5.068 0 0 1 -7.127 0a4.972 4.972 0 0 1 0 -7.071l.524 -.463", key: "svg-2" }]], IconLink = createReactComponent("outline", "link", "Link", __iconNode$o);
|
|
272
|
+
/**
|
|
273
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
274
|
+
*
|
|
275
|
+
* This source code is licensed under the MIT license.
|
|
276
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
277
|
+
*/
|
|
278
|
+
const __iconNode$n = [["path", { d: "M3 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z", key: "svg-0" }], ["path", { d: "M9 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0", key: "svg-1" }], ["path", { d: "M13 11v-4a4 4 0 1 1 8 0v4", key: "svg-2" }]], IconLockOpen2 = createReactComponent("outline", "lock-open-2", "LockOpen2", __iconNode$n);
|
|
279
|
+
/**
|
|
280
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
281
|
+
*
|
|
282
|
+
* This source code is licensed under the MIT license.
|
|
283
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
284
|
+
*/
|
|
285
|
+
const __iconNode$m = [["path", { d: "M5 13a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v6a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-6z", key: "svg-0" }], ["path", { d: "M11 16a1 1 0 1 0 2 0a1 1 0 0 0 -2 0", key: "svg-1" }], ["path", { d: "M8 11v-4a4 4 0 1 1 8 0v4", key: "svg-2" }]], IconLock = createReactComponent("outline", "lock", "Lock", __iconNode$m);
|
|
286
|
+
/**
|
|
287
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
288
|
+
*
|
|
289
|
+
* This source code is licensed under the MIT license.
|
|
290
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
291
|
+
*/
|
|
292
|
+
const __iconNode$l = [["path", { d: "M4 6l16 0", key: "svg-0" }], ["path", { d: "M4 12l16 0", key: "svg-1" }], ["path", { d: "M4 18l16 0", key: "svg-2" }]], IconMenu2 = createReactComponent("outline", "menu-2", "Menu2", __iconNode$l);
|
|
293
|
+
/**
|
|
294
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
295
|
+
*
|
|
296
|
+
* This source code is licensed under the MIT license.
|
|
297
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
298
|
+
*/
|
|
299
|
+
const __iconNode$k = [["path", { d: "M4 8l16 0", key: "svg-0" }], ["path", { d: "M4 16l16 0", key: "svg-1" }]], IconMenu = createReactComponent("outline", "menu", "Menu", __iconNode$k);
|
|
300
|
+
/**
|
|
301
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
302
|
+
*
|
|
303
|
+
* This source code is licensed under the MIT license.
|
|
304
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
305
|
+
*/
|
|
306
|
+
const __iconNode$j = [["path", { d: "M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z", key: "svg-0" }], ["path", { d: "M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2", key: "svg-1" }], ["path", { d: "M19 11h2m-1 -1v2", key: "svg-2" }]], IconMoonStars = createReactComponent("outline", "moon-stars", "MoonStars", __iconNode$j);
|
|
307
|
+
/**
|
|
308
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
309
|
+
*
|
|
310
|
+
* This source code is licensed under the MIT license.
|
|
311
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
312
|
+
*/
|
|
313
|
+
const __iconNode$i = [["path", { d: "M21 14.008v-5.018a1.98 1.98 0 0 0 -1 -1.717l-4 -2.008a2.016 2.016 0 0 0 -2 0l-10 5.008c-.619 .355 -1 1.01 -1 1.718v5.018c0 .709 .381 1.363 1 1.717l4 2.008a2.016 2.016 0 0 0 2 0l10 -5.008c.619 -.355 1 -1.01 1 -1.718z", key: "svg-0" }], ["path", { d: "M9 21v-7.5", key: "svg-1" }], ["path", { d: "M9 13.5l11.5 -5.5", key: "svg-2" }], ["path", { d: "M3.5 11l5.5 2.5", key: "svg-3" }]], IconRectangularPrism = createReactComponent("outline", "rectangular-prism", "RectangularPrism", __iconNode$i);
|
|
314
|
+
/**
|
|
315
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
316
|
+
*
|
|
317
|
+
* This source code is licensed under the MIT license.
|
|
318
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
319
|
+
*/
|
|
320
|
+
const __iconNode$h = [["path", { d: "M3 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z", key: "svg-0" }], ["path", { d: "M10 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z", key: "svg-1" }], ["path", { d: "M17 15m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z", key: "svg-2" }], ["path", { d: "M5 11v-3a3 3 0 0 1 3 -3h8a3 3 0 0 1 3 3v3", key: "svg-3" }], ["path", { d: "M16.5 8.5l2.5 2.5l2.5 -2.5", key: "svg-4" }]], IconReorder = createReactComponent("outline", "reorder", "Reorder", __iconNode$h);
|
|
321
|
+
/**
|
|
322
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
323
|
+
*
|
|
324
|
+
* This source code is licensed under the MIT license.
|
|
325
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
326
|
+
*/
|
|
327
|
+
const __iconNode$g = [["path", { d: "M6 19m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0", key: "svg-0" }], ["path", { d: "M18 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0", key: "svg-1" }], ["path", { d: "M12 19h4.5c.71 0 1.372 -.212 1.924 -.576m1.545 -2.459a3.5 3.5 0 0 0 -3.469 -3.965h-.499m-4 0h-3.501a3.5 3.5 0 0 1 -2.477 -5.972m2.477 -1.028h3.5", key: "svg-2" }], ["path", { d: "M3 3l18 18", key: "svg-3" }]], IconRouteOff = createReactComponent("outline", "route-off", "RouteOff", __iconNode$g);
|
|
328
|
+
/**
|
|
329
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
330
|
+
*
|
|
331
|
+
* This source code is licensed under the MIT license.
|
|
332
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
333
|
+
*/
|
|
334
|
+
const __iconNode$f = [["path", { d: "M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0", key: "svg-0" }], ["path", { d: "M21 21l-6 -6", key: "svg-1" }]], IconSearch = createReactComponent("outline", "search", "Search", __iconNode$f);
|
|
335
|
+
/**
|
|
336
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
337
|
+
*
|
|
338
|
+
* This source code is licensed under the MIT license.
|
|
339
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
340
|
+
*/
|
|
341
|
+
const __iconNode$e = [["path", { d: "M8 9l4 -4l4 4", key: "svg-0" }], ["path", { d: "M16 15l-4 4l-4 -4", key: "svg-1" }]], IconSelector = createReactComponent("outline", "selector", "Selector", __iconNode$e);
|
|
342
|
+
/**
|
|
343
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
344
|
+
*
|
|
345
|
+
* This source code is licensed under the MIT license.
|
|
346
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
347
|
+
*/
|
|
348
|
+
const __iconNode$d = [["path", { d: "M6 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-0" }], ["path", { d: "M18 6m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-1" }], ["path", { d: "M18 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0", key: "svg-2" }], ["path", { d: "M8.7 10.7l6.6 -3.4", key: "svg-3" }], ["path", { d: "M8.7 13.3l6.6 3.4", key: "svg-4" }]], IconShare = createReactComponent("outline", "share", "Share", __iconNode$d);
|
|
349
|
+
/**
|
|
350
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
351
|
+
*
|
|
352
|
+
* This source code is licensed under the MIT license.
|
|
353
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
354
|
+
*/
|
|
355
|
+
const __iconNode$c = [["path", { d: "M12 4l-8 4l8 4l8 -4l-8 -4", key: "svg-0" }], ["path", { d: "M4 12l8 4l8 -4", key: "svg-1" }], ["path", { d: "M4 16l8 4l8 -4", key: "svg-2" }]], IconStack2 = createReactComponent("outline", "stack-2", "Stack2", __iconNode$c);
|
|
356
|
+
/**
|
|
357
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
358
|
+
*
|
|
359
|
+
* This source code is licensed under the MIT license.
|
|
360
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
361
|
+
*/
|
|
362
|
+
const __iconNode$b = [["path", { d: "M12 12m-4 0a4 4 0 1 0 8 0a4 4 0 1 0 -8 0", key: "svg-0" }], ["path", { d: "M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7", key: "svg-1" }]], IconSun = createReactComponent("outline", "sun", "Sun", __iconNode$b);
|
|
363
|
+
/**
|
|
364
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
365
|
+
*
|
|
366
|
+
* This source code is licensed under the MIT license.
|
|
367
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
368
|
+
*/
|
|
369
|
+
const __iconNode$a = [["path", { d: "M12 12m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0", key: "svg-0" }], ["path", { d: "M12 12m-5 0a5 5 0 1 0 10 0a5 5 0 1 0 -10 0", key: "svg-1" }], ["path", { d: "M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0", key: "svg-2" }]], IconTarget = createReactComponent("outline", "target", "Target", __iconNode$a);
|
|
370
|
+
/**
|
|
371
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
372
|
+
*
|
|
373
|
+
* This source code is licensed under the MIT license.
|
|
374
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
375
|
+
*/
|
|
376
|
+
const __iconNode$9 = [["path", { d: "M3 6a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-0" }], ["path", { d: "M21 11v-3a2 2 0 0 0 -2 -2h-6l3 3m0 -6l-3 3", key: "svg-1" }], ["path", { d: "M3 13v3a2 2 0 0 0 2 2h6l-3 -3m0 6l3 -3", key: "svg-2" }], ["path", { d: "M15 18a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-3" }]], IconTransform = createReactComponent("outline", "transform", "Transform", __iconNode$9);
|
|
377
|
+
/**
|
|
378
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
379
|
+
*
|
|
380
|
+
* This source code is licensed under the MIT license.
|
|
381
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
382
|
+
*/
|
|
383
|
+
const __iconNode$8 = [["path", { d: "M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0", key: "svg-0" }], ["path", { d: "M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2", key: "svg-1" }]], IconUser = createReactComponent("outline", "user", "User", __iconNode$8);
|
|
384
|
+
/**
|
|
385
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
386
|
+
*
|
|
387
|
+
* This source code is licensed under the MIT license.
|
|
388
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
389
|
+
*/
|
|
390
|
+
const __iconNode$7 = [["path", { d: "M18 6l-12 12", key: "svg-0" }], ["path", { d: "M6 6l12 12", key: "svg-1" }]], IconX = createReactComponent("outline", "x", "X", __iconNode$7);
|
|
391
|
+
/**
|
|
392
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
393
|
+
*
|
|
394
|
+
* This source code is licensed under the MIT license.
|
|
395
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
396
|
+
*/
|
|
397
|
+
const __iconNode$6 = [["path", { d: "M4 8v-2a2 2 0 0 1 2 -2h2", key: "svg-0" }], ["path", { d: "M4 16v2a2 2 0 0 0 2 2h2", key: "svg-1" }], ["path", { d: "M16 4h2a2 2 0 0 1 2 2v2", key: "svg-2" }], ["path", { d: "M16 20h2a2 2 0 0 0 2 -2v-2", key: "svg-3" }], ["path", { d: "M8 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0", key: "svg-4" }], ["path", { d: "M16 16l-2.5 -2.5", key: "svg-5" }]], IconZoomScan = createReactComponent("outline", "zoom-scan", "ZoomScan", __iconNode$6);
|
|
398
|
+
/**
|
|
399
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
400
|
+
*
|
|
401
|
+
* This source code is licensed under the MIT license.
|
|
402
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
403
|
+
*/
|
|
404
|
+
const __iconNode$5 = [["path", { d: "M9 3a1 1 0 0 1 .608 .206l.1 .087l2.706 2.707h6.586a3 3 0 0 1 2.995 2.824l.005 .176v8a3 3 0 0 1 -2.824 2.995l-.176 .005h-14a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-11a3 3 0 0 1 2.824 -2.995l.176 -.005h4z", key: "svg-0" }]], IconFolderFilled = createReactComponent("filled", "folder-filled", "FolderFilled", __iconNode$5);
|
|
405
|
+
/**
|
|
406
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
407
|
+
*
|
|
408
|
+
* This source code is licensed under the MIT license.
|
|
409
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
410
|
+
*/
|
|
411
|
+
const __iconNode$4 = [["path", { d: "M6 4v16a1 1 0 0 0 1.524 .852l13 -8a1 1 0 0 0 0 -1.704l-13 -8a1 1 0 0 0 -1.524 .852z", key: "svg-0" }]], IconPlayerPlayFilled = createReactComponent("filled", "player-play-filled", "PlayerPlayFilled", __iconNode$4);
|
|
412
|
+
/**
|
|
413
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
414
|
+
*
|
|
415
|
+
* This source code is licensed under the MIT license.
|
|
416
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
417
|
+
*/
|
|
418
|
+
const __iconNode$3 = [["path", { d: "M19.496 4.136l-12 7a1 1 0 0 0 0 1.728l12 7a1 1 0 0 0 1.504 -.864v-14a1 1 0 0 0 -1.504 -.864z", key: "svg-0" }], ["path", { d: "M4 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]], IconPlayerSkipBackFilled = createReactComponent("filled", "player-skip-back-filled", "PlayerSkipBackFilled", __iconNode$3);
|
|
419
|
+
/**
|
|
420
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
421
|
+
*
|
|
422
|
+
* This source code is licensed under the MIT license.
|
|
423
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
424
|
+
*/
|
|
425
|
+
const __iconNode$2 = [["path", { d: "M3 5v14a1 1 0 0 0 1.504 .864l12 -7a1 1 0 0 0 0 -1.728l-12 -7a1 1 0 0 0 -1.504 .864z", key: "svg-0" }], ["path", { d: "M20 4a1 1 0 0 1 .993 .883l.007 .117v14a1 1 0 0 1 -1.993 .117l-.007 -.117v-14a1 1 0 0 1 1 -1z", key: "svg-1" }]], IconPlayerSkipForwardFilled = createReactComponent("filled", "player-skip-forward-filled", "PlayerSkipForwardFilled", __iconNode$2);
|
|
426
|
+
/**
|
|
427
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
428
|
+
*
|
|
429
|
+
* This source code is licensed under the MIT license.
|
|
430
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
431
|
+
*/
|
|
432
|
+
const __iconNode$1 = [["path", { d: "M17 4h-10a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3z", key: "svg-0" }]], IconPlayerStopFilled = createReactComponent("filled", "player-stop-filled", "PlayerStopFilled", __iconNode$1);
|
|
433
|
+
/**
|
|
434
|
+
* @license @tabler/icons-react v3.34.1 - MIT
|
|
435
|
+
*
|
|
436
|
+
* This source code is licensed under the MIT license.
|
|
437
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
438
|
+
*/
|
|
439
|
+
const __iconNode = [["path", { d: "M8.243 7.34l-6.38 .925l-.113 .023a1 1 0 0 0 -.44 1.684l4.622 4.499l-1.09 6.355l-.013 .11a1 1 0 0 0 1.464 .944l5.706 -3l5.693 3l.1 .046a1 1 0 0 0 1.352 -1.1l-1.091 -6.355l4.624 -4.5l.078 -.085a1 1 0 0 0 -.633 -1.62l-6.38 -.926l-2.852 -5.78a1 1 0 0 0 -1.794 0l-2.853 5.78z", key: "svg-0" }]], IconStarFilled = createReactComponent("filled", "star-filled", "StarFilled", __iconNode);
|
|
440
|
+
export {
|
|
441
|
+
IconShare as $,
|
|
442
|
+
IconArrowRight as A,
|
|
443
|
+
IconSearch as B,
|
|
444
|
+
IconLock as C,
|
|
445
|
+
IconLockOpen2 as D,
|
|
446
|
+
IconCopy as E,
|
|
447
|
+
IconLink as F,
|
|
448
|
+
IconPlayerStopFilled as G,
|
|
449
|
+
IconPlayerSkipBackFilled as H,
|
|
450
|
+
IconCylinder as I,
|
|
451
|
+
IconPlayerSkipForwardFilled as J,
|
|
452
|
+
IconPlayerPlayFilled as K,
|
|
453
|
+
IconChevronDown as L,
|
|
454
|
+
IconStack2 as M,
|
|
455
|
+
IconStarFilled as N,
|
|
456
|
+
IconFolderFilled as O,
|
|
457
|
+
IconX as P,
|
|
458
|
+
IconInfoCircle as Q,
|
|
459
|
+
IconTarget as R,
|
|
460
|
+
IconChevronLeft as S,
|
|
461
|
+
IconExternalLink as T,
|
|
462
|
+
IconMenu as U,
|
|
463
|
+
IconHelpCircle as V,
|
|
464
|
+
IconArrowDownRight as W,
|
|
465
|
+
IconFileCode as X,
|
|
466
|
+
IconFolderOpen as Y,
|
|
467
|
+
IconMoonStars as Z,
|
|
468
|
+
IconSun as _,
|
|
469
|
+
IconRectangularPrism as a,
|
|
470
|
+
IconReorder as b,
|
|
471
|
+
IconUser as c,
|
|
472
|
+
IconDeviceMobile as d,
|
|
473
|
+
IconBrowser as e,
|
|
474
|
+
IconZoomScan as f,
|
|
475
|
+
IconId as g,
|
|
476
|
+
IconTransform as h,
|
|
477
|
+
IconFileSymlink as i,
|
|
478
|
+
IconSelector as j,
|
|
479
|
+
IconCheck as k,
|
|
480
|
+
IconChevronRight as l,
|
|
481
|
+
IconFocusCentered as m,
|
|
482
|
+
IconLayoutDashboard as n,
|
|
483
|
+
IconAlertTriangle as o,
|
|
484
|
+
IconLayoutCollage as p,
|
|
485
|
+
IconLayoutBoardSplit as q,
|
|
486
|
+
IconLayoutAlignLeft as r,
|
|
487
|
+
IconLayoutAlignCenter as s,
|
|
488
|
+
IconLayoutAlignRight as t,
|
|
489
|
+
IconLayoutAlignTop as u,
|
|
490
|
+
IconLayoutAlignMiddle as v,
|
|
491
|
+
IconLayoutAlignBottom as w,
|
|
492
|
+
IconRouteOff as x,
|
|
493
|
+
IconMenu2 as y,
|
|
494
|
+
IconArrowLeft as z
|
|
495
|
+
};
|