@xmart/xorder-ui-icons 0.0.35-dev.1 → 0.1.1
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/dist/icons/XoCalendarDailyOutlineIcon.d.ts +11 -0
- package/dist/icons/{XoTranslateFillIcon.d.ts → XoCopyOutlineIcon.d.ts} +1 -1
- package/dist/icons/XoFaxOutlineIcon.d.ts +11 -0
- package/dist/icons/XoHeartFillIcon.d.ts +11 -0
- package/dist/icons/XoHeartOutlineIcon.d.ts +11 -0
- package/dist/icons/XoKeyboardOutlineIcon.d.ts +11 -0
- package/dist/icons/XoTranslateOutlineIcon.d.ts +11 -0
- package/dist/icons/index.d.ts +7 -1
- package/dist/index.esm.js +381 -476
- package/dist/index.esm.js.map +1 -1
- package/package.json +13 -3
package/dist/index.esm.js
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import { forwardRef, useMemo } from "react";
|
|
2
|
-
|
|
3
|
-
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
4
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, { get: (a, b) => (typeof require !== "undefined" ? require : a)[b] }) : x)(function(x) {
|
|
5
|
-
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
6
|
-
throw Error("Calling `require` for \"" + x + "\" in an environment that doesn't expose the `require` function. See https://rolldown.rs/in-depth/bundling-cjs#require-external-modules for more details.");
|
|
7
|
-
});
|
|
8
|
-
//#endregion
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
9
3
|
//#region src/utils.ts
|
|
10
4
|
/**
|
|
11
5
|
* ピクセル値をrem単位に変換します
|
|
@@ -30,246 +24,9 @@ function rem(value, ...additionalValues) {
|
|
|
30
24
|
}).join(" ");
|
|
31
25
|
}
|
|
32
26
|
//#endregion
|
|
33
|
-
//#region ../../node_modules/react/cjs/react-jsx-runtime.production.js
|
|
34
|
-
/**
|
|
35
|
-
* @license React
|
|
36
|
-
* react-jsx-runtime.production.js
|
|
37
|
-
*
|
|
38
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
39
|
-
*
|
|
40
|
-
* This source code is licensed under the MIT license found in the
|
|
41
|
-
* LICENSE file in the root directory of this source tree.
|
|
42
|
-
*/
|
|
43
|
-
var require_react_jsx_runtime_production = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
44
|
-
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
|
|
45
|
-
function jsxProd(type, config, maybeKey) {
|
|
46
|
-
var key = null;
|
|
47
|
-
void 0 !== maybeKey && (key = "" + maybeKey);
|
|
48
|
-
void 0 !== config.key && (key = "" + config.key);
|
|
49
|
-
if ("key" in config) {
|
|
50
|
-
maybeKey = {};
|
|
51
|
-
for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]);
|
|
52
|
-
} else maybeKey = config;
|
|
53
|
-
config = maybeKey.ref;
|
|
54
|
-
return {
|
|
55
|
-
$$typeof: REACT_ELEMENT_TYPE,
|
|
56
|
-
type,
|
|
57
|
-
key,
|
|
58
|
-
ref: void 0 !== config ? config : null,
|
|
59
|
-
props: maybeKey
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
63
|
-
exports.jsx = jsxProd;
|
|
64
|
-
exports.jsxs = jsxProd;
|
|
65
|
-
}));
|
|
66
|
-
//#endregion
|
|
67
|
-
//#region ../../node_modules/react/cjs/react-jsx-runtime.development.js
|
|
68
|
-
/**
|
|
69
|
-
* @license React
|
|
70
|
-
* react-jsx-runtime.development.js
|
|
71
|
-
*
|
|
72
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
73
|
-
*
|
|
74
|
-
* This source code is licensed under the MIT license found in the
|
|
75
|
-
* LICENSE file in the root directory of this source tree.
|
|
76
|
-
*/
|
|
77
|
-
var require_react_jsx_runtime_development = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
78
|
-
"production" !== process.env.NODE_ENV && (function() {
|
|
79
|
-
function getComponentNameFromType(type) {
|
|
80
|
-
if (null == type) return null;
|
|
81
|
-
if ("function" === typeof type) return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
|
|
82
|
-
if ("string" === typeof type) return type;
|
|
83
|
-
switch (type) {
|
|
84
|
-
case REACT_FRAGMENT_TYPE: return "Fragment";
|
|
85
|
-
case REACT_PROFILER_TYPE: return "Profiler";
|
|
86
|
-
case REACT_STRICT_MODE_TYPE: return "StrictMode";
|
|
87
|
-
case REACT_SUSPENSE_TYPE: return "Suspense";
|
|
88
|
-
case REACT_SUSPENSE_LIST_TYPE: return "SuspenseList";
|
|
89
|
-
case REACT_ACTIVITY_TYPE: return "Activity";
|
|
90
|
-
}
|
|
91
|
-
if ("object" === typeof type) switch ("number" === typeof type.tag && console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), type.$$typeof) {
|
|
92
|
-
case REACT_PORTAL_TYPE: return "Portal";
|
|
93
|
-
case REACT_CONTEXT_TYPE: return type.displayName || "Context";
|
|
94
|
-
case REACT_CONSUMER_TYPE: return (type._context.displayName || "Context") + ".Consumer";
|
|
95
|
-
case REACT_FORWARD_REF_TYPE:
|
|
96
|
-
var innerType = type.render;
|
|
97
|
-
type = type.displayName;
|
|
98
|
-
type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
|
|
99
|
-
return type;
|
|
100
|
-
case REACT_MEMO_TYPE: return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
|
|
101
|
-
case REACT_LAZY_TYPE:
|
|
102
|
-
innerType = type._payload;
|
|
103
|
-
type = type._init;
|
|
104
|
-
try {
|
|
105
|
-
return getComponentNameFromType(type(innerType));
|
|
106
|
-
} catch (x) {}
|
|
107
|
-
}
|
|
108
|
-
return null;
|
|
109
|
-
}
|
|
110
|
-
function testStringCoercion(value) {
|
|
111
|
-
return "" + value;
|
|
112
|
-
}
|
|
113
|
-
function checkKeyStringCoercion(value) {
|
|
114
|
-
try {
|
|
115
|
-
testStringCoercion(value);
|
|
116
|
-
var JSCompiler_inline_result = !1;
|
|
117
|
-
} catch (e) {
|
|
118
|
-
JSCompiler_inline_result = !0;
|
|
119
|
-
}
|
|
120
|
-
if (JSCompiler_inline_result) {
|
|
121
|
-
JSCompiler_inline_result = console;
|
|
122
|
-
var JSCompiler_temp_const = JSCompiler_inline_result.error;
|
|
123
|
-
var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
|
|
124
|
-
JSCompiler_temp_const.call(JSCompiler_inline_result, "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.", JSCompiler_inline_result$jscomp$0);
|
|
125
|
-
return testStringCoercion(value);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
function getTaskName(type) {
|
|
129
|
-
if (type === REACT_FRAGMENT_TYPE) return "<>";
|
|
130
|
-
if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE) return "<...>";
|
|
131
|
-
try {
|
|
132
|
-
var name = getComponentNameFromType(type);
|
|
133
|
-
return name ? "<" + name + ">" : "<...>";
|
|
134
|
-
} catch (x) {
|
|
135
|
-
return "<...>";
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
function getOwner() {
|
|
139
|
-
var dispatcher = ReactSharedInternals.A;
|
|
140
|
-
return null === dispatcher ? null : dispatcher.getOwner();
|
|
141
|
-
}
|
|
142
|
-
function UnknownOwner() {
|
|
143
|
-
return Error("react-stack-top-frame");
|
|
144
|
-
}
|
|
145
|
-
function hasValidKey(config) {
|
|
146
|
-
if (hasOwnProperty.call(config, "key")) {
|
|
147
|
-
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
|
|
148
|
-
if (getter && getter.isReactWarning) return !1;
|
|
149
|
-
}
|
|
150
|
-
return void 0 !== config.key;
|
|
151
|
-
}
|
|
152
|
-
function defineKeyPropWarningGetter(props, displayName) {
|
|
153
|
-
function warnAboutAccessingKey() {
|
|
154
|
-
specialPropKeyWarningShown || (specialPropKeyWarningShown = !0, console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)", displayName));
|
|
155
|
-
}
|
|
156
|
-
warnAboutAccessingKey.isReactWarning = !0;
|
|
157
|
-
Object.defineProperty(props, "key", {
|
|
158
|
-
get: warnAboutAccessingKey,
|
|
159
|
-
configurable: !0
|
|
160
|
-
});
|
|
161
|
-
}
|
|
162
|
-
function elementRefGetterWithDeprecationWarning() {
|
|
163
|
-
var componentName = getComponentNameFromType(this.type);
|
|
164
|
-
didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = !0, console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."));
|
|
165
|
-
componentName = this.props.ref;
|
|
166
|
-
return void 0 !== componentName ? componentName : null;
|
|
167
|
-
}
|
|
168
|
-
function ReactElement(type, key, props, owner, debugStack, debugTask) {
|
|
169
|
-
var refProp = props.ref;
|
|
170
|
-
type = {
|
|
171
|
-
$$typeof: REACT_ELEMENT_TYPE,
|
|
172
|
-
type,
|
|
173
|
-
key,
|
|
174
|
-
props,
|
|
175
|
-
_owner: owner
|
|
176
|
-
};
|
|
177
|
-
null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
|
|
178
|
-
enumerable: !1,
|
|
179
|
-
get: elementRefGetterWithDeprecationWarning
|
|
180
|
-
}) : Object.defineProperty(type, "ref", {
|
|
181
|
-
enumerable: !1,
|
|
182
|
-
value: null
|
|
183
|
-
});
|
|
184
|
-
type._store = {};
|
|
185
|
-
Object.defineProperty(type._store, "validated", {
|
|
186
|
-
configurable: !1,
|
|
187
|
-
enumerable: !1,
|
|
188
|
-
writable: !0,
|
|
189
|
-
value: 0
|
|
190
|
-
});
|
|
191
|
-
Object.defineProperty(type, "_debugInfo", {
|
|
192
|
-
configurable: !1,
|
|
193
|
-
enumerable: !1,
|
|
194
|
-
writable: !0,
|
|
195
|
-
value: null
|
|
196
|
-
});
|
|
197
|
-
Object.defineProperty(type, "_debugStack", {
|
|
198
|
-
configurable: !1,
|
|
199
|
-
enumerable: !1,
|
|
200
|
-
writable: !0,
|
|
201
|
-
value: debugStack
|
|
202
|
-
});
|
|
203
|
-
Object.defineProperty(type, "_debugTask", {
|
|
204
|
-
configurable: !1,
|
|
205
|
-
enumerable: !1,
|
|
206
|
-
writable: !0,
|
|
207
|
-
value: debugTask
|
|
208
|
-
});
|
|
209
|
-
Object.freeze && (Object.freeze(type.props), Object.freeze(type));
|
|
210
|
-
return type;
|
|
211
|
-
}
|
|
212
|
-
function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) {
|
|
213
|
-
var children = config.children;
|
|
214
|
-
if (void 0 !== children) if (isStaticChildren) if (isArrayImpl(children)) {
|
|
215
|
-
for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++) validateChildKeys(children[isStaticChildren]);
|
|
216
|
-
Object.freeze && Object.freeze(children);
|
|
217
|
-
} else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
218
|
-
else validateChildKeys(children);
|
|
219
|
-
if (hasOwnProperty.call(config, "key")) {
|
|
220
|
-
children = getComponentNameFromType(type);
|
|
221
|
-
var keys = Object.keys(config).filter(function(k) {
|
|
222
|
-
return "key" !== k;
|
|
223
|
-
});
|
|
224
|
-
isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
225
|
-
didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error("A props object containing a \"key\" prop is being spread into JSX:\n let props = %s;\n <%s {...props} />\nReact keys must be passed directly to JSX without using spread:\n let props = %s;\n <%s key={someKey} {...props} />", isStaticChildren, children, keys, children), didWarnAboutKeySpread[children + isStaticChildren] = !0);
|
|
226
|
-
}
|
|
227
|
-
children = null;
|
|
228
|
-
void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
|
|
229
|
-
hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
|
|
230
|
-
if ("key" in config) {
|
|
231
|
-
maybeKey = {};
|
|
232
|
-
for (var propName in config) "key" !== propName && (maybeKey[propName] = config[propName]);
|
|
233
|
-
} else maybeKey = config;
|
|
234
|
-
children && defineKeyPropWarningGetter(maybeKey, "function" === typeof type ? type.displayName || type.name || "Unknown" : type);
|
|
235
|
-
return ReactElement(type, children, maybeKey, getOwner(), debugStack, debugTask);
|
|
236
|
-
}
|
|
237
|
-
function validateChildKeys(node) {
|
|
238
|
-
isValidElement(node) ? node._store && (node._store.validated = 1) : "object" === typeof node && null !== node && node.$$typeof === REACT_LAZY_TYPE && ("fulfilled" === node._payload.status ? isValidElement(node._payload.value) && node._payload.value._store && (node._payload.value._store.validated = 1) : node._store && (node._store.validated = 1));
|
|
239
|
-
}
|
|
240
|
-
function isValidElement(object) {
|
|
241
|
-
return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
|
|
242
|
-
}
|
|
243
|
-
var React = __require("react"), REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = Symbol.for("react.memo"), REACT_LAZY_TYPE = Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"), ReactSharedInternals = React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, hasOwnProperty = Object.prototype.hasOwnProperty, isArrayImpl = Array.isArray, createTask = console.createTask ? console.createTask : function() {
|
|
244
|
-
return null;
|
|
245
|
-
};
|
|
246
|
-
React = { react_stack_bottom_frame: function(callStackForError) {
|
|
247
|
-
return callStackForError();
|
|
248
|
-
} };
|
|
249
|
-
var specialPropKeyWarningShown;
|
|
250
|
-
var didWarnAboutElementRef = {};
|
|
251
|
-
var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(React, UnknownOwner)();
|
|
252
|
-
var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
|
|
253
|
-
var didWarnAboutKeySpread = {};
|
|
254
|
-
exports.Fragment = REACT_FRAGMENT_TYPE;
|
|
255
|
-
exports.jsx = function(type, config, maybeKey) {
|
|
256
|
-
var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
257
|
-
return jsxDEVImpl(type, config, maybeKey, !1, trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask);
|
|
258
|
-
};
|
|
259
|
-
exports.jsxs = function(type, config, maybeKey) {
|
|
260
|
-
var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
|
|
261
|
-
return jsxDEVImpl(type, config, maybeKey, !0, trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack, trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask);
|
|
262
|
-
};
|
|
263
|
-
})();
|
|
264
|
-
}));
|
|
265
|
-
//#endregion
|
|
266
27
|
//#region src/svg-icon.tsx
|
|
267
|
-
var import_jsx_runtime = (/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
268
|
-
if (process.env.NODE_ENV === "production") module.exports = require_react_jsx_runtime_production();
|
|
269
|
-
else module.exports = require_react_jsx_runtime_development();
|
|
270
|
-
})))();
|
|
271
28
|
var SvgIcon = forwardRef(({ color, strokeWidth = "0", size = 24, title, children, style: styleProp, className, "aria-hidden": ariaHidden, "aria-label": ariaLabel, role, ...other }, ref) => {
|
|
272
|
-
return /* @__PURE__ */
|
|
29
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
273
30
|
"aria-hidden": ariaHidden,
|
|
274
31
|
"aria-label": ariaLabel,
|
|
275
32
|
fill: "currentColor",
|
|
@@ -302,26 +59,26 @@ var SvgIcon = forwardRef(({ color, strokeWidth = "0", size = 24, title, children
|
|
|
302
59
|
role
|
|
303
60
|
]),
|
|
304
61
|
...other,
|
|
305
|
-
children: [title && /* @__PURE__ */
|
|
62
|
+
children: [title && /* @__PURE__ */ jsx("title", { children: title }), children]
|
|
306
63
|
});
|
|
307
64
|
});
|
|
308
65
|
SvgIcon.displayName = "@xmart/xorder-ui-icons/SvgIcon";
|
|
309
66
|
//#endregion
|
|
310
67
|
//#region src/icons/XoAlarmOutlineIcon.tsx
|
|
311
68
|
var XoAlarmOutlineIcon = forwardRef((props, ref) => {
|
|
312
|
-
return /* @__PURE__ */
|
|
69
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
313
70
|
ref,
|
|
314
71
|
viewBox: "0 0 24 24",
|
|
315
72
|
fill: "none",
|
|
316
73
|
stroke: "currentColor",
|
|
317
74
|
...props,
|
|
318
|
-
children: [/* @__PURE__ */
|
|
75
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
319
76
|
cx: "12",
|
|
320
77
|
cy: "13",
|
|
321
78
|
r: "7",
|
|
322
79
|
stroke: "currentColor",
|
|
323
80
|
strokeWidth: "1.5"
|
|
324
|
-
}), /* @__PURE__ */
|
|
81
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
325
82
|
d: "M12 9.5V13L14 15M17 4L20 7M4 7L7 4",
|
|
326
83
|
stroke: "currentColor",
|
|
327
84
|
strokeWidth: "1.5",
|
|
@@ -334,13 +91,13 @@ XoAlarmOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAlarmOutlineIcon";
|
|
|
334
91
|
//#endregion
|
|
335
92
|
//#region src/icons/XoArrowLeftOutlineIcon.tsx
|
|
336
93
|
var XoArrowLeftOutlineIcon = forwardRef((props, ref) => {
|
|
337
|
-
return /* @__PURE__ */
|
|
94
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
338
95
|
ref,
|
|
339
96
|
viewBox: "0 0 24 24",
|
|
340
97
|
fill: "none",
|
|
341
98
|
stroke: "currentColor",
|
|
342
99
|
...props,
|
|
343
|
-
children: /* @__PURE__ */
|
|
100
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
344
101
|
d: "M4 12L20 12M4 12L10 6M4 12L10 18",
|
|
345
102
|
stroke: "currentColor",
|
|
346
103
|
strokeWidth: "1.5",
|
|
@@ -353,13 +110,13 @@ XoArrowLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoArrowLeftOutlineI
|
|
|
353
110
|
//#endregion
|
|
354
111
|
//#region src/icons/XoAtEmailOutlineIcon.tsx
|
|
355
112
|
var XoAtEmailOutlineIcon = forwardRef((props, ref) => {
|
|
356
|
-
return /* @__PURE__ */
|
|
113
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
357
114
|
ref,
|
|
358
115
|
viewBox: "0 0 24 24",
|
|
359
116
|
fill: "none",
|
|
360
117
|
stroke: "currentColor",
|
|
361
118
|
...props,
|
|
362
|
-
children: /* @__PURE__ */
|
|
119
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
363
120
|
d: "M15.4286 12C15.4286 13.8935 13.8935 15.4285 12 15.4285C10.1065 15.4285 8.57143 13.8935 8.57143 12C8.57143 10.1064 10.1065 8.5714 12 8.5714C13.8935 8.5714 15.4286 10.1064 15.4286 12ZM15.4286 12L15.4286 13.1429C15.4286 14.4052 16.4519 15.4286 17.7143 15.4286C18.5252 15.4286 19.2375 15.0063 19.6432 14.3696C19.8691 14.0152 20 13.5943 20 13.1429V12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C13.6997 20 15.2756 19.4699 16.5714 18.5661",
|
|
364
121
|
stroke: "currentColor",
|
|
365
122
|
strokeWidth: "1.5",
|
|
@@ -372,13 +129,13 @@ XoAtEmailOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAtEmailOutlineIcon"
|
|
|
372
129
|
//#endregion
|
|
373
130
|
//#region src/icons/XoAttachmentOutlineIcon.tsx
|
|
374
131
|
var XoAttachmentOutlineIcon = forwardRef((props, ref) => {
|
|
375
|
-
return /* @__PURE__ */
|
|
132
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
376
133
|
ref,
|
|
377
134
|
viewBox: "0 0 24 24",
|
|
378
135
|
fill: "none",
|
|
379
136
|
stroke: "currentColor",
|
|
380
137
|
...props,
|
|
381
|
-
children: /* @__PURE__ */
|
|
138
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
382
139
|
d: "M20 11.5008L12.4356 18.635C11.5089 19.509 10.252 20 8.94144 20C7.63089 20 6.37401 19.509 5.44731 18.635C4.52061 17.761 4 16.5756 4 15.3396C4 14.1036 4.52061 12.9182 5.44731 12.0442L13.0117 4.91C13.6295 4.32734 14.4675 4 15.3412 4C16.2149 4 17.0528 4.32734 17.6706 4.91C18.2884 5.49266 18.6355 6.28292 18.6355 7.10693C18.6355 7.93094 18.2884 8.7212 17.6706 9.30386L10.0979 16.4381C9.78902 16.7294 9.37006 16.8931 8.93321 16.8931C8.49636 16.8931 8.0774 16.7294 7.7685 16.4381C7.4596 16.1467 7.28606 15.7516 7.28606 15.3396C7.28606 14.9276 7.4596 14.5325 7.7685 14.2411L14.7568 7.6581",
|
|
383
140
|
stroke: "currentColor",
|
|
384
141
|
strokeWidth: "1.5",
|
|
@@ -391,16 +148,16 @@ XoAttachmentOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAttachmentOutlin
|
|
|
391
148
|
//#endregion
|
|
392
149
|
//#region src/icons/XoBellFillIcon.tsx
|
|
393
150
|
var XoBellFillIcon = forwardRef((props, ref) => {
|
|
394
|
-
return /* @__PURE__ */
|
|
151
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
395
152
|
ref,
|
|
396
153
|
viewBox: "0 0 24 24",
|
|
397
154
|
fill: "none",
|
|
398
155
|
stroke: "currentColor",
|
|
399
156
|
...props,
|
|
400
|
-
children: [/* @__PURE__ */
|
|
157
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
401
158
|
d: "M12 4C9.10051 4 6.75 6.30254 6.75 9.14286C6.75 12.5714 5 16 5 16H19C19 16 17.25 12.5714 17.25 9.14286C17.25 6.30254 14.8995 4 12 4Z",
|
|
402
159
|
fill: "currentColor"
|
|
403
|
-
}), /* @__PURE__ */
|
|
160
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
404
161
|
d: "M9.375 16.4444V17.3333C9.375 17.6835 9.4429 18.0303 9.57482 18.3538C9.70673 18.6774 9.90009 18.9713 10.1438 19.219C10.3876 19.4666 10.677 19.663 10.9955 19.797C11.3139 19.931 11.6553 20 12 20C12.3447 20 12.6861 19.931 13.0045 19.797C13.323 19.663 13.6124 19.4666 13.8562 19.219C14.0999 18.9713 14.2933 18.6774 14.4252 18.3538C14.5571 18.0303 14.625 17.6835 14.625 17.3333V16.4444M17.25 9.33333C17.25 12 19 16.4444 19 16.4444H5C5 16.4444 6.75 12.8889 6.75 9.33333C6.75 6.42844 9.1405 4 12 4C14.8595 4 17.25 6.42844 17.25 9.33333Z",
|
|
405
162
|
stroke: "currentColor",
|
|
406
163
|
strokeWidth: "1.5",
|
|
@@ -413,13 +170,13 @@ XoBellFillIcon.displayName = "@xmart/xorder-ui-icons/XoBellFillIcon";
|
|
|
413
170
|
//#endregion
|
|
414
171
|
//#region src/icons/XoBellOutlineIcon.tsx
|
|
415
172
|
var XoBellOutlineIcon = forwardRef((props, ref) => {
|
|
416
|
-
return /* @__PURE__ */
|
|
173
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
417
174
|
ref,
|
|
418
175
|
viewBox: "0 0 24 24",
|
|
419
176
|
fill: "none",
|
|
420
177
|
stroke: "currentColor",
|
|
421
178
|
...props,
|
|
422
|
-
children: /* @__PURE__ */
|
|
179
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
423
180
|
d: "M9.375 16.4444V17.3333C9.375 17.6835 9.4429 18.0303 9.57482 18.3538C9.70673 18.6774 9.90009 18.9713 10.1438 19.219C10.3876 19.4666 10.677 19.663 10.9955 19.797C11.3139 19.931 11.6553 20 12 20C12.3447 20 12.6861 19.931 13.0045 19.797C13.323 19.663 13.6124 19.4666 13.8562 19.219C14.0999 18.9713 14.2933 18.6774 14.4252 18.3538C14.5571 18.0303 14.625 17.6835 14.625 17.3333V16.4444M17.25 9.33333C17.25 12 19 16.4444 19 16.4444H5C5 16.4444 6.75 12.8889 6.75 9.33333C6.75 6.42844 9.1405 4 12 4C14.8595 4 17.25 6.42844 17.25 9.33333Z",
|
|
424
181
|
stroke: "currentColor",
|
|
425
182
|
strokeWidth: "1.5",
|
|
@@ -430,15 +187,46 @@ var XoBellOutlineIcon = forwardRef((props, ref) => {
|
|
|
430
187
|
});
|
|
431
188
|
XoBellOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoBellOutlineIcon";
|
|
432
189
|
//#endregion
|
|
190
|
+
//#region src/icons/XoCalendarDailyOutlineIcon.tsx
|
|
191
|
+
var XoCalendarDailyOutlineIcon = forwardRef((props, ref) => {
|
|
192
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
193
|
+
ref,
|
|
194
|
+
viewBox: "0 0 24 24",
|
|
195
|
+
fill: "none",
|
|
196
|
+
stroke: "currentColor",
|
|
197
|
+
...props,
|
|
198
|
+
children: [
|
|
199
|
+
/* @__PURE__ */ jsx("path", {
|
|
200
|
+
d: "M20 10V19C20 20.1046 19.1046 21 18 21H6C4.89543 21 4 20.1046 4 19V7C4 5.89543 4.89543 5 6 5H18C19.1046 5 20 5.89543 20 7V10ZM20 10H4M15 3V7M9 3V7",
|
|
201
|
+
stroke: "currentColor",
|
|
202
|
+
strokeWidth: "1.5",
|
|
203
|
+
strokeLinecap: "round",
|
|
204
|
+
strokeLinejoin: "round"
|
|
205
|
+
}),
|
|
206
|
+
/* @__PURE__ */ jsx("path", {
|
|
207
|
+
d: "M15.3618 17.5409L15.3506 17.6893C15.3271 17.8377 15.2649 17.9807 15.147 18.0943C14.992 18.2436 14.7902 18.2934 14.6014 18.2934C14.4123 18.2934 14.2101 18.2427 14.0569 18.0876C13.9047 17.9334 13.8556 17.7309 13.8555 17.5409V14.5586C13.8246 14.5859 13.7946 14.6151 13.7622 14.643C13.6082 14.775 13.44 14.8443 13.2335 14.8444C13.0403 14.8444 12.8519 14.7808 12.7104 14.643C12.5683 14.5046 12.5 14.3176 12.5 14.1255C12.5 14.0208 12.5162 13.9087 12.572 13.7971C12.6266 13.6879 12.7062 13.6072 12.7857 13.5417L12.7925 13.535C13.16 13.2491 13.4641 12.9994 13.8151 12.6822L13.959 12.5619C14.011 12.5235 14.0676 12.4875 14.13 12.4573C14.2614 12.3937 14.4019 12.3639 14.5598 12.3639C14.7866 12.3639 14.999 12.4401 15.1526 12.6058C15.3026 12.7675 15.3618 12.9768 15.3618 13.1795V17.5409Z",
|
|
208
|
+
fill: "currentColor"
|
|
209
|
+
}),
|
|
210
|
+
/* @__PURE__ */ jsx("path", {
|
|
211
|
+
fillRule: "evenodd",
|
|
212
|
+
clipRule: "evenodd",
|
|
213
|
+
d: "M9.96302 12.329C10.5284 12.329 11.0215 12.4838 11.3793 12.7846C11.7423 13.0897 11.9395 13.5236 11.9395 14.0153L11.9238 14.265C11.8914 14.5084 11.8087 14.7331 11.6662 14.9253C11.6191 14.9888 11.5656 15.0458 11.5087 15.0986C11.8843 15.3919 12.1126 15.8211 12.1128 16.3371L12.1015 16.5542C12.0531 17.0491 11.8386 17.4787 11.4907 17.7939C11.0957 18.1517 10.5519 18.3418 9.94164 18.3418C9.39783 18.3417 8.85847 18.2099 8.44885 17.9503L8.28123 17.831L8.27898 17.8288C8.19228 17.7582 8.11696 17.6717 8.06637 17.5633C8.01601 17.4552 8 17.3454 8 17.2427C8.00018 16.8516 8.30709 16.5385 8.71209 16.5385C8.83739 16.5385 8.97105 16.5628 9.10356 16.651L9.11819 16.6611C9.41139 16.878 9.67203 16.9592 9.94164 16.9592C10.1682 16.9592 10.3274 16.8861 10.4276 16.7894C10.5276 16.6928 10.5919 16.5518 10.5919 16.372C10.5918 16.1923 10.533 16.0775 10.4512 16.0041C10.3864 15.9461 10.2846 15.8947 10.1351 15.8725L9.96977 15.8613H9.53441C9.34601 15.8613 9.169 15.79 9.04169 15.6509C8.91745 15.5152 8.86395 15.3404 8.86395 15.1694C8.86398 14.998 8.91792 14.8229 9.04507 14.688C9.1745 14.5506 9.35129 14.4855 9.53441 14.4855H9.92814C10.1516 14.4855 10.271 14.4273 10.332 14.3707C10.389 14.3176 10.4399 14.2241 10.44 14.0501C10.44 13.9476 10.4023 13.8736 10.3399 13.8206C10.2729 13.7638 10.1522 13.7116 9.96302 13.7115C9.77342 13.7115 9.5466 13.8004 9.34542 13.9736L9.3443 13.9714C9.19073 14.1098 9.03407 14.1604 8.8707 14.1604C8.47657 14.1604 8.13848 13.8371 8.13837 13.428C8.13837 13.2592 8.18649 13.0652 8.35998 12.9184L8.51747 12.7947C8.90716 12.5166 9.44181 12.329 9.96302 12.329Z",
|
|
214
|
+
fill: "currentColor"
|
|
215
|
+
})
|
|
216
|
+
]
|
|
217
|
+
});
|
|
218
|
+
});
|
|
219
|
+
XoCalendarDailyOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCalendarDailyOutlineIcon";
|
|
220
|
+
//#endregion
|
|
433
221
|
//#region src/icons/XoCalendarOutlineIcon.tsx
|
|
434
222
|
var XoCalendarOutlineIcon = forwardRef((props, ref) => {
|
|
435
|
-
return /* @__PURE__ */
|
|
223
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
436
224
|
ref,
|
|
437
225
|
viewBox: "0 0 24 24",
|
|
438
226
|
fill: "none",
|
|
439
227
|
stroke: "currentColor",
|
|
440
228
|
...props,
|
|
441
|
-
children: /* @__PURE__ */
|
|
229
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
442
230
|
d: "M20 11H4M20 11V19C20 20.1046 19.1046 21 18 21H6C4.89543 21 4 20.1046 4 19V7C4 5.89543 4.89543 5 6 5H18C19.1046 5 20 5.89543 20 7V11ZM15 3V7M9 3V7",
|
|
443
231
|
stroke: "currentColor",
|
|
444
232
|
strokeWidth: "1.5",
|
|
@@ -451,13 +239,13 @@ XoCalendarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCalendarOutlineIco
|
|
|
451
239
|
//#endregion
|
|
452
240
|
//#region src/icons/XoCartOutlineIcon.tsx
|
|
453
241
|
var XoCartOutlineIcon = forwardRef((props, ref) => {
|
|
454
|
-
return /* @__PURE__ */
|
|
242
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
455
243
|
ref,
|
|
456
244
|
viewBox: "0 0 24 24",
|
|
457
245
|
fill: "none",
|
|
458
246
|
stroke: "currentColor",
|
|
459
247
|
...props,
|
|
460
|
-
children: /* @__PURE__ */
|
|
248
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
461
249
|
d: "M3 4H5.23684L7 16.5H16.5M16.5 16.5C15.5117 16.5 14.7105 17.2404 14.7105 18.2222C14.7105 19.2041 15.5117 20 16.5 20C17.4883 20 18.2895 19.2041 18.2895 18.2222C18.2895 17.2404 17.4883 16.5 16.5 16.5ZM6.67481 14H17L19 6H5.52444M10.7895 18.2222C10.7895 19.2041 9.9883 20 9 20C8.0117 20 7.21053 19.2041 7.21053 18.2222C7.21053 17.2404 8.0117 16.5 9 16.5C9.9883 16.5 10.7895 17.2404 10.7895 18.2222Z",
|
|
462
250
|
stroke: "currentColor",
|
|
463
251
|
strokeWidth: "1.5",
|
|
@@ -470,16 +258,16 @@ XoCartOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCartOutlineIcon";
|
|
|
470
258
|
//#endregion
|
|
471
259
|
//#region src/icons/XoCatalogFillIcon.tsx
|
|
472
260
|
var XoCatalogFillIcon = forwardRef((props, ref) => {
|
|
473
|
-
return /* @__PURE__ */
|
|
261
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
474
262
|
ref,
|
|
475
263
|
viewBox: "0 0 24 24",
|
|
476
264
|
fill: "none",
|
|
477
265
|
stroke: "currentColor",
|
|
478
266
|
...props,
|
|
479
|
-
children: [/* @__PURE__ */
|
|
267
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
480
268
|
d: "M3 6.51512C3 6.13043 3.22669 5.78202 3.57858 5.66029C6.31783 4.71275 9.29741 4.78502 12 5.87711C14.7026 4.78502 17.6822 4.71275 20.4214 5.66029C20.7733 5.78202 21 6.13043 21 6.51512V17.6346C21 18.2914 20.3612 18.7449 19.7501 18.5727C17.2004 17.8541 14.4833 17.9965 12 19C9.51671 17.9965 6.79957 17.8541 4.24989 18.5727C3.63878 18.7449 3 18.2914 3 17.6346V6.51512Z",
|
|
481
269
|
fill: "currentColor"
|
|
482
|
-
}), /* @__PURE__ */
|
|
270
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
483
271
|
d: "M12 5.87711C14.7026 4.78502 17.6822 4.71275 20.4214 5.66029C20.7733 5.78202 21 6.13043 21 6.51512V17.6346C21 18.2914 20.3612 18.7449 19.7501 18.5727C17.2004 17.8541 14.4833 17.9965 12 19M12 5.87711C9.29741 4.78502 6.31783 4.71275 3.57858 5.66029C3.22669 5.78202 3 6.13043 3 6.51512V17.6346C3 18.2914 3.63878 18.7449 4.24989 18.5727C6.79957 17.8541 9.51671 17.9965 12 19M12 5.87711V19",
|
|
484
272
|
stroke: "currentColor",
|
|
485
273
|
strokeWidth: "1.5",
|
|
@@ -491,13 +279,13 @@ XoCatalogFillIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogFillIcon";
|
|
|
491
279
|
//#endregion
|
|
492
280
|
//#region src/icons/XoCatalogOutlineIcon.tsx
|
|
493
281
|
var XoCatalogOutlineIcon = forwardRef((props, ref) => {
|
|
494
|
-
return /* @__PURE__ */
|
|
282
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
495
283
|
ref,
|
|
496
284
|
viewBox: "0 0 24 24",
|
|
497
285
|
fill: "none",
|
|
498
286
|
stroke: "currentColor",
|
|
499
287
|
...props,
|
|
500
|
-
children: /* @__PURE__ */
|
|
288
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
501
289
|
d: "M12 5.87711C14.7026 4.78502 17.6822 4.71275 20.4214 5.66029C20.7733 5.78202 21 6.13043 21 6.51512V17.6346C21 18.2914 20.3612 18.7449 19.7501 18.5727C17.2004 17.8541 14.4833 17.9965 12 19M12 5.87711C9.29741 4.78502 6.31783 4.71275 3.57858 5.66029C3.22669 5.78202 3 6.13043 3 6.51512V17.6346C3 18.2914 3.63878 18.7449 4.24989 18.5727C6.79957 17.8541 9.51671 17.9965 12 19M12 5.87711V19",
|
|
502
290
|
stroke: "currentColor",
|
|
503
291
|
strokeWidth: "1.5",
|
|
@@ -509,19 +297,19 @@ XoCatalogOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogOutlineIcon"
|
|
|
509
297
|
//#endregion
|
|
510
298
|
//#region src/icons/XoCheckCircleFillIcon.tsx
|
|
511
299
|
var XoCheckCircleFillIcon = forwardRef((props, ref) => {
|
|
512
|
-
return /* @__PURE__ */
|
|
300
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
513
301
|
ref,
|
|
514
302
|
viewBox: "0 0 24 24",
|
|
515
303
|
fill: "none",
|
|
516
304
|
stroke: "currentColor",
|
|
517
305
|
...props,
|
|
518
|
-
children: [/* @__PURE__ */
|
|
306
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
519
307
|
d: "M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z",
|
|
520
308
|
stroke: "currentColor",
|
|
521
309
|
strokeWidth: "1.5",
|
|
522
310
|
strokeLinecap: "round",
|
|
523
311
|
strokeLinejoin: "round"
|
|
524
|
-
}), /* @__PURE__ */
|
|
312
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
525
313
|
fillRule: "evenodd",
|
|
526
314
|
clipRule: "evenodd",
|
|
527
315
|
d: "M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12ZM16.9749 9.86366C17.2678 9.57077 17.2678 9.0959 16.9749 8.803C16.682 8.51011 16.2072 8.51011 15.9143 8.803L10.2224 14.4949L8.08599 12.3586C7.7931 12.0657 7.31822 12.0657 7.02533 12.3586C6.73244 12.6515 6.73244 13.1263 7.02534 13.4192L9.69204 16.0859C9.98493 16.3788 10.4598 16.3788 10.7527 16.0859L16.9749 9.86366Z",
|
|
@@ -533,13 +321,13 @@ XoCheckCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleFillIco
|
|
|
533
321
|
//#endregion
|
|
534
322
|
//#region src/icons/XoCheckCircleOutlineIcon.tsx
|
|
535
323
|
var XoCheckCircleOutlineIcon = forwardRef((props, ref) => {
|
|
536
|
-
return /* @__PURE__ */
|
|
324
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
537
325
|
ref,
|
|
538
326
|
viewBox: "0 0 24 24",
|
|
539
327
|
fill: "none",
|
|
540
328
|
stroke: "currentColor",
|
|
541
329
|
...props,
|
|
542
|
-
children: /* @__PURE__ */
|
|
330
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
543
331
|
d: "M16.4444 9.33333L10.2222 15.5556L7.5555 12.8889M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
544
332
|
stroke: "currentColor",
|
|
545
333
|
strokeWidth: "1.5",
|
|
@@ -552,13 +340,13 @@ XoCheckCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleOutl
|
|
|
552
340
|
//#endregion
|
|
553
341
|
//#region src/icons/XoCheckOutlineIcon.tsx
|
|
554
342
|
var XoCheckOutlineIcon = forwardRef((props, ref) => {
|
|
555
|
-
return /* @__PURE__ */
|
|
343
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
556
344
|
ref,
|
|
557
345
|
viewBox: "0 0 24 24",
|
|
558
346
|
fill: "none",
|
|
559
347
|
stroke: "currentColor",
|
|
560
348
|
...props,
|
|
561
|
-
children: /* @__PURE__ */
|
|
349
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
562
350
|
d: "M20 6L9 18L4 13",
|
|
563
351
|
stroke: "currentColor",
|
|
564
352
|
strokeWidth: "1.5",
|
|
@@ -571,13 +359,13 @@ XoCheckOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckOutlineIcon";
|
|
|
571
359
|
//#endregion
|
|
572
360
|
//#region src/icons/XoCheckSOutlineIcon.tsx
|
|
573
361
|
var XoCheckSOutlineIcon = forwardRef((props, ref) => {
|
|
574
|
-
return /* @__PURE__ */
|
|
362
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
575
363
|
ref,
|
|
576
364
|
viewBox: "0 0 24 24",
|
|
577
365
|
fill: "none",
|
|
578
366
|
stroke: "currentColor",
|
|
579
367
|
...props,
|
|
580
|
-
children: /* @__PURE__ */
|
|
368
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
581
369
|
d: "M17 8L10 16L7 13",
|
|
582
370
|
stroke: "currentColor",
|
|
583
371
|
strokeWidth: "1.5",
|
|
@@ -590,13 +378,13 @@ XoCheckSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckSOutlineIcon";
|
|
|
590
378
|
//#endregion
|
|
591
379
|
//#region src/icons/XoChevronCircleDownOutlineIcon.tsx
|
|
592
380
|
var XoChevronCircleDownOutlineIcon = forwardRef((props, ref) => {
|
|
593
|
-
return /* @__PURE__ */
|
|
381
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
594
382
|
ref,
|
|
595
383
|
viewBox: "0 0 24 24",
|
|
596
384
|
fill: "none",
|
|
597
385
|
stroke: "currentColor",
|
|
598
386
|
...props,
|
|
599
|
-
children: /* @__PURE__ */
|
|
387
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
600
388
|
d: "M7.55556 10.2222L12 14.6667L16.4444 10.2222M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
601
389
|
stroke: "currentColor",
|
|
602
390
|
strokeWidth: "1.5",
|
|
@@ -609,13 +397,13 @@ XoChevronCircleDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCi
|
|
|
609
397
|
//#endregion
|
|
610
398
|
//#region src/icons/XoChevronCircleLeftOutlineIcon.tsx
|
|
611
399
|
var XoChevronCircleLeftOutlineIcon = forwardRef((props, ref) => {
|
|
612
|
-
return /* @__PURE__ */
|
|
400
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
613
401
|
ref,
|
|
614
402
|
viewBox: "0 0 24 24",
|
|
615
403
|
fill: "none",
|
|
616
404
|
stroke: "currentColor",
|
|
617
405
|
...props,
|
|
618
|
-
children: /* @__PURE__ */
|
|
406
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
619
407
|
d: "M13.7778 7.55556L9.33333 12L13.7778 16.4444M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
620
408
|
stroke: "currentColor",
|
|
621
409
|
strokeWidth: "1.5",
|
|
@@ -628,13 +416,13 @@ XoChevronCircleLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCi
|
|
|
628
416
|
//#endregion
|
|
629
417
|
//#region src/icons/XoChevronCircleRightOutlineIcon.tsx
|
|
630
418
|
var XoChevronCircleRightOutlineIcon = forwardRef((props, ref) => {
|
|
631
|
-
return /* @__PURE__ */
|
|
419
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
632
420
|
ref,
|
|
633
421
|
viewBox: "0 0 24 24",
|
|
634
422
|
fill: "none",
|
|
635
423
|
stroke: "currentColor",
|
|
636
424
|
...props,
|
|
637
|
-
children: /* @__PURE__ */
|
|
425
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
638
426
|
d: "M10.2222 16.4444L14.6667 12L10.2222 7.55556M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
639
427
|
stroke: "currentColor",
|
|
640
428
|
strokeWidth: "1.5",
|
|
@@ -647,13 +435,13 @@ XoChevronCircleRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronC
|
|
|
647
435
|
//#endregion
|
|
648
436
|
//#region src/icons/XoChevronCircleUpOutlineIcon.tsx
|
|
649
437
|
var XoChevronCircleUpOutlineIcon = forwardRef((props, ref) => {
|
|
650
|
-
return /* @__PURE__ */
|
|
438
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
651
439
|
ref,
|
|
652
440
|
viewBox: "0 0 24 24",
|
|
653
441
|
fill: "none",
|
|
654
442
|
stroke: "currentColor",
|
|
655
443
|
...props,
|
|
656
|
-
children: /* @__PURE__ */
|
|
444
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
657
445
|
d: "M16.4444 13.7778L12 9.33333L7.55556 13.7778M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
658
446
|
stroke: "currentColor",
|
|
659
447
|
strokeWidth: "1.5",
|
|
@@ -666,13 +454,13 @@ XoChevronCircleUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCirc
|
|
|
666
454
|
//#endregion
|
|
667
455
|
//#region src/icons/XoChevronDownOutlineIcon.tsx
|
|
668
456
|
var XoChevronDownOutlineIcon = forwardRef((props, ref) => {
|
|
669
|
-
return /* @__PURE__ */
|
|
457
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
670
458
|
ref,
|
|
671
459
|
viewBox: "0 0 24 24",
|
|
672
460
|
fill: "none",
|
|
673
461
|
stroke: "currentColor",
|
|
674
462
|
...props,
|
|
675
|
-
children: /* @__PURE__ */
|
|
463
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
676
464
|
d: "M6 9L12 15L18 9",
|
|
677
465
|
stroke: "currentColor",
|
|
678
466
|
strokeWidth: "1.5",
|
|
@@ -685,13 +473,13 @@ XoChevronDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronDownOutl
|
|
|
685
473
|
//#endregion
|
|
686
474
|
//#region src/icons/XoChevronLeftOutlineIcon.tsx
|
|
687
475
|
var XoChevronLeftOutlineIcon = forwardRef((props, ref) => {
|
|
688
|
-
return /* @__PURE__ */
|
|
476
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
689
477
|
ref,
|
|
690
478
|
viewBox: "0 0 24 24",
|
|
691
479
|
fill: "none",
|
|
692
480
|
stroke: "currentColor",
|
|
693
481
|
...props,
|
|
694
|
-
children: /* @__PURE__ */
|
|
482
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
695
483
|
d: "M15 6L9 12L15 18",
|
|
696
484
|
stroke: "currentColor",
|
|
697
485
|
strokeWidth: "1.5",
|
|
@@ -704,13 +492,13 @@ XoChevronLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronLeftOutl
|
|
|
704
492
|
//#endregion
|
|
705
493
|
//#region src/icons/XoChevronRightOutlineIcon.tsx
|
|
706
494
|
var XoChevronRightOutlineIcon = forwardRef((props, ref) => {
|
|
707
|
-
return /* @__PURE__ */
|
|
495
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
708
496
|
ref,
|
|
709
497
|
viewBox: "0 0 24 24",
|
|
710
498
|
fill: "none",
|
|
711
499
|
stroke: "currentColor",
|
|
712
500
|
...props,
|
|
713
|
-
children: /* @__PURE__ */
|
|
501
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
714
502
|
d: "M9 18L15 12L9 6",
|
|
715
503
|
stroke: "currentColor",
|
|
716
504
|
strokeWidth: "1.5",
|
|
@@ -723,13 +511,13 @@ XoChevronRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronRightOu
|
|
|
723
511
|
//#endregion
|
|
724
512
|
//#region src/icons/XoChevronUpOutlineIcon.tsx
|
|
725
513
|
var XoChevronUpOutlineIcon = forwardRef((props, ref) => {
|
|
726
|
-
return /* @__PURE__ */
|
|
514
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
727
515
|
ref,
|
|
728
516
|
viewBox: "0 0 24 24",
|
|
729
517
|
fill: "none",
|
|
730
518
|
stroke: "currentColor",
|
|
731
519
|
...props,
|
|
732
|
-
children: /* @__PURE__ */
|
|
520
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
733
521
|
d: "M18 14L12 8L6 14",
|
|
734
522
|
stroke: "currentColor",
|
|
735
523
|
strokeWidth: "1.5",
|
|
@@ -742,19 +530,19 @@ XoChevronUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronUpOutlineI
|
|
|
742
530
|
//#endregion
|
|
743
531
|
//#region src/icons/XoChevronWDownOutlineIcon.tsx
|
|
744
532
|
var XoChevronWDownOutlineIcon = forwardRef((props, ref) => {
|
|
745
|
-
return /* @__PURE__ */
|
|
533
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
746
534
|
ref,
|
|
747
535
|
viewBox: "0 0 24 24",
|
|
748
536
|
fill: "none",
|
|
749
537
|
stroke: "currentColor",
|
|
750
538
|
...props,
|
|
751
|
-
children: [/* @__PURE__ */
|
|
539
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
752
540
|
d: "M7 13L12 17L17 13",
|
|
753
541
|
stroke: "currentColor",
|
|
754
542
|
strokeWidth: "1.5",
|
|
755
543
|
strokeLinecap: "round",
|
|
756
544
|
strokeLinejoin: "round"
|
|
757
|
-
}), /* @__PURE__ */
|
|
545
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
758
546
|
d: "M7 8L12 12L17 8",
|
|
759
547
|
stroke: "currentColor",
|
|
760
548
|
strokeWidth: "1.5",
|
|
@@ -767,18 +555,18 @@ XoChevronWDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronWDownOu
|
|
|
767
555
|
//#endregion
|
|
768
556
|
//#region src/icons/XoClockFillIcon.tsx
|
|
769
557
|
var XoClockFillIcon = forwardRef((props, ref) => {
|
|
770
|
-
return /* @__PURE__ */
|
|
558
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
771
559
|
ref,
|
|
772
560
|
viewBox: "0 0 24 24",
|
|
773
561
|
fill: "none",
|
|
774
562
|
stroke: "currentColor",
|
|
775
563
|
...props,
|
|
776
|
-
children: [/* @__PURE__ */
|
|
564
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
777
565
|
fillRule: "evenodd",
|
|
778
566
|
clipRule: "evenodd",
|
|
779
567
|
d: "M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM12.8889 8.44444C12.8889 7.95352 12.4909 7.55556 12 7.55556C11.5091 7.55556 11.1111 7.95352 11.1111 8.44444V12C11.1111 12.2357 11.2048 12.4618 11.3715 12.6285L13.1492 14.4063C13.4964 14.7535 14.0592 14.7535 14.4063 14.4063C14.7535 14.0592 14.7535 13.4964 14.4063 13.1492L12.8889 11.6318V8.44444Z",
|
|
780
568
|
fill: "currentColor"
|
|
781
|
-
}), /* @__PURE__ */
|
|
569
|
+
}), /* @__PURE__ */ jsx("circle", {
|
|
782
570
|
cx: "12",
|
|
783
571
|
cy: "12",
|
|
784
572
|
r: "8",
|
|
@@ -791,13 +579,13 @@ XoClockFillIcon.displayName = "@xmart/xorder-ui-icons/XoClockFillIcon";
|
|
|
791
579
|
//#endregion
|
|
792
580
|
//#region src/icons/XoClockOutlineIcon.tsx
|
|
793
581
|
var XoClockOutlineIcon = forwardRef((props, ref) => {
|
|
794
|
-
return /* @__PURE__ */
|
|
582
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
795
583
|
ref,
|
|
796
584
|
viewBox: "0 0 24 24",
|
|
797
585
|
fill: "none",
|
|
798
586
|
stroke: "currentColor",
|
|
799
587
|
...props,
|
|
800
|
-
children: /* @__PURE__ */
|
|
588
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
801
589
|
d: "M12 8.44444V12L13.7778 13.7778M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
802
590
|
stroke: "currentColor",
|
|
803
591
|
strokeWidth: "1.5",
|
|
@@ -808,15 +596,32 @@ var XoClockOutlineIcon = forwardRef((props, ref) => {
|
|
|
808
596
|
});
|
|
809
597
|
XoClockOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoClockOutlineIcon";
|
|
810
598
|
//#endregion
|
|
599
|
+
//#region src/icons/XoCopyOutlineIcon.tsx
|
|
600
|
+
var XoCopyOutlineIcon = forwardRef((props, ref) => {
|
|
601
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
602
|
+
ref,
|
|
603
|
+
viewBox: "0 0 24 24",
|
|
604
|
+
fill: "none",
|
|
605
|
+
...props,
|
|
606
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
607
|
+
fillRule: "evenodd",
|
|
608
|
+
clipRule: "evenodd",
|
|
609
|
+
d: "M16.1875 3.25C17.1885 3.25 17.75 4.18653 17.75 5V7.25H20.1875C21.1885 7.25 21.75 8.18653 21.75 9V19C21.75 19.8135 21.1885 20.75 20.1875 20.75H8.8125C7.81154 20.75 7.25 19.8135 7.25 19V16.75H4.8125C3.81154 16.75 3.25 15.8135 3.25 15V5C3.25 4.18653 3.81154 3.25 4.8125 3.25H16.1875ZM8.82031 8.76562C8.78859 8.80467 8.75 8.88519 8.75 9V19C8.75 19.1148 8.78859 19.1953 8.82031 19.2344C8.82692 19.2425 8.83318 19.2466 8.83691 19.25H20.1631C20.1668 19.2466 20.1731 19.2425 20.1797 19.2344C20.2114 19.1953 20.25 19.1148 20.25 19V9C20.25 8.88519 20.2114 8.80467 20.1797 8.76562C20.1731 8.75751 20.1668 8.75335 20.1631 8.75H8.83691C8.83318 8.75335 8.82692 8.75751 8.82031 8.76562ZM4.82031 4.76562C4.78859 4.80467 4.75 4.88519 4.75 5V15C4.75 15.1148 4.78859 15.1953 4.82031 15.2344C4.82692 15.2425 4.83318 15.2466 4.83691 15.25H7.25V9C7.25 8.18653 7.81154 7.25 8.8125 7.25H16.25V5C16.25 4.88519 16.2114 4.80467 16.1797 4.76562C16.1731 4.75751 16.1668 4.75335 16.1631 4.75H4.83691C4.83318 4.75335 4.82692 4.75751 4.82031 4.76562Z",
|
|
610
|
+
fill: "currentColor"
|
|
611
|
+
})
|
|
612
|
+
});
|
|
613
|
+
});
|
|
614
|
+
XoCopyOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCopyOutlineIcon";
|
|
615
|
+
//#endregion
|
|
811
616
|
//#region src/icons/XoCrossOutlineIcon.tsx
|
|
812
617
|
var XoCrossOutlineIcon = forwardRef((props, ref) => {
|
|
813
|
-
return /* @__PURE__ */
|
|
618
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
814
619
|
ref,
|
|
815
620
|
viewBox: "0 0 24 24",
|
|
816
621
|
fill: "none",
|
|
817
622
|
stroke: "currentColor",
|
|
818
623
|
...props,
|
|
819
|
-
children: /* @__PURE__ */
|
|
624
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
820
625
|
d: "M18 6L6 18M6.00001 6L18 18",
|
|
821
626
|
stroke: "currentColor",
|
|
822
627
|
strokeWidth: "1.5",
|
|
@@ -829,13 +634,13 @@ XoCrossOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossOutlineIcon";
|
|
|
829
634
|
//#endregion
|
|
830
635
|
//#region src/icons/XoCrossSOutlineIcon.tsx
|
|
831
636
|
var XoCrossSOutlineIcon = forwardRef((props, ref) => {
|
|
832
|
-
return /* @__PURE__ */
|
|
637
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
833
638
|
ref,
|
|
834
639
|
viewBox: "0 0 24 24",
|
|
835
640
|
fill: "none",
|
|
836
641
|
stroke: "currentColor",
|
|
837
642
|
...props,
|
|
838
|
-
children: /* @__PURE__ */
|
|
643
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
839
644
|
d: "M16 8L8 16M8.00001 8L16 16",
|
|
840
645
|
stroke: "currentColor",
|
|
841
646
|
strokeWidth: "1.5",
|
|
@@ -848,13 +653,13 @@ XoCrossSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossSOutlineIcon";
|
|
|
848
653
|
//#endregion
|
|
849
654
|
//#region src/icons/XoDownloadOutlineIcon.tsx
|
|
850
655
|
var XoDownloadOutlineIcon = forwardRef((props, ref) => {
|
|
851
|
-
return /* @__PURE__ */
|
|
656
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
852
657
|
ref,
|
|
853
658
|
viewBox: "0 0 24 24",
|
|
854
659
|
fill: "none",
|
|
855
660
|
stroke: "currentColor",
|
|
856
661
|
...props,
|
|
857
|
-
children: /* @__PURE__ */
|
|
662
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
858
663
|
d: "M20 15V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 15M8 11L12 15M12 15L16 11M12 15V4",
|
|
859
664
|
stroke: "currentColor",
|
|
860
665
|
strokeWidth: "1.5",
|
|
@@ -867,13 +672,13 @@ XoDownloadOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoDownloadOutlineIco
|
|
|
867
672
|
//#endregion
|
|
868
673
|
//#region src/icons/XoEditOutlineIcon.tsx
|
|
869
674
|
var XoEditOutlineIcon = forwardRef((props, ref) => {
|
|
870
|
-
return /* @__PURE__ */
|
|
675
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
871
676
|
ref,
|
|
872
677
|
viewBox: "0 0 24 24",
|
|
873
678
|
fill: "none",
|
|
874
679
|
stroke: "currentColor",
|
|
875
680
|
...props,
|
|
876
|
-
children: /* @__PURE__ */
|
|
681
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
877
682
|
d: "M14 6L8 12V16H12L18 10M14 6L17 3L21 7L18 10M14 6L18 10M10 4L4 4L4 20L20 20V14",
|
|
878
683
|
stroke: "currentColor",
|
|
879
684
|
strokeWidth: "1.5",
|
|
@@ -886,13 +691,13 @@ XoEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEditOutlineIcon";
|
|
|
886
691
|
//#endregion
|
|
887
692
|
//#region src/icons/XoEyeClosedOutlineIcon.tsx
|
|
888
693
|
var XoEyeClosedOutlineIcon = forwardRef((props, ref) => {
|
|
889
|
-
return /* @__PURE__ */
|
|
694
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
890
695
|
ref,
|
|
891
696
|
viewBox: "0 0 24 24",
|
|
892
697
|
fill: "none",
|
|
893
698
|
stroke: "currentColor",
|
|
894
699
|
...props,
|
|
895
|
-
children: /* @__PURE__ */
|
|
700
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
896
701
|
d: "M20 14.8335C21.3082 13.3317 22 12 22 12C22 12 18.3636 5 12 5C11.6588 5 11.3254 5.02013 11 5.05822C10.6578 5.09828 10.3244 5.15822 10 5.23552M12 9C12.3506 9 12.6872 9.06015 13 9.17071C13.8524 9.47199 14.528 10.1476 14.8293 11C14.9398 11.3128 15 11.6494 15 12M3 3L21 21M12 15C11.6494 15 11.3128 14.9398 11 14.8293C10.1476 14.528 9.47198 13.8524 9.1707 13C9.11386 12.8392 9.07034 12.6721 9.04147 12.5M4.14701 9C3.83877 9.34451 3.56234 9.68241 3.31864 10C2.45286 11.1282 2 12 2 12C2 12 5.63636 19 12 19C12.3412 19 12.6746 18.9799 13 18.9418",
|
|
897
702
|
stroke: "currentColor",
|
|
898
703
|
strokeWidth: "1.5",
|
|
@@ -905,19 +710,19 @@ XoEyeClosedOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeClosedOutlineI
|
|
|
905
710
|
//#endregion
|
|
906
711
|
//#region src/icons/XoEyeOpenOutlineIcon.tsx
|
|
907
712
|
var XoEyeOpenOutlineIcon = forwardRef((props, ref) => {
|
|
908
|
-
return /* @__PURE__ */
|
|
713
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
909
714
|
ref,
|
|
910
715
|
viewBox: "0 0 24 24",
|
|
911
716
|
fill: "none",
|
|
912
717
|
stroke: "currentColor",
|
|
913
718
|
...props,
|
|
914
|
-
children: [/* @__PURE__ */
|
|
719
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
915
720
|
d: "M12 5C5.63636 5 2 12 2 12C2 12 5.63636 19 12 19C18.3636 19 22 12 22 12C22 12 18.3636 5 12 5Z",
|
|
916
721
|
stroke: "currentColor",
|
|
917
722
|
strokeWidth: "1.5",
|
|
918
723
|
strokeLinecap: "round",
|
|
919
724
|
strokeLinejoin: "round"
|
|
920
|
-
}), /* @__PURE__ */
|
|
725
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
921
726
|
d: "M12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
922
727
|
stroke: "currentColor",
|
|
923
728
|
strokeWidth: "1.5",
|
|
@@ -928,15 +733,70 @@ var XoEyeOpenOutlineIcon = forwardRef((props, ref) => {
|
|
|
928
733
|
});
|
|
929
734
|
XoEyeOpenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeOpenOutlineIcon";
|
|
930
735
|
//#endregion
|
|
736
|
+
//#region src/icons/XoFaxOutlineIcon.tsx
|
|
737
|
+
var XoFaxOutlineIcon = forwardRef((props, ref) => {
|
|
738
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
739
|
+
ref,
|
|
740
|
+
viewBox: "0 0 24 24",
|
|
741
|
+
fill: "none",
|
|
742
|
+
...props,
|
|
743
|
+
children: [
|
|
744
|
+
/* @__PURE__ */ jsx("path", {
|
|
745
|
+
d: "M11.5 16.25C11.9142 16.25 12.25 16.5858 12.25 17C12.25 17.4142 11.9142 17.75 11.5 17.75H10.5C10.0858 17.75 9.75 17.4142 9.75 17C9.75 16.5858 10.0858 16.25 10.5 16.25H11.5Z",
|
|
746
|
+
fill: "currentColor"
|
|
747
|
+
}),
|
|
748
|
+
/* @__PURE__ */ jsx("path", {
|
|
749
|
+
d: "M14.5 16.25C14.9142 16.25 15.25 16.5858 15.25 17C15.25 17.4142 14.9142 17.75 14.5 17.75H13.5C13.0858 17.75 12.75 17.4142 12.75 17C12.75 16.5858 13.0858 16.25 13.5 16.25H14.5Z",
|
|
750
|
+
fill: "currentColor"
|
|
751
|
+
}),
|
|
752
|
+
/* @__PURE__ */ jsx("path", {
|
|
753
|
+
d: "M17.5 16.25C17.9142 16.25 18.25 16.5858 18.25 17C18.25 17.4142 17.9142 17.75 17.5 17.75H16.5C16.0858 17.75 15.75 17.4142 15.75 17C15.75 16.5858 16.0858 16.25 16.5 16.25H17.5Z",
|
|
754
|
+
fill: "currentColor"
|
|
755
|
+
}),
|
|
756
|
+
/* @__PURE__ */ jsx("path", {
|
|
757
|
+
d: "M11.5 14.25C11.9142 14.25 12.25 14.5858 12.25 15C12.25 15.4142 11.9142 15.75 11.5 15.75H10.5C10.0858 15.75 9.75 15.4142 9.75 15C9.75 14.5858 10.0858 14.25 10.5 14.25H11.5Z",
|
|
758
|
+
fill: "currentColor"
|
|
759
|
+
}),
|
|
760
|
+
/* @__PURE__ */ jsx("path", {
|
|
761
|
+
d: "M14.5 14.25C14.9142 14.25 15.25 14.5858 15.25 15C15.25 15.4142 14.9142 15.75 14.5 15.75H13.5C13.0858 15.75 12.75 15.4142 12.75 15C12.75 14.5858 13.0858 14.25 13.5 14.25H14.5Z",
|
|
762
|
+
fill: "currentColor"
|
|
763
|
+
}),
|
|
764
|
+
/* @__PURE__ */ jsx("path", {
|
|
765
|
+
d: "M17.5 14.25C17.9142 14.25 18.25 14.5858 18.25 15C18.25 15.4142 17.9142 15.75 17.5 15.75H16.5C16.0858 15.75 15.75 15.4142 15.75 15C15.75 14.5858 16.0858 14.25 16.5 14.25H17.5Z",
|
|
766
|
+
fill: "currentColor"
|
|
767
|
+
}),
|
|
768
|
+
/* @__PURE__ */ jsx("path", {
|
|
769
|
+
d: "M11.5 12.25C11.9142 12.25 12.25 12.5858 12.25 13C12.25 13.4142 11.9142 13.75 11.5 13.75H10.5C10.0858 13.75 9.75 13.4142 9.75 13C9.75 12.5858 10.0858 12.25 10.5 12.25H11.5Z",
|
|
770
|
+
fill: "currentColor"
|
|
771
|
+
}),
|
|
772
|
+
/* @__PURE__ */ jsx("path", {
|
|
773
|
+
d: "M14.5 12.25C14.9142 12.25 15.25 12.5858 15.25 13C15.25 13.4142 14.9142 13.75 14.5 13.75H13.5C13.0858 13.75 12.75 13.4142 12.75 13C12.75 12.5858 13.0858 12.25 13.5 12.25H14.5Z",
|
|
774
|
+
fill: "currentColor"
|
|
775
|
+
}),
|
|
776
|
+
/* @__PURE__ */ jsx("path", {
|
|
777
|
+
d: "M17.5 12.25C17.9142 12.25 18.25 12.5858 18.25 13C18.25 13.4142 17.9142 13.75 17.5 13.75H16.5C16.0858 13.75 15.75 13.4142 15.75 13C15.75 12.5858 16.0858 12.25 16.5 12.25H17.5Z",
|
|
778
|
+
fill: "currentColor"
|
|
779
|
+
}),
|
|
780
|
+
/* @__PURE__ */ jsx("path", {
|
|
781
|
+
fillRule: "evenodd",
|
|
782
|
+
clipRule: "evenodd",
|
|
783
|
+
d: "M18 2.25C18.9665 2.25 19.75 3.0335 19.75 4V8.25H20C20.9665 8.25 21.75 9.0335 21.75 10V20C21.75 20.9665 20.9665 21.75 20 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V10C2.25 9.0335 3.0335 8.25 4 8.25H8.25V4C8.25 3.0335 9.0335 2.25 10 2.25H18ZM7.75 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V10C20.25 9.86193 20.1381 9.75 20 9.75H7.75V20.25ZM4 9.75C3.86193 9.75 3.75 9.86193 3.75 10V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25V9.75H4ZM10 3.75C9.86193 3.75 9.75 3.86193 9.75 4V8.25H18.25V4C18.25 3.86193 18.1381 3.75 18 3.75H10Z",
|
|
784
|
+
fill: "currentColor"
|
|
785
|
+
})
|
|
786
|
+
]
|
|
787
|
+
});
|
|
788
|
+
});
|
|
789
|
+
XoFaxOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoFaxOutlineIcon";
|
|
790
|
+
//#endregion
|
|
931
791
|
//#region src/icons/XoFiltersOutlineIcon.tsx
|
|
932
792
|
var XoFiltersOutlineIcon = forwardRef((props, ref) => {
|
|
933
|
-
return /* @__PURE__ */
|
|
793
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
934
794
|
ref,
|
|
935
795
|
viewBox: "0 0 24 24",
|
|
936
796
|
fill: "none",
|
|
937
797
|
stroke: "currentColor",
|
|
938
798
|
...props,
|
|
939
|
-
children: /* @__PURE__ */
|
|
799
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
940
800
|
d: "M4 5L10 5M10 5C10 6.10457 10.8954 7 12 7C13.1046 7 14 6.10457 14 5M10 5C10 3.89543 10.8954 3 12 3C13.1046 3 14 3.89543 14 5M14 5L20 5M4 12H16M16 12C16 13.1046 16.8954 14 18 14C19.1046 14 20 13.1046 20 12C20 10.8954 19.1046 10 18 10C16.8954 10 16 10.8954 16 12ZM8 19H20M8 19C8 17.8954 7.10457 17 6 17C4.89543 17 4 17.8954 4 19C4 20.1046 4.89543 21 6 21C7.10457 21 8 20.1046 8 19Z",
|
|
941
801
|
stroke: "currentColor",
|
|
942
802
|
strokeWidth: "1.5",
|
|
@@ -948,35 +808,35 @@ XoFiltersOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoFiltersOutlineIcon"
|
|
|
948
808
|
//#endregion
|
|
949
809
|
//#region src/icons/XoGridOutlineIcon.tsx
|
|
950
810
|
var XoGridOutlineIcon = forwardRef((props, ref) => {
|
|
951
|
-
return /* @__PURE__ */
|
|
811
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
952
812
|
ref,
|
|
953
813
|
viewBox: "0 0 24 24",
|
|
954
814
|
fill: "none",
|
|
955
815
|
stroke: "currentColor",
|
|
956
816
|
...props,
|
|
957
817
|
children: [
|
|
958
|
-
/* @__PURE__ */
|
|
818
|
+
/* @__PURE__ */ jsx("path", {
|
|
959
819
|
d: "M4 4H10.5882V10.5882H4V4Z",
|
|
960
820
|
stroke: "currentColor",
|
|
961
821
|
strokeWidth: "1.5",
|
|
962
822
|
strokeLinecap: "round",
|
|
963
823
|
strokeLinejoin: "round"
|
|
964
824
|
}),
|
|
965
|
-
/* @__PURE__ */
|
|
825
|
+
/* @__PURE__ */ jsx("path", {
|
|
966
826
|
d: "M4 13.4118H10.5882V20H4V13.4118Z",
|
|
967
827
|
stroke: "currentColor",
|
|
968
828
|
strokeWidth: "1.5",
|
|
969
829
|
strokeLinecap: "round",
|
|
970
830
|
strokeLinejoin: "round"
|
|
971
831
|
}),
|
|
972
|
-
/* @__PURE__ */
|
|
832
|
+
/* @__PURE__ */ jsx("path", {
|
|
973
833
|
d: "M13.4118 4H20V10.5882H13.4118V4Z",
|
|
974
834
|
stroke: "currentColor",
|
|
975
835
|
strokeWidth: "1.5",
|
|
976
836
|
strokeLinecap: "round",
|
|
977
837
|
strokeLinejoin: "round"
|
|
978
838
|
}),
|
|
979
|
-
/* @__PURE__ */
|
|
839
|
+
/* @__PURE__ */ jsx("path", {
|
|
980
840
|
d: "M13.4118 13.4118H20V20H13.4118V13.4118Z",
|
|
981
841
|
stroke: "currentColor",
|
|
982
842
|
strokeWidth: "1.5",
|
|
@@ -988,15 +848,45 @@ var XoGridOutlineIcon = forwardRef((props, ref) => {
|
|
|
988
848
|
});
|
|
989
849
|
XoGridOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoGridOutlineIcon";
|
|
990
850
|
//#endregion
|
|
851
|
+
//#region src/icons/XoHeartFillIcon.tsx
|
|
852
|
+
var XoHeartFillIcon = forwardRef((props, ref) => {
|
|
853
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
854
|
+
ref,
|
|
855
|
+
viewBox: "0 0 24 24",
|
|
856
|
+
fill: "none",
|
|
857
|
+
...props,
|
|
858
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
859
|
+
d: "M16.4541 4C19.4042 4 21.7499 6.47218 21.75 9.46387C21.75 10.9044 21.198 12.2917 20.208 13.3184L12.54 21.2705C12.3987 21.4171 12.2036 21.5 12 21.5C11.7964 21.5 11.6013 21.4171 11.46 21.2705L3.79199 13.3184C2.80203 12.2917 2.25 10.9044 2.25 9.46387C2.25009 6.47218 4.59575 4 7.5459 4C8.95931 4.00006 10.309 4.58285 11.2998 5.61035L12 6.33594L12.7002 5.61035C13.691 4.58285 15.0407 4.00006 16.4541 4Z",
|
|
860
|
+
fill: "currentColor"
|
|
861
|
+
})
|
|
862
|
+
});
|
|
863
|
+
});
|
|
864
|
+
XoHeartFillIcon.displayName = "@xmart/xorder-ui-icons/XoHeartFillIcon";
|
|
865
|
+
//#endregion
|
|
866
|
+
//#region src/icons/XoHeartOutlineIcon.tsx
|
|
867
|
+
var XoHeartOutlineIcon = forwardRef((props, ref) => {
|
|
868
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
869
|
+
ref,
|
|
870
|
+
viewBox: "0 0 24 24",
|
|
871
|
+
fill: "none",
|
|
872
|
+
...props,
|
|
873
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
874
|
+
d: "M20.25 9.46387C20.2499 7.24873 18.5249 5.5 16.4541 5.5C15.4565 5.50006 14.4943 5.91096 13.7803 6.65137L12.54 7.9375C12.3987 8.08406 12.2036 8.16699 12 8.16699C11.7964 8.16699 11.6013 8.08406 11.46 7.9375L10.2197 6.65137C9.50569 5.91096 8.54345 5.50006 7.5459 5.5C5.47513 5.5 3.75009 7.24873 3.75 9.46387C3.75 10.5237 4.15628 11.5349 4.87109 12.2764L12 19.6689L19.1289 12.2764C19.8437 11.5349 20.25 10.5237 20.25 9.46387ZM21.75 9.46387C21.75 10.9044 21.198 12.2917 20.208 13.3184L12.54 21.2705C12.3987 21.4171 12.2036 21.5 12 21.5C11.7964 21.5 11.6013 21.4171 11.46 21.2705L3.79199 13.3184C2.80203 12.2917 2.25 10.9044 2.25 9.46387C2.25009 6.47218 4.59575 4 7.5459 4C8.95931 4.00006 10.309 4.58285 11.2998 5.61035L12 6.33594L12.7002 5.61035C13.691 4.58285 15.0407 4.00006 16.4541 4C19.4042 4 21.7499 6.47218 21.75 9.46387Z",
|
|
875
|
+
fill: "currentColor"
|
|
876
|
+
})
|
|
877
|
+
});
|
|
878
|
+
});
|
|
879
|
+
XoHeartOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoHeartOutlineIcon";
|
|
880
|
+
//#endregion
|
|
991
881
|
//#region src/icons/XoHomeFillIcon.tsx
|
|
992
882
|
var XoHomeFillIcon = forwardRef((props, ref) => {
|
|
993
|
-
return /* @__PURE__ */
|
|
883
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
994
884
|
ref,
|
|
995
885
|
viewBox: "0 0 24 24",
|
|
996
886
|
fill: "none",
|
|
997
887
|
stroke: "currentColor",
|
|
998
888
|
...props,
|
|
999
|
-
children: /* @__PURE__ */
|
|
889
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1000
890
|
d: "M14 20V14.3529C14 13.3176 13.1 12.4706 12 12.4706C10.9 12.4706 10 13.3176 10 14.3529V20H4V10.5882L12 4L20 10.5882V20H14Z",
|
|
1001
891
|
fill: "currentColor",
|
|
1002
892
|
stroke: "currentColor",
|
|
@@ -1010,13 +900,13 @@ XoHomeFillIcon.displayName = "@xmart/xorder-ui-icons/XoHomeFillIcon";
|
|
|
1010
900
|
//#endregion
|
|
1011
901
|
//#region src/icons/XoHomeOutlineIcon.tsx
|
|
1012
902
|
var XoHomeOutlineIcon = forwardRef((props, ref) => {
|
|
1013
|
-
return /* @__PURE__ */
|
|
903
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1014
904
|
ref,
|
|
1015
905
|
viewBox: "0 0 24 24",
|
|
1016
906
|
fill: "none",
|
|
1017
907
|
stroke: "currentColor",
|
|
1018
908
|
...props,
|
|
1019
|
-
children: /* @__PURE__ */
|
|
909
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1020
910
|
d: "M14 20V14.3529C14 13.3176 13.1 12.4706 12 12.4706C10.9 12.4706 10 13.3176 10 14.3529V20H4V10.5882L12 4L20 10.5882V20H14Z",
|
|
1021
911
|
stroke: "currentColor",
|
|
1022
912
|
strokeWidth: "1.5",
|
|
@@ -1029,12 +919,12 @@ XoHomeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoHomeOutlineIcon";
|
|
|
1029
919
|
//#endregion
|
|
1030
920
|
//#region src/icons/XoImageAddOutlineIcon.tsx
|
|
1031
921
|
var XoImageAddOutlineIcon = forwardRef((props, ref) => {
|
|
1032
|
-
return /* @__PURE__ */
|
|
922
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1033
923
|
ref,
|
|
1034
924
|
viewBox: "0 0 24 24",
|
|
1035
925
|
fill: "none",
|
|
1036
926
|
...props,
|
|
1037
|
-
children: /* @__PURE__ */
|
|
927
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1038
928
|
d: "M9 13.5L9.48014 12.9238C9.1937 12.6851 8.77542 12.6931 8.49828 12.9425L9 13.5ZM4 4V3.25C3.58579 3.25 3.25 3.58579 3.25 4H4ZM20 4H20.75C20.75 3.58579 20.4142 3.25 20 3.25V4ZM4 20H3.25C3.25 20.4142 3.58579 20.75 4 20.75V20ZM14 20.75C14.4142 20.75 14.75 20.4142 14.75 20C14.75 19.5858 14.4142 19.25 14 19.25V20.75ZM19.25 12C19.25 12.4142 19.5858 12.75 20 12.75C20.4142 12.75 20.75 12.4142 20.75 12H19.25ZM17 14L17.5303 13.4697C17.2374 13.1768 16.7626 13.1768 16.4697 13.4697L17 14ZM16.25 18C16.25 18.4142 16.5858 18.75 17 18.75C17.4142 18.75 17.75 18.4142 17.75 18H16.25ZM14.9697 14.9697C14.6768 15.2625 14.6768 15.7374 14.9697 16.0303C15.2626 16.3232 15.7374 16.3232 16.0303 16.0303L14.9697 14.9697ZM17.9697 16.0303C18.2626 16.3232 18.7374 16.3232 19.0303 16.0303C19.3232 15.7374 19.3232 15.2625 19.0303 14.9697L17.9697 16.0303ZM10.25 9C10.25 9.69036 9.69036 10.25 9 10.25V11.75C10.5188 11.75 11.75 10.5188 11.75 9H10.25ZM9 10.25C8.30964 10.25 7.75 9.69036 7.75 9H6.25C6.25 10.5188 7.48122 11.75 9 11.75V10.25ZM7.75 9C7.75 8.30964 8.30964 7.75 9 7.75V6.25C7.48122 6.25 6.25 7.48122 6.25 9H7.75ZM9 7.75C9.69036 7.75 10.25 8.30964 10.25 9H11.75C11.75 7.48122 10.5188 6.25 9 6.25V7.75ZM12.4801 15.4238L9.48014 12.9238L8.51986 14.0762L11.5199 16.5762L12.4801 15.4238ZM8.49828 12.9425L3.49828 17.4425L4.50172 18.5575L9.50172 14.0575L8.49828 12.9425ZM21.25 16C21.25 18.3472 19.3472 20.25 17 20.25V21.75C20.1756 21.75 22.75 19.1756 22.75 16H21.25ZM17 20.25C14.6528 20.25 12.75 18.3472 12.75 16H11.25C11.25 19.1756 13.8244 21.75 17 21.75V20.25ZM12.75 16C12.75 13.6528 14.6528 11.75 17 11.75V10.25C13.8244 10.25 11.25 12.8244 11.25 16H12.75ZM17 11.75C19.3472 11.75 21.25 13.6528 21.25 16H22.75C22.75 12.8244 20.1756 10.25 17 10.25V11.75ZM4 4.75H20V3.25H4V4.75ZM4.75 20V4H3.25V20H4.75ZM14 19.25H4V20.75H14V19.25ZM19.25 4V12H20.75V4H19.25ZM16.25 14V18H17.75V14H16.25ZM16.4697 13.4697L14.9697 14.9697L16.0303 16.0303L17.5303 14.5303L16.4697 13.4697ZM16.4697 14.5303L17.9697 16.0303L19.0303 14.9697L17.5303 13.4697L16.4697 14.5303Z",
|
|
1039
929
|
fill: "currentColor"
|
|
1040
930
|
})
|
|
@@ -1044,12 +934,12 @@ XoImageAddOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageAddOutlineIco
|
|
|
1044
934
|
//#endregion
|
|
1045
935
|
//#region src/icons/XoImageEditOutlineIcon.tsx
|
|
1046
936
|
var XoImageEditOutlineIcon = forwardRef((props, ref) => {
|
|
1047
|
-
return /* @__PURE__ */
|
|
937
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1048
938
|
ref,
|
|
1049
939
|
viewBox: "0 0 24 24",
|
|
1050
940
|
fill: "none",
|
|
1051
941
|
...props,
|
|
1052
|
-
children: /* @__PURE__ */
|
|
942
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1053
943
|
d: "M7 18.25C6.58579 18.25 6.25 18.5858 6.25 19C6.25 19.4142 6.58579 19.75 7 19.75V18.25ZM5 17H4.25C4.25 17.2918 4.41921 17.5571 4.68378 17.6801C4.94836 17.8031 5.26026 17.7615 5.48335 17.5735L5 17ZM18.25 17C18.25 17.4142 18.5858 17.75 19 17.75C19.4142 17.75 19.75 17.4142 19.75 17H18.25ZM17 19.75C17.4142 19.75 17.75 19.4142 17.75 19C17.75 18.5858 17.4142 18.25 17 18.25V19.75ZM17 5.75C17.4142 5.75 17.75 5.41421 17.75 5C17.75 4.58579 17.4142 4.25 17 4.25V5.75ZM19.75 7C19.75 6.58579 19.4142 6.25 19 6.25C18.5858 6.25 18.25 6.58579 18.25 7H19.75ZM7 4.25C6.58579 4.25 6.25 4.58579 6.25 5C6.25 5.41421 6.58579 5.75 7 5.75V4.25ZM5.75 7C5.75 6.58579 5.41421 6.25 5 6.25C4.58579 6.25 4.25 6.58579 4.25 7H5.75ZM15.5 11.125L15.9939 10.5606L15.4658 10.0985L14.9697 10.5947L15.5 11.125ZM11.5625 15.0625L11.094 15.6482L11.6182 16.0675L12.0928 15.5928L11.5625 15.0625ZM9.375 13.3125L9.84352 12.7268L9.36258 12.3421L8.89165 12.739L9.375 13.3125ZM7 5.75H17V4.25H7V5.75ZM18.25 7V17H19.75V7H18.25ZM17 18.25H7V19.75H17V18.25ZM5.75 17V7H4.25V17H5.75ZM10.375 9.375C10.375 9.92728 9.92728 10.375 9.375 10.375V11.875C10.7557 11.875 11.875 10.7557 11.875 9.375H10.375ZM9.375 10.375C8.82272 10.375 8.375 9.92728 8.375 9.375H6.875C6.875 10.7557 7.99429 11.875 9.375 11.875V10.375ZM8.375 9.375C8.375 8.82272 8.82272 8.375 9.375 8.375V6.875C7.99429 6.875 6.875 7.99429 6.875 9.375H8.375ZM9.375 8.375C9.92728 8.375 10.375 8.82272 10.375 9.375H11.875C11.875 7.99429 10.7557 6.875 9.375 6.875V8.375ZM14.9697 10.5947L11.0322 14.5322L12.0928 15.5928L16.0303 11.6553L14.9697 10.5947ZM12.031 14.4768L9.84352 12.7268L8.90648 13.8982L11.094 15.6482L12.031 14.4768ZM8.89165 12.739L4.51665 16.4265L5.48335 17.5735L9.85835 13.886L8.89165 12.739ZM15.0061 11.6894L18.5061 14.7519L19.4939 13.6231L15.9939 10.5606L15.0061 11.6894ZM4 3.75H6V2.25H4V3.75ZM6.25 4V6H7.75V4H6.25ZM6 6.25H4V7.75H6V6.25ZM3.75 6V4H2.25V6H3.75ZM4 6.25C3.86193 6.25 3.75 6.13807 3.75 6H2.25C2.25 6.9665 3.0335 7.75 4 7.75V6.25ZM6.25 6C6.25 6.13807 6.13807 6.25 6 6.25V7.75C6.9665 7.75 7.75 6.9665 7.75 6H6.25ZM6 3.75C6.13807 3.75 6.25 3.86193 6.25 4H7.75C7.75 3.0335 6.9665 2.25 6 2.25V3.75ZM4 2.25C3.0335 2.25 2.25 3.0335 2.25 4H3.75C3.75 3.86193 3.86193 3.75 4 3.75V2.25ZM18 3.75H20V2.25H18V3.75ZM20.25 4V6H21.75V4H20.25ZM20 6.25H18V7.75H20V6.25ZM17.75 6V4H16.25V6H17.75ZM18 6.25C17.8619 6.25 17.75 6.13807 17.75 6H16.25C16.25 6.9665 17.0335 7.75 18 7.75V6.25ZM20.25 6C20.25 6.13807 20.1381 6.25 20 6.25V7.75C20.9665 7.75 21.75 6.9665 21.75 6H20.25ZM20 3.75C20.1381 3.75 20.25 3.86193 20.25 4H21.75C21.75 3.0335 20.9665 2.25 20 2.25V3.75ZM18 2.25C17.0335 2.25 16.25 3.0335 16.25 4H17.75C17.75 3.86193 17.8619 3.75 18 3.75V2.25ZM4 17.75H6V16.25H4V17.75ZM6.25 18V20H7.75V18H6.25ZM6 20.25H4V21.75H6V20.25ZM3.75 20V18H2.25V20H3.75ZM4 20.25C3.86193 20.25 3.75 20.1381 3.75 20H2.25C2.25 20.9665 3.0335 21.75 4 21.75V20.25ZM6.25 20C6.25 20.1381 6.13807 20.25 6 20.25V21.75C6.9665 21.75 7.75 20.9665 7.75 20H6.25ZM6 17.75C6.13807 17.75 6.25 17.8619 6.25 18H7.75C7.75 17.0335 6.9665 16.25 6 16.25V17.75ZM4 16.25C3.0335 16.25 2.25 17.0335 2.25 18H3.75C3.75 17.8619 3.86193 17.75 4 17.75V16.25ZM18 17.75H20V16.25H18V17.75ZM20.25 18V20H21.75V18H20.25ZM20 20.25H18V21.75H20V20.25ZM17.75 20V18H16.25V20H17.75ZM18 20.25C17.8619 20.25 17.75 20.1381 17.75 20H16.25C16.25 20.9665 17.0335 21.75 18 21.75V20.25ZM20.25 20C20.25 20.1381 20.1381 20.25 20 20.25V21.75C20.9665 21.75 21.75 20.9665 21.75 20H20.25ZM20 17.75C20.1381 17.75 20.25 17.8619 20.25 18H21.75C21.75 17.0335 20.9665 16.25 20 16.25V17.75ZM18 16.25C17.0335 16.25 16.25 17.0335 16.25 18H17.75C17.75 17.8619 17.8619 17.75 18 17.75V16.25Z",
|
|
1054
944
|
fill: "currentColor"
|
|
1055
945
|
})
|
|
@@ -1059,12 +949,12 @@ XoImageEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageEditOutlineI
|
|
|
1059
949
|
//#endregion
|
|
1060
950
|
//#region src/icons/XoImageOutlineIcon.tsx
|
|
1061
951
|
var XoImageOutlineIcon = forwardRef((props, ref) => {
|
|
1062
|
-
return /* @__PURE__ */
|
|
952
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1063
953
|
ref,
|
|
1064
954
|
viewBox: "0 0 24 24",
|
|
1065
955
|
fill: "none",
|
|
1066
956
|
...props,
|
|
1067
|
-
children: /* @__PURE__ */
|
|
957
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1068
958
|
d: "M3.49828 17.4425C3.19039 17.7196 3.16544 18.1938 3.44253 18.5017C3.71962 18.8096 4.19384 18.8346 4.50172 18.5575L3.49828 17.4425ZM16 11L16.4939 10.4356C16.1967 10.1756 15.7489 10.1905 15.4697 10.4697L16 11ZM11.5 15.5L11.0315 16.0857C11.3299 16.3244 11.7601 16.3006 12.0303 16.0303L11.5 15.5ZM9 13.5L9.46852 12.9143C9.18181 12.685 8.77119 12.6969 8.49828 12.9425L9 13.5ZM4 4V3.25C3.58579 3.25 3.25 3.58579 3.25 4H4ZM20 4H20.75C20.75 3.58579 20.4142 3.25 20 3.25V4ZM20 20V20.75C20.4142 20.75 20.75 20.4142 20.75 20H20ZM4 20H3.25C3.25 20.4142 3.58579 20.75 4 20.75V20ZM10.25 9C10.25 9.69036 9.69036 10.25 9 10.25V11.75C10.5188 11.75 11.75 10.5188 11.75 9H10.25ZM9 10.25C8.30964 10.25 7.75 9.69036 7.75 9H6.25C6.25 10.5188 7.48122 11.75 9 11.75V10.25ZM7.75 9C7.75 8.30964 8.30964 7.75 9 7.75V6.25C7.48122 6.25 6.25 7.48122 6.25 9H7.75ZM9 7.75C9.69036 7.75 10.25 8.30964 10.25 9H11.75C11.75 7.48122 10.5188 6.25 9 6.25V7.75ZM15.4697 10.4697L10.9697 14.9697L12.0303 16.0303L16.5303 11.5303L15.4697 10.4697ZM11.9685 14.9143L9.46852 12.9143L8.53148 14.0857L11.0315 16.0857L11.9685 14.9143ZM8.49828 12.9425L3.49828 17.4425L4.50172 18.5575L9.50172 14.0575L8.49828 12.9425ZM15.5061 11.5644L19.5061 15.0644L20.4939 13.9356L16.4939 10.4356L15.5061 11.5644ZM4 4.75H20V3.25H4V4.75ZM19.25 4V20H20.75V4H19.25ZM20 19.25H4V20.75H20V19.25ZM4.75 20V4H3.25V20H4.75Z",
|
|
1069
959
|
fill: "currentColor"
|
|
1070
960
|
})
|
|
@@ -1074,13 +964,13 @@ XoImageOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageOutlineIcon";
|
|
|
1074
964
|
//#endregion
|
|
1075
965
|
//#region src/icons/XoInboxOutlineIcon.tsx
|
|
1076
966
|
var XoInboxOutlineIcon = forwardRef((props, ref) => {
|
|
1077
|
-
return /* @__PURE__ */
|
|
967
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1078
968
|
ref,
|
|
1079
969
|
viewBox: "0 0 24 24",
|
|
1080
970
|
fill: "none",
|
|
1081
971
|
stroke: "currentColor",
|
|
1082
972
|
...props,
|
|
1083
|
-
children: /* @__PURE__ */
|
|
973
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1084
974
|
d: "M4 12H8.88889L10.2222 14.625H13.7778L15.5556 12H20M4 12V17.25C4 18.2165 4.79594 19 5.77778 19H18.2222C19.2041 19 20 18.2165 20 17.25V12M4 12L6.45037 5.56777C6.58048 5.22625 6.91214 5 7.28267 5H16.7173C17.0879 5 17.4195 5.22625 17.5496 5.56777L20 12",
|
|
1085
975
|
stroke: "currentColor",
|
|
1086
976
|
strokeWidth: "1.5",
|
|
@@ -1093,19 +983,19 @@ XoInboxOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInboxOutlineIcon";
|
|
|
1093
983
|
//#endregion
|
|
1094
984
|
//#region src/icons/XoInfoCircleFillIcon.tsx
|
|
1095
985
|
var XoInfoCircleFillIcon = forwardRef((props, ref) => {
|
|
1096
|
-
return /* @__PURE__ */
|
|
986
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1097
987
|
ref,
|
|
1098
988
|
viewBox: "0 0 24 24",
|
|
1099
989
|
fill: "none",
|
|
1100
990
|
stroke: "currentColor",
|
|
1101
991
|
...props,
|
|
1102
|
-
children: [/* @__PURE__ */
|
|
992
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
1103
993
|
cx: "12",
|
|
1104
994
|
cy: "12",
|
|
1105
995
|
r: "8",
|
|
1106
996
|
stroke: "currentColor",
|
|
1107
997
|
strokeWidth: "1.5"
|
|
1108
|
-
}), /* @__PURE__ */
|
|
998
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1109
999
|
fillRule: "evenodd",
|
|
1110
1000
|
clipRule: "evenodd",
|
|
1111
1001
|
d: "M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12ZM11 11C11 10.4477 11.4477 10 12 10C12.5523 10 13 10.4477 13 11V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V11ZM12 8.5C11.4477 8.5 11 8.05228 11 7.5C11 6.94772 11.4477 6.5 12 6.5C12.5523 6.5 13 6.94772 13 7.5C13 8.05228 12.5523 8.5 12 8.5Z",
|
|
@@ -1117,13 +1007,13 @@ XoInfoCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleFillIcon"
|
|
|
1117
1007
|
//#endregion
|
|
1118
1008
|
//#region src/icons/XoInfoCircleOutlineIcon.tsx
|
|
1119
1009
|
var XoInfoCircleOutlineIcon = forwardRef((props, ref) => {
|
|
1120
|
-
return /* @__PURE__ */
|
|
1010
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1121
1011
|
ref,
|
|
1122
1012
|
viewBox: "0 0 24 24",
|
|
1123
1013
|
fill: "none",
|
|
1124
1014
|
stroke: "currentColor",
|
|
1125
1015
|
...props,
|
|
1126
|
-
children: /* @__PURE__ */
|
|
1016
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1127
1017
|
d: "M12 7.56444V7.55556M12 16.4444V10.5M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
1128
1018
|
stroke: "currentColor",
|
|
1129
1019
|
strokeWidth: "1.5",
|
|
@@ -1134,15 +1024,30 @@ var XoInfoCircleOutlineIcon = forwardRef((props, ref) => {
|
|
|
1134
1024
|
});
|
|
1135
1025
|
XoInfoCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleOutlineIcon";
|
|
1136
1026
|
//#endregion
|
|
1027
|
+
//#region src/icons/XoKeyboardOutlineIcon.tsx
|
|
1028
|
+
var XoKeyboardOutlineIcon = forwardRef((props, ref) => {
|
|
1029
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1030
|
+
ref,
|
|
1031
|
+
viewBox: "0 0 24 24",
|
|
1032
|
+
fill: "none",
|
|
1033
|
+
...props,
|
|
1034
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1035
|
+
d: "M20.25 6.66699C20.25 6.07741 20.0699 5.57217 19.8145 5.23145C19.5591 4.89094 19.2633 4.75 19 4.75H5C4.73671 4.75 4.44092 4.89094 4.18555 5.23145C3.93014 5.57217 3.75 6.07741 3.75 6.66699V17.333C3.75 17.9226 3.93014 18.4278 4.18555 18.7686C4.44092 19.1091 4.73671 19.25 5 19.25H19C19.2633 19.25 19.5591 19.1091 19.8145 18.7686C20.0699 18.4278 20.25 17.9226 20.25 17.333V6.66699ZM17.5 15.25C17.9142 15.25 18.25 15.5858 18.25 16C18.25 16.4142 17.9142 16.75 17.5 16.75H6.5C6.08579 16.75 5.75 16.4142 5.75 16C5.75 15.5858 6.08579 15.25 6.5 15.25H17.5ZM8.5 11.25C8.91421 11.25 9.25 11.5858 9.25 12C9.25 12.4142 8.91421 12.75 8.5 12.75H6.5C6.08579 12.75 5.75 12.4142 5.75 12C5.75 11.5858 6.08579 11.25 6.5 11.25H8.5ZM13 11.25C13.4142 11.25 13.75 11.5858 13.75 12C13.75 12.4142 13.4142 12.75 13 12.75H11C10.5858 12.75 10.25 12.4142 10.25 12C10.25 11.5858 10.5858 11.25 11 11.25H13ZM17.5 11.25C17.9142 11.25 18.25 11.5858 18.25 12C18.25 12.4142 17.9142 12.75 17.5 12.75H15.5C15.0858 12.75 14.75 12.4142 14.75 12C14.75 11.5858 15.0858 11.25 15.5 11.25H17.5ZM8.5 7.25C8.91421 7.25 9.25 7.58579 9.25 8C9.25 8.41421 8.91421 8.75 8.5 8.75H6.5C6.08579 8.75 5.75 8.41421 5.75 8C5.75 7.58579 6.08579 7.25 6.5 7.25H8.5ZM13 7.25C13.4142 7.25 13.75 7.58579 13.75 8C13.75 8.41421 13.4142 8.75 13 8.75H11C10.5858 8.75 10.25 8.41421 10.25 8C10.25 7.58579 10.5858 7.25 11 7.25H13ZM17.5 7.25C17.9142 7.25 18.25 7.58579 18.25 8C18.25 8.41421 17.9142 8.75 17.5 8.75H15.5C15.0858 8.75 14.75 8.41421 14.75 8C14.75 7.58579 15.0858 7.25 15.5 7.25H17.5ZM21.75 17.333C21.75 18.2159 21.4829 19.0446 21.0146 19.6689C20.5462 20.2936 19.8413 20.75 19 20.75H5C4.15872 20.75 3.45383 20.2936 2.98535 19.6689C2.51714 19.0446 2.25 18.2159 2.25 17.333V6.66699C2.25 5.78413 2.51714 4.95544 2.98535 4.33105C3.45383 3.70641 4.15872 3.25 5 3.25H19C19.8413 3.25 20.5462 3.70641 21.0146 4.33105C21.4829 4.95544 21.75 5.78413 21.75 6.66699V17.333Z",
|
|
1036
|
+
fill: "currentColor"
|
|
1037
|
+
})
|
|
1038
|
+
});
|
|
1039
|
+
});
|
|
1040
|
+
XoKeyboardOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoKeyboardOutlineIcon";
|
|
1041
|
+
//#endregion
|
|
1137
1042
|
//#region src/icons/XoLaptopOutlineIcon.tsx
|
|
1138
1043
|
var XoLaptopOutlineIcon = forwardRef((props, ref) => {
|
|
1139
|
-
return /* @__PURE__ */
|
|
1044
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1140
1045
|
ref,
|
|
1141
1046
|
viewBox: "0 0 24 24",
|
|
1142
1047
|
fill: "none",
|
|
1143
1048
|
stroke: "currentColor",
|
|
1144
1049
|
...props,
|
|
1145
|
-
children: /* @__PURE__ */
|
|
1050
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1146
1051
|
d: "M18.6316 16.5926H5.36842M18.6316 16.5926C19.1548 16.5926 19.5789 16.1615 19.5789 15.6296V5.96296C19.5789 5.43113 19.1548 5 18.6316 5H12H5.36842C4.8452 5 4.42105 5.43113 4.42105 5.96296V15.6296C4.42105 16.1615 4.8452 16.5926 5.36842 16.5926M18.6316 16.5926H19.8158C20.4698 16.5926 21 17.1315 21 17.7963C21 18.4611 20.4698 19 19.8158 19H4.18421C3.53019 19 3 18.4611 3 17.7963C3 17.1315 3.53019 16.5926 4.18421 16.5926H5.36842",
|
|
1147
1052
|
stroke: "currentColor",
|
|
1148
1053
|
strokeWidth: "1.5",
|
|
@@ -1155,18 +1060,18 @@ XoLaptopOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLaptopOutlineIcon";
|
|
|
1155
1060
|
//#endregion
|
|
1156
1061
|
//#region src/icons/XoLikeFillIcon.tsx
|
|
1157
1062
|
var XoLikeFillIcon = forwardRef((props, ref) => {
|
|
1158
|
-
return /* @__PURE__ */
|
|
1063
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1159
1064
|
ref,
|
|
1160
1065
|
viewBox: "0 0 24 24",
|
|
1161
1066
|
fill: "none",
|
|
1162
1067
|
stroke: "currentColor",
|
|
1163
1068
|
...props,
|
|
1164
|
-
children: [/* @__PURE__ */
|
|
1069
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1165
1070
|
d: "M8.44444 8.85294V19M8.44444 8.85294L12 4.88235C12.4444 4.44118 13.1111 4 13.7778 4C16.2222 4 15.9111 6.38235 15.1111 7.30882L13.7778 8.85294H17.3333C19.1111 8.85294 20 10.1765 20 11.9412C20 13.7059 18.4444 17.2353 18.4444 17.2353C17.7778 18.3382 17.3333 19 15.5556 19H4V8.85294H8.44444Z",
|
|
1166
1071
|
stroke: "currentColor",
|
|
1167
1072
|
strokeWidth: "1.5",
|
|
1168
1073
|
strokeLinejoin: "round"
|
|
1169
|
-
}), /* @__PURE__ */
|
|
1074
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1170
1075
|
d: "M8 19V8.85294L11.6923 4.88235C12.1538 4.44118 12.8462 4 13.5385 4C16.0769 4 15.7538 6.38235 14.9231 7.30882L13.5385 8.85294H17.2308C19.0769 8.85294 20 10.1765 20 11.9412C20 13.7059 18.3846 17.2353 18.3846 17.2353C17.6923 18.3382 17.2308 19 15.3846 19H8Z",
|
|
1171
1076
|
fill: "currentColor"
|
|
1172
1077
|
})]
|
|
@@ -1176,13 +1081,13 @@ XoLikeFillIcon.displayName = "@xmart/xorder-ui-icons/XoLikeFillIcon";
|
|
|
1176
1081
|
//#endregion
|
|
1177
1082
|
//#region src/icons/XoLikeOutlineIcon.tsx
|
|
1178
1083
|
var XoLikeOutlineIcon = forwardRef((props, ref) => {
|
|
1179
|
-
return /* @__PURE__ */
|
|
1084
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1180
1085
|
ref,
|
|
1181
1086
|
viewBox: "0 0 24 24",
|
|
1182
1087
|
fill: "none",
|
|
1183
1088
|
stroke: "currentColor",
|
|
1184
1089
|
...props,
|
|
1185
|
-
children: /* @__PURE__ */
|
|
1090
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1186
1091
|
d: "M8.44444 8.85294V19M8.44444 8.85294L12 4.88235C12.4444 4.44118 13.1111 4 13.7778 4C16.2222 4 15.9111 6.38235 15.1111 7.30882L13.7778 8.85294H17.3333C19.1111 8.85294 20 10.1765 20 11.9412C20 13.7059 18.4444 17.2353 18.4444 17.2353C17.7778 18.3382 17.3333 19 15.5556 19H4V8.85294H8.44444Z",
|
|
1187
1092
|
stroke: "currentColor",
|
|
1188
1093
|
strokeWidth: "1.5",
|
|
@@ -1194,13 +1099,13 @@ XoLikeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLikeOutlineIcon";
|
|
|
1194
1099
|
//#endregion
|
|
1195
1100
|
//#region src/icons/XoListRightOutlineIcon.tsx
|
|
1196
1101
|
var XoListRightOutlineIcon = forwardRef((props, ref) => {
|
|
1197
|
-
return /* @__PURE__ */
|
|
1102
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1198
1103
|
ref,
|
|
1199
1104
|
viewBox: "0 0 24 24",
|
|
1200
1105
|
fill: "none",
|
|
1201
1106
|
stroke: "currentColor",
|
|
1202
1107
|
...props,
|
|
1203
|
-
children: /* @__PURE__ */
|
|
1108
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1204
1109
|
d: "M7 8H17M7 12H17M7 16H13M4 4H20V20H4V4Z",
|
|
1205
1110
|
stroke: "currentColor",
|
|
1206
1111
|
strokeWidth: "1.5",
|
|
@@ -1213,13 +1118,13 @@ XoListRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoListRightOutlineI
|
|
|
1213
1118
|
//#endregion
|
|
1214
1119
|
//#region src/icons/XoLockOffOutlineIcon.tsx
|
|
1215
1120
|
var XoLockOffOutlineIcon = forwardRef((props, ref) => {
|
|
1216
|
-
return /* @__PURE__ */
|
|
1121
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1217
1122
|
ref,
|
|
1218
1123
|
viewBox: "0 0 24 24",
|
|
1219
1124
|
fill: "none",
|
|
1220
1125
|
stroke: "currentColor",
|
|
1221
1126
|
...props,
|
|
1222
|
-
children: /* @__PURE__ */
|
|
1127
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1223
1128
|
d: "M8 11V7C8 5.66667 8.8 3 12 3C13.9103 3 14.9653 3.95032 15.5054 5M8 11H5V21H19V11H8Z",
|
|
1224
1129
|
stroke: "currentColor",
|
|
1225
1130
|
strokeWidth: "1.5",
|
|
@@ -1232,13 +1137,13 @@ XoLockOffOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOffOutlineIcon"
|
|
|
1232
1137
|
//#endregion
|
|
1233
1138
|
//#region src/icons/XoLockOnOutlineIcon.tsx
|
|
1234
1139
|
var XoLockOnOutlineIcon = forwardRef((props, ref) => {
|
|
1235
|
-
return /* @__PURE__ */
|
|
1140
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1236
1141
|
ref,
|
|
1237
1142
|
viewBox: "0 0 24 24",
|
|
1238
1143
|
fill: "none",
|
|
1239
1144
|
stroke: "currentColor",
|
|
1240
1145
|
...props,
|
|
1241
|
-
children: /* @__PURE__ */
|
|
1146
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1242
1147
|
d: "M8 11V7C8 5.66667 8.8 3 12 3C15.2 3 16 5.66667 16 7V11M8 11H5V21H19V11H16M8 11H16",
|
|
1243
1148
|
stroke: "currentColor",
|
|
1244
1149
|
strokeWidth: "1.5",
|
|
@@ -1251,13 +1156,13 @@ XoLockOnOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOnOutlineIcon";
|
|
|
1251
1156
|
//#endregion
|
|
1252
1157
|
//#region src/icons/XoMailOutlineIcon.tsx
|
|
1253
1158
|
var XoMailOutlineIcon = forwardRef((props, ref) => {
|
|
1254
|
-
return /* @__PURE__ */
|
|
1159
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1255
1160
|
ref,
|
|
1256
1161
|
viewBox: "0 0 24 24",
|
|
1257
1162
|
fill: "none",
|
|
1258
1163
|
stroke: "currentColor",
|
|
1259
1164
|
...props,
|
|
1260
|
-
children: /* @__PURE__ */
|
|
1165
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1261
1166
|
d: "M3.29289 5.29289C3.47386 5.11193 3.72386 5 4 5H20C20.2761 5 20.5261 5.11193 20.7071 5.29289M3.29289 5.29289C3.11193 5.47386 3 5.72386 3 6V18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.72386 20.8881 5.47386 20.7071 5.29289M3.29289 5.29289L10.5858 12.5857C11.3668 13.3668 12.6332 13.3668 13.4142 12.5857L20.7071 5.29289",
|
|
1262
1167
|
stroke: "currentColor",
|
|
1263
1168
|
strokeWidth: "1.5",
|
|
@@ -1270,13 +1175,13 @@ XoMailOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMailOutlineIcon";
|
|
|
1270
1175
|
//#endregion
|
|
1271
1176
|
//#region src/icons/XoMenuOutlineIcon.tsx
|
|
1272
1177
|
var XoMenuOutlineIcon = forwardRef((props, ref) => {
|
|
1273
|
-
return /* @__PURE__ */
|
|
1178
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1274
1179
|
ref,
|
|
1275
1180
|
viewBox: "0 0 24 24",
|
|
1276
1181
|
fill: "none",
|
|
1277
1182
|
stroke: "currentColor",
|
|
1278
1183
|
...props,
|
|
1279
|
-
children: /* @__PURE__ */
|
|
1184
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1280
1185
|
d: "M4 18H20M4 12H20M4 6H20",
|
|
1281
1186
|
stroke: "currentColor",
|
|
1282
1187
|
strokeWidth: "2",
|
|
@@ -1289,21 +1194,21 @@ XoMenuOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMenuOutlineIcon";
|
|
|
1289
1194
|
//#endregion
|
|
1290
1195
|
//#region src/icons/XoMenuVerticalFillIcon.tsx
|
|
1291
1196
|
var XoMenuVerticalFillIcon = forwardRef((props, ref) => {
|
|
1292
|
-
return /* @__PURE__ */
|
|
1197
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1293
1198
|
ref,
|
|
1294
1199
|
viewBox: "0 0 24 24",
|
|
1295
1200
|
fill: "none",
|
|
1296
1201
|
...props,
|
|
1297
1202
|
children: [
|
|
1298
|
-
/* @__PURE__ */
|
|
1203
|
+
/* @__PURE__ */ jsx("path", {
|
|
1299
1204
|
d: "M14 5C14 6.10457 13.1046 7 12 7C10.8954 7 10 6.10457 10 5C10 3.89543 10.8954 3 12 3C13.1046 3 14 3.89543 14 5Z",
|
|
1300
1205
|
fill: "currentColor"
|
|
1301
1206
|
}),
|
|
1302
|
-
/* @__PURE__ */
|
|
1207
|
+
/* @__PURE__ */ jsx("path", {
|
|
1303
1208
|
d: "M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z",
|
|
1304
1209
|
fill: "currentColor"
|
|
1305
1210
|
}),
|
|
1306
|
-
/* @__PURE__ */
|
|
1211
|
+
/* @__PURE__ */ jsx("path", {
|
|
1307
1212
|
d: "M12 21C13.1046 21 14 20.1046 14 19C14 17.8954 13.1046 17 12 17C10.8954 17 10 17.8954 10 19C10 20.1046 10.8954 21 12 21Z",
|
|
1308
1213
|
fill: "currentColor"
|
|
1309
1214
|
})
|
|
@@ -1314,13 +1219,13 @@ XoMenuVerticalFillIcon.displayName = "@xmart/xorder-ui-icons/XoMenuVerticalFillI
|
|
|
1314
1219
|
//#endregion
|
|
1315
1220
|
//#region src/icons/XoMessageCircleDotsOutlineIcon.tsx
|
|
1316
1221
|
var XoMessageCircleDotsOutlineIcon = forwardRef((props, ref) => {
|
|
1317
|
-
return /* @__PURE__ */
|
|
1222
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1318
1223
|
ref,
|
|
1319
1224
|
viewBox: "0 0 24 24",
|
|
1320
1225
|
fill: "none",
|
|
1321
1226
|
stroke: "currentColor",
|
|
1322
1227
|
...props,
|
|
1323
|
-
children: /* @__PURE__ */
|
|
1228
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1324
1229
|
d: "M15.1111 11.5555H15.12M11.5555 11.5555H11.5644M7.99999 11.5555H8.00888M14.9333 18.3111L20 20L18.3111 14.9333C18.3111 14.9333 19.1111 13.7778 19.1111 11.5555C19.1111 7.38273 15.7284 4 11.5555 4C7.38273 4 4 7.38273 4 11.5555C4 15.7283 7.38273 19.1111 11.5555 19.1111C13.8531 19.1111 14.9333 18.3111 14.9333 18.3111Z",
|
|
1325
1230
|
stroke: "currentColor",
|
|
1326
1231
|
strokeWidth: "1.5",
|
|
@@ -1333,19 +1238,19 @@ XoMessageCircleDotsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMessageCi
|
|
|
1333
1238
|
//#endregion
|
|
1334
1239
|
//#region src/icons/XoMinusCircleFillIcon.tsx
|
|
1335
1240
|
var XoMinusCircleFillIcon = forwardRef((props, ref) => {
|
|
1336
|
-
return /* @__PURE__ */
|
|
1241
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1337
1242
|
ref,
|
|
1338
1243
|
viewBox: "0 0 24 24",
|
|
1339
1244
|
fill: "none",
|
|
1340
1245
|
stroke: "currentColor",
|
|
1341
1246
|
...props,
|
|
1342
|
-
children: [/* @__PURE__ */
|
|
1247
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1343
1248
|
d: "M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z",
|
|
1344
1249
|
stroke: "currentColor",
|
|
1345
1250
|
strokeWidth: "1.5",
|
|
1346
1251
|
strokeLinecap: "round",
|
|
1347
1252
|
strokeLinejoin: "round"
|
|
1348
|
-
}), /* @__PURE__ */
|
|
1253
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1349
1254
|
fillRule: "evenodd",
|
|
1350
1255
|
clipRule: "evenodd",
|
|
1351
1256
|
d: "M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12ZM8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z",
|
|
@@ -1357,13 +1262,13 @@ XoMinusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleFillIco
|
|
|
1357
1262
|
//#endregion
|
|
1358
1263
|
//#region src/icons/XoMinusCircleOutlineIcon.tsx
|
|
1359
1264
|
var XoMinusCircleOutlineIcon = forwardRef((props, ref) => {
|
|
1360
|
-
return /* @__PURE__ */
|
|
1265
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1361
1266
|
ref,
|
|
1362
1267
|
viewBox: "0 0 24 24",
|
|
1363
1268
|
fill: "none",
|
|
1364
1269
|
stroke: "currentColor",
|
|
1365
1270
|
...props,
|
|
1366
|
-
children: /* @__PURE__ */
|
|
1271
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1367
1272
|
d: "M8.44444 12H15.5556M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
1368
1273
|
stroke: "currentColor",
|
|
1369
1274
|
strokeWidth: "1.5",
|
|
@@ -1376,13 +1281,13 @@ XoMinusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleOutl
|
|
|
1376
1281
|
//#endregion
|
|
1377
1282
|
//#region src/icons/XoMinusOutlineIcon.tsx
|
|
1378
1283
|
var XoMinusOutlineIcon = forwardRef((props, ref) => {
|
|
1379
|
-
return /* @__PURE__ */
|
|
1284
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1380
1285
|
ref,
|
|
1381
1286
|
viewBox: "0 0 24 24",
|
|
1382
1287
|
fill: "none",
|
|
1383
1288
|
stroke: "currentColor",
|
|
1384
1289
|
...props,
|
|
1385
|
-
children: /* @__PURE__ */
|
|
1290
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1386
1291
|
d: "M4 12H20",
|
|
1387
1292
|
stroke: "currentColor",
|
|
1388
1293
|
strokeWidth: "1.5",
|
|
@@ -1395,13 +1300,13 @@ XoMinusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusOutlineIcon";
|
|
|
1395
1300
|
//#endregion
|
|
1396
1301
|
//#region src/icons/XoMinusSOutlineIcon.tsx
|
|
1397
1302
|
var XoMinusSOutlineIcon = forwardRef((props, ref) => {
|
|
1398
|
-
return /* @__PURE__ */
|
|
1303
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1399
1304
|
ref,
|
|
1400
1305
|
viewBox: "0 0 24 24",
|
|
1401
1306
|
fill: "none",
|
|
1402
1307
|
stroke: "currentColor",
|
|
1403
1308
|
...props,
|
|
1404
|
-
children: /* @__PURE__ */
|
|
1309
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1405
1310
|
d: "M6 12H18",
|
|
1406
1311
|
stroke: "currentColor",
|
|
1407
1312
|
strokeWidth: "1.5",
|
|
@@ -1414,13 +1319,13 @@ XoMinusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusSOutlineIcon";
|
|
|
1414
1319
|
//#endregion
|
|
1415
1320
|
//#region src/icons/XoNewscreenOutlineIcon.tsx
|
|
1416
1321
|
var XoNewscreenOutlineIcon = forwardRef((props, ref) => {
|
|
1417
|
-
return /* @__PURE__ */
|
|
1322
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1418
1323
|
ref,
|
|
1419
1324
|
viewBox: "0 0 24 24",
|
|
1420
1325
|
fill: "none",
|
|
1421
1326
|
stroke: "currentColor",
|
|
1422
1327
|
...props,
|
|
1423
|
-
children: /* @__PURE__ */
|
|
1328
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1424
1329
|
d: "M19.9999 4.00001L9.99994 14M19.9999 4.00001L20 10M19.9999 4.00001L14 4M10 4.00001H4V20H20V14",
|
|
1425
1330
|
stroke: "currentColor",
|
|
1426
1331
|
strokeWidth: "1.5",
|
|
@@ -1433,13 +1338,13 @@ XoNewscreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoNewscreenOutlineI
|
|
|
1433
1338
|
//#endregion
|
|
1434
1339
|
//#region src/icons/XoPauseFillIcon.tsx
|
|
1435
1340
|
var XoPauseFillIcon = forwardRef((props, ref) => {
|
|
1436
|
-
return /* @__PURE__ */
|
|
1341
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1437
1342
|
ref,
|
|
1438
1343
|
viewBox: "0 0 24 24",
|
|
1439
1344
|
fill: "none",
|
|
1440
1345
|
stroke: "currentColor",
|
|
1441
1346
|
...props,
|
|
1442
|
-
children: /* @__PURE__ */
|
|
1347
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1443
1348
|
d: "M15 6V18M9 6V18",
|
|
1444
1349
|
stroke: "currentColor",
|
|
1445
1350
|
strokeWidth: "2",
|
|
@@ -1452,13 +1357,13 @@ XoPauseFillIcon.displayName = "@xmart/xorder-ui-icons/XoPauseFillIcon";
|
|
|
1452
1357
|
//#endregion
|
|
1453
1358
|
//#region src/icons/XoPhoneOutlineIcon.tsx
|
|
1454
1359
|
var XoPhoneOutlineIcon = forwardRef((props, ref) => {
|
|
1455
|
-
return /* @__PURE__ */
|
|
1360
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1456
1361
|
ref,
|
|
1457
1362
|
viewBox: "0 0 24 24",
|
|
1458
1363
|
fill: "none",
|
|
1459
1364
|
stroke: "currentColor",
|
|
1460
1365
|
...props,
|
|
1461
|
-
children: /* @__PURE__ */
|
|
1366
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1462
1367
|
d: "M19.9995 18.3879V15.9793C20.0093 15.5855 19.8737 15.2019 19.6186 14.9014C18.8991 14.0539 16.4316 13.5118 15.4534 13.72C14.691 13.8823 14.1575 14.6478 13.636 15.1683C11.6219 14.0254 9.95431 12.3611 8.80907 10.351C9.3306 9.83048 10.0977 9.2981 10.2603 8.53714C10.4686 7.56246 9.92724 5.11066 9.08563 4.3883C8.7896 4.13422 8.4111 3.99624 8.02068 4.00008H5.60721C4.68763 4.00094 3.92256 4.82573 4.00628 5.75039C4 13.72 10.2222 20 18.2457 19.9937C19.1753 20.0776 20.0033 19.3087 19.9995 18.3879Z",
|
|
1463
1368
|
stroke: "currentColor",
|
|
1464
1369
|
strokeWidth: "1.5",
|
|
@@ -1471,13 +1376,13 @@ XoPhoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPhoneOutlineIcon";
|
|
|
1471
1376
|
//#endregion
|
|
1472
1377
|
//#region src/icons/XoPlayFillIcon.tsx
|
|
1473
1378
|
var XoPlayFillIcon = forwardRef((props, ref) => {
|
|
1474
|
-
return /* @__PURE__ */
|
|
1379
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1475
1380
|
ref,
|
|
1476
1381
|
viewBox: "0 0 24 24",
|
|
1477
1382
|
fill: "none",
|
|
1478
1383
|
stroke: "currentColor",
|
|
1479
1384
|
...props,
|
|
1480
|
-
children: /* @__PURE__ */
|
|
1385
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1481
1386
|
d: "M8 6V18L18 12L8 6Z",
|
|
1482
1387
|
fill: "currentColor",
|
|
1483
1388
|
stroke: "currentColor",
|
|
@@ -1490,19 +1395,19 @@ XoPlayFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlayFillIcon";
|
|
|
1490
1395
|
//#endregion
|
|
1491
1396
|
//#region src/icons/XoPlusCircleFillIcon.tsx
|
|
1492
1397
|
var XoPlusCircleFillIcon = forwardRef((props, ref) => {
|
|
1493
|
-
return /* @__PURE__ */
|
|
1398
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1494
1399
|
ref,
|
|
1495
1400
|
viewBox: "0 0 24 24",
|
|
1496
1401
|
fill: "none",
|
|
1497
1402
|
stroke: "currentColor",
|
|
1498
1403
|
...props,
|
|
1499
|
-
children: [/* @__PURE__ */
|
|
1404
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
1500
1405
|
cx: "12",
|
|
1501
1406
|
cy: "12",
|
|
1502
1407
|
r: "8",
|
|
1503
1408
|
stroke: "currentColor",
|
|
1504
1409
|
strokeWidth: "1.5"
|
|
1505
|
-
}), /* @__PURE__ */
|
|
1410
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1506
1411
|
fillRule: "evenodd",
|
|
1507
1412
|
clipRule: "evenodd",
|
|
1508
1413
|
d: "M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12ZM7 12C7 11.4477 7.44772 11 8 11H11V8C11 7.44772 11.4477 7 12 7C12.5523 7 13 7.44772 13 8V11H16C16.5523 11 17 11.4477 17 12C17 12.5523 16.5523 13 16 13H13V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V13H8C7.44772 13 7 12.5523 7 12Z",
|
|
@@ -1514,13 +1419,13 @@ XoPlusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleFillIcon"
|
|
|
1514
1419
|
//#endregion
|
|
1515
1420
|
//#region src/icons/XoPlusCircleOutlineIcon.tsx
|
|
1516
1421
|
var XoPlusCircleOutlineIcon = forwardRef((props, ref) => {
|
|
1517
|
-
return /* @__PURE__ */
|
|
1422
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1518
1423
|
ref,
|
|
1519
1424
|
viewBox: "0 0 24 24",
|
|
1520
1425
|
fill: "none",
|
|
1521
1426
|
stroke: "currentColor",
|
|
1522
1427
|
...props,
|
|
1523
|
-
children: /* @__PURE__ */
|
|
1428
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1524
1429
|
d: "M12 7.55556V16.4444M7.55556 12H16.4444M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
1525
1430
|
stroke: "currentColor",
|
|
1526
1431
|
strokeWidth: "1.5",
|
|
@@ -1533,13 +1438,13 @@ XoPlusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleOutlin
|
|
|
1533
1438
|
//#endregion
|
|
1534
1439
|
//#region src/icons/XoPlusOutlineIcon.tsx
|
|
1535
1440
|
var XoPlusOutlineIcon = forwardRef((props, ref) => {
|
|
1536
|
-
return /* @__PURE__ */
|
|
1441
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1537
1442
|
ref,
|
|
1538
1443
|
viewBox: "0 0 24 24",
|
|
1539
1444
|
fill: "none",
|
|
1540
1445
|
stroke: "currentColor",
|
|
1541
1446
|
...props,
|
|
1542
|
-
children: /* @__PURE__ */
|
|
1447
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1543
1448
|
d: "M4 12H20M12 4V20",
|
|
1544
1449
|
stroke: "currentColor",
|
|
1545
1450
|
strokeWidth: "1.5",
|
|
@@ -1552,13 +1457,13 @@ XoPlusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusOutlineIcon";
|
|
|
1552
1457
|
//#endregion
|
|
1553
1458
|
//#region src/icons/XoPlusSOutlineIcon.tsx
|
|
1554
1459
|
var XoPlusSOutlineIcon = forwardRef((props, ref) => {
|
|
1555
|
-
return /* @__PURE__ */
|
|
1460
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1556
1461
|
ref,
|
|
1557
1462
|
viewBox: "0 0 24 24",
|
|
1558
1463
|
fill: "none",
|
|
1559
1464
|
stroke: "currentColor",
|
|
1560
1465
|
...props,
|
|
1561
|
-
children: /* @__PURE__ */
|
|
1466
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1562
1467
|
d: "M12 6V18M6 12H18",
|
|
1563
1468
|
stroke: "currentColor",
|
|
1564
1469
|
strokeWidth: "1.5",
|
|
@@ -1571,13 +1476,13 @@ XoPlusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusSOutlineIcon";
|
|
|
1571
1476
|
//#endregion
|
|
1572
1477
|
//#region src/icons/XoPrintOutlineIcon.tsx
|
|
1573
1478
|
var XoPrintOutlineIcon = forwardRef((props, ref) => {
|
|
1574
|
-
return /* @__PURE__ */
|
|
1479
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1575
1480
|
ref,
|
|
1576
1481
|
viewBox: "0 0 24 24",
|
|
1577
1482
|
fill: "none",
|
|
1578
1483
|
stroke: "currentColor",
|
|
1579
1484
|
...props,
|
|
1580
|
-
children: /* @__PURE__ */
|
|
1485
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1581
1486
|
d: "M15.4998 17.3333V14.6667H8.49979V17.3333M15.4998 17.3333V20H8.49979V17.3333M15.4998 17.3333H19.9998V9.33333H15.4998M8.49979 17.3333H4V9.33333H8.49979M8.49979 9.33333H15.4998M8.49979 9.33333V4.88889C8.49979 4.39797 8.89155 4 9.37479 4H14.6248C15.108 4 15.4998 4.39797 15.4998 4.88889V9.33333",
|
|
1582
1487
|
stroke: "currentColor",
|
|
1583
1488
|
strokeWidth: "1.5",
|
|
@@ -1590,19 +1495,19 @@ XoPrintOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPrintOutlineIcon";
|
|
|
1590
1495
|
//#endregion
|
|
1591
1496
|
//#region src/icons/XoQuestionCircleFillIcon.tsx
|
|
1592
1497
|
var XoQuestionCircleFillIcon = forwardRef((props, ref) => {
|
|
1593
|
-
return /* @__PURE__ */
|
|
1498
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1594
1499
|
ref,
|
|
1595
1500
|
viewBox: "0 0 24 24",
|
|
1596
1501
|
fill: "none",
|
|
1597
1502
|
stroke: "currentColor",
|
|
1598
1503
|
...props,
|
|
1599
|
-
children: [/* @__PURE__ */
|
|
1504
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
1600
1505
|
cx: "12",
|
|
1601
1506
|
cy: "12",
|
|
1602
1507
|
r: "8",
|
|
1603
1508
|
stroke: "currentColor",
|
|
1604
1509
|
strokeWidth: "1.5"
|
|
1605
|
-
}), /* @__PURE__ */
|
|
1510
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1606
1511
|
fillRule: "evenodd",
|
|
1607
1512
|
clipRule: "evenodd",
|
|
1608
1513
|
d: "M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM10.168 9.56823C10.4032 8.85523 11.1194 8.30556 12.0004 8.30556C13.1603 8.30556 13.9935 9.18831 13.9199 10.0299C13.8958 10.305 13.804 10.4365 13.6782 10.5498C13.5445 10.6702 13.3968 10.7541 13.1737 10.881C13.0907 10.9282 12.9972 10.9813 12.8902 11.0445C12.5394 11.2514 12.1041 11.5406 11.7719 12.0329C11.4333 12.5346 11.2504 13.1719 11.2504 14C11.2504 14.4142 11.5862 14.75 12.0004 14.75C12.4146 14.75 12.7504 14.4142 12.7504 14C12.7504 13.3995 12.8799 13.0725 13.0153 12.8719C13.1571 12.6618 13.3572 12.5105 13.6522 12.3365C13.701 12.3077 13.7572 12.276 13.8185 12.2415C14.0725 12.0982 14.4143 11.9054 14.6819 11.6645C15.0717 11.3135 15.3549 10.8378 15.4142 10.1606C15.585 8.20759 13.786 6.80556 12.0004 6.80556C10.4932 6.80556 9.18797 7.75068 8.7435 9.09844C8.61377 9.49181 8.8275 9.91587 9.22087 10.0456C9.61425 10.1753 10.0383 9.96161 10.168 9.56823ZM12.7504 16.4381C12.7504 16.0239 12.4146 15.6881 12.0004 15.6881C11.5862 15.6881 11.2504 16.0239 11.2504 16.4381V16.4444C11.2504 16.8587 11.5862 17.1944 12.0004 17.1944C12.4146 17.1944 12.7504 16.8587 12.7504 16.4444V16.4381Z",
|
|
@@ -1614,19 +1519,19 @@ XoQuestionCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCircleF
|
|
|
1614
1519
|
//#endregion
|
|
1615
1520
|
//#region src/icons/XoQuestionCircleOutlineIcon.tsx
|
|
1616
1521
|
var XoQuestionCircleOutlineIcon = forwardRef((props, ref) => {
|
|
1617
|
-
return /* @__PURE__ */
|
|
1522
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1618
1523
|
ref,
|
|
1619
1524
|
viewBox: "0 0 24 24",
|
|
1620
1525
|
fill: "none",
|
|
1621
1526
|
stroke: "currentColor",
|
|
1622
1527
|
...props,
|
|
1623
|
-
children: [/* @__PURE__ */
|
|
1528
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1624
1529
|
d: "M12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20Z",
|
|
1625
1530
|
stroke: "currentColor",
|
|
1626
1531
|
strokeWidth: "1.5",
|
|
1627
1532
|
strokeLinecap: "round",
|
|
1628
1533
|
strokeLinejoin: "round"
|
|
1629
|
-
}), /* @__PURE__ */
|
|
1534
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1630
1535
|
d: "M12.0002 16.4444V16.4381M12.0002 14C12.0002 11.1429 14.5002 12 14.6668 10.0952C14.7891 8.69795 13.4729 7.55556 12.0002 7.55556C10.8061 7.55556 9.79537 8.30296 9.45557 9.33334",
|
|
1631
1536
|
stroke: "currentColor",
|
|
1632
1537
|
strokeWidth: "1.5",
|
|
@@ -1639,13 +1544,13 @@ XoQuestionCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCirc
|
|
|
1639
1544
|
//#endregion
|
|
1640
1545
|
//#region src/icons/XoRotateRightOutlineIcon.tsx
|
|
1641
1546
|
var XoRotateRightOutlineIcon = forwardRef((props, ref) => {
|
|
1642
|
-
return /* @__PURE__ */
|
|
1547
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1643
1548
|
ref,
|
|
1644
1549
|
viewBox: "0 0 24 24",
|
|
1645
1550
|
fill: "none",
|
|
1646
1551
|
stroke: "currentColor",
|
|
1647
1552
|
...props,
|
|
1648
|
-
children: /* @__PURE__ */
|
|
1553
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1649
1554
|
d: "M19.5465 14.6232C18.9701 16.2699 17.8776 17.6834 16.4337 18.6508C14.9898 19.6182 13.2726 20.087 11.5409 19.9867C9.80915 19.8864 8.15674 19.2223 6.83261 18.0946C5.50847 16.9668 4.58433 15.4365 4.19945 13.7342C3.81456 12.0318 3.98977 10.2497 4.69868 8.65632C5.40759 7.06292 6.61179 5.74457 8.12985 4.89992C9.6479 4.05526 11.3976 3.73005 13.1152 3.97328C16.0152 4.38395 17.9311 6.49969 20 8.36842M20 8.36842V3M20 8.36842H14.6667",
|
|
1650
1555
|
stroke: "currentColor",
|
|
1651
1556
|
strokeWidth: "1.5",
|
|
@@ -1658,12 +1563,12 @@ XoRotateRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRotateRightOutl
|
|
|
1658
1563
|
//#endregion
|
|
1659
1564
|
//#region src/icons/XoRouteOutlineIcon.tsx
|
|
1660
1565
|
var XoRouteOutlineIcon = forwardRef((props, ref) => {
|
|
1661
|
-
return /* @__PURE__ */
|
|
1566
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1662
1567
|
ref,
|
|
1663
1568
|
viewBox: "0 0 24 24",
|
|
1664
1569
|
fill: "none",
|
|
1665
1570
|
...props,
|
|
1666
|
-
children: /* @__PURE__ */
|
|
1571
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1667
1572
|
d: "M8.06251 17.0772L7.54068 17.6159L7.54622 17.6212L8.06251 17.0772ZM10.25 19.1551L9.77926 19.7389H9.77926L10.25 19.1551ZM13.75 19.2032L13.2829 18.6165L13.2814 18.6176L13.75 19.2032ZM15.9375 17.0502L16.4539 17.5943L16.4632 17.5851L15.9375 17.0502ZM5 11.1566H4.25C4.25 11.1668 4.25021 11.1771 4.25063 11.1873L5 11.1566ZM19 11.1566L19.7493 11.189C19.7498 11.1782 19.75 11.1674 19.75 11.1566H19ZM7.54622 17.6212C8.21808 18.2588 8.94281 19.0645 9.77926 19.7389L10.7208 18.5712C9.93804 17.9401 9.38079 17.2943 8.57879 16.5331L7.54622 17.6212ZM14.2171 19.79C14.6685 19.4307 15.0598 19.037 15.4176 18.6619C15.7855 18.2762 16.1033 17.9268 16.4538 17.5942L15.4212 16.5062C15.0348 16.8729 14.6688 17.2737 14.3322 17.6265C13.9855 17.9899 13.6515 18.3231 13.2829 18.6165L14.2171 19.79ZM4.25063 11.1873C4.35451 13.7186 5.88592 16.0131 7.5407 17.6159L8.58431 16.5384C7.06331 15.0652 5.83087 13.1118 5.74937 11.1258L4.25063 11.1873ZM16.4632 17.5851C18.1029 15.9739 19.6392 13.7348 19.7493 11.189L18.2507 11.1241C18.1644 13.1187 16.935 15.0185 15.4118 16.5152L16.4632 17.5851ZM9.77926 19.7389C10.1567 20.0432 10.5336 20.2898 10.8946 20.4628C11.2466 20.6316 11.6294 20.7525 12.0051 20.75L11.9949 19.25C11.9331 19.2504 11.7847 19.2261 11.543 19.1102C11.3102 18.9986 11.0309 18.8213 10.7208 18.5712L9.77926 19.7389ZM12.0051 20.75C12.6808 20.7454 13.4792 20.3804 14.2186 19.7888L13.2814 18.6176C12.6707 19.1063 12.1942 19.2486 11.9949 19.25L12.0051 20.75ZM19.75 11.1566C19.75 8.89619 19.0432 6.90944 17.6837 5.48231C16.3195 4.05034 14.3627 3.25 12 3.25V4.75C14.0124 4.75 15.5555 5.42306 16.5976 6.51694C17.6443 7.61566 18.25 9.20718 18.25 11.1566H19.75ZM12 3.25C9.6374 3.25 7.68055 4.05034 6.31638 5.48231C4.95681 6.90943 4.25 8.89619 4.25 11.1566H5.75C5.75 9.20719 6.35573 7.61566 7.40243 6.51695C8.44453 5.42307 9.9877 4.75 12 4.75V3.25ZM13.75 10.5C13.75 11.4665 12.9665 12.25 12 12.25V13.75C13.7949 13.75 15.25 12.2949 15.25 10.5H13.75ZM12 12.25C11.0335 12.25 10.25 11.4665 10.25 10.5H8.75C8.75 12.2949 10.2051 13.75 12 13.75V12.25ZM10.25 10.5C10.25 9.5335 11.0335 8.75 12 8.75V7.25C10.2051 7.25 8.75 8.70507 8.75 10.5H10.25ZM12 8.75C12.9665 8.75 13.75 9.5335 13.75 10.5H15.25C15.25 8.70507 13.7949 7.25 12 7.25V8.75Z",
|
|
1668
1573
|
fill: "currentColor"
|
|
1669
1574
|
})
|
|
@@ -1673,13 +1578,13 @@ XoRouteOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRouteOutlineIcon";
|
|
|
1673
1578
|
//#endregion
|
|
1674
1579
|
//#region src/icons/XoScreenOutlineIcon.tsx
|
|
1675
1580
|
var XoScreenOutlineIcon = forwardRef((props, ref) => {
|
|
1676
|
-
return /* @__PURE__ */
|
|
1581
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1677
1582
|
ref,
|
|
1678
1583
|
viewBox: "0 0 24 24",
|
|
1679
1584
|
fill: "none",
|
|
1680
1585
|
stroke: "currentColor",
|
|
1681
1586
|
...props,
|
|
1682
|
-
children: /* @__PURE__ */
|
|
1587
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1683
1588
|
d: "M12 20H16M12 20H8M12 20V16M12 16H5C4.44772 16 4 15.5523 4 15V5C4 4.44771 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V15C20 15.5523 19.5523 16 19 16H12Z",
|
|
1684
1589
|
stroke: "currentColor",
|
|
1685
1590
|
strokeWidth: "1.5",
|
|
@@ -1692,12 +1597,12 @@ XoScreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoScreenOutlineIcon";
|
|
|
1692
1597
|
//#endregion
|
|
1693
1598
|
//#region src/icons/XoSearchFillIcon.tsx
|
|
1694
1599
|
var XoSearchFillIcon = forwardRef((props, ref) => {
|
|
1695
|
-
return /* @__PURE__ */
|
|
1600
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1696
1601
|
ref,
|
|
1697
1602
|
viewBox: "0 0 24 24",
|
|
1698
1603
|
fill: "none",
|
|
1699
1604
|
...props,
|
|
1700
|
-
children: /* @__PURE__ */
|
|
1605
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1701
1606
|
d: "M18.9393 21.0607C19.5251 21.6464 20.4749 21.6464 21.0607 21.0607C21.6464 20.4749 21.6464 19.5251 21.0607 18.9393L18.9393 21.0607ZM16.5 11C16.5 14.0376 14.0376 16.5 11 16.5V19.5C15.6944 19.5 19.5 15.6944 19.5 11H16.5ZM11 16.5C7.96243 16.5 5.5 14.0376 5.5 11H2.5C2.5 15.6944 6.30558 19.5 11 19.5V16.5ZM5.5 11C5.5 7.96243 7.96243 5.5 11 5.5V2.5C6.30558 2.5 2.5 6.30558 2.5 11H5.5ZM11 5.5C14.0376 5.5 16.5 7.96243 16.5 11H19.5C19.5 6.30558 15.6944 2.5 11 2.5V5.5ZM14.8891 17.0104L14.9393 17.0607L17.0607 14.9393L17.0104 14.8891L14.8891 17.0104ZM14.9393 17.0607L18.9393 21.0607L21.0607 18.9393L17.0607 14.9393L14.9393 17.0607Z",
|
|
1702
1607
|
fill: "currentColor"
|
|
1703
1608
|
})
|
|
@@ -1707,12 +1612,12 @@ XoSearchFillIcon.displayName = "@xmart/xorder-ui-icons/XoSearchFillIcon";
|
|
|
1707
1612
|
//#endregion
|
|
1708
1613
|
//#region src/icons/XoSearchOutlineIcon.tsx
|
|
1709
1614
|
var XoSearchOutlineIcon = forwardRef((props, ref) => {
|
|
1710
|
-
return /* @__PURE__ */
|
|
1615
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1711
1616
|
ref,
|
|
1712
1617
|
viewBox: "0 0 24 24",
|
|
1713
1618
|
fill: "none",
|
|
1714
1619
|
...props,
|
|
1715
|
-
children: /* @__PURE__ */
|
|
1620
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1716
1621
|
d: "M19.4697 20.5303C19.7626 20.8232 20.2374 20.8232 20.5303 20.5303C20.8232 20.2374 20.8232 19.7626 20.5303 19.4697L19.4697 20.5303ZM17.25 11C17.25 14.4518 14.4518 17.25 11 17.25V18.75C15.2802 18.75 18.75 15.2802 18.75 11H17.25ZM11 17.25C7.54822 17.25 4.75 14.4518 4.75 11H3.25C3.25 15.2802 6.71979 18.75 11 18.75V17.25ZM4.75 11C4.75 7.54822 7.54822 4.75 11 4.75V3.25C6.71979 3.25 3.25 6.71979 3.25 11H4.75ZM11 4.75C14.4518 4.75 17.25 7.54822 17.25 11H18.75C18.75 6.71979 15.2802 3.25 11 3.25V4.75ZM15.4194 16.4801L15.4697 16.5303L16.5303 15.4697L16.4801 15.4194L15.4194 16.4801ZM15.4697 16.5303L19.4697 20.5303L20.5303 19.4697L16.5303 15.4697L15.4697 16.5303Z",
|
|
1717
1622
|
fill: "currentColor"
|
|
1718
1623
|
})
|
|
@@ -1722,16 +1627,16 @@ XoSearchOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSearchOutlineIcon";
|
|
|
1722
1627
|
//#endregion
|
|
1723
1628
|
//#region src/icons/XoSendFillIcon.tsx
|
|
1724
1629
|
var XoSendFillIcon = forwardRef((props, ref) => {
|
|
1725
|
-
return /* @__PURE__ */
|
|
1630
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1726
1631
|
ref,
|
|
1727
1632
|
viewBox: "0 0 24 24",
|
|
1728
1633
|
fill: "none",
|
|
1729
1634
|
stroke: "currentColor",
|
|
1730
1635
|
...props,
|
|
1731
|
-
children: [/* @__PURE__ */
|
|
1636
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1732
1637
|
d: "M20 4L4 10.5L10.5 13.5L13.5 20L20 4Z",
|
|
1733
1638
|
fill: "currentColor"
|
|
1734
|
-
}), /* @__PURE__ */
|
|
1639
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1735
1640
|
d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
|
|
1736
1641
|
stroke: "currentColor",
|
|
1737
1642
|
strokeWidth: "1.5",
|
|
@@ -1744,13 +1649,13 @@ XoSendFillIcon.displayName = "@xmart/xorder-ui-icons/XoSendFillIcon";
|
|
|
1744
1649
|
//#endregion
|
|
1745
1650
|
//#region src/icons/XoSendOutlineIcon.tsx
|
|
1746
1651
|
var XoSendOutlineIcon = forwardRef((props, ref) => {
|
|
1747
|
-
return /* @__PURE__ */
|
|
1652
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1748
1653
|
ref,
|
|
1749
1654
|
viewBox: "0 0 24 24",
|
|
1750
1655
|
fill: "none",
|
|
1751
1656
|
stroke: "currentColor",
|
|
1752
1657
|
...props,
|
|
1753
|
-
children: /* @__PURE__ */
|
|
1658
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1754
1659
|
d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
|
|
1755
1660
|
stroke: "currentColor",
|
|
1756
1661
|
strokeWidth: "1.5",
|
|
@@ -1763,17 +1668,17 @@ XoSendOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSendOutlineIcon";
|
|
|
1763
1668
|
//#endregion
|
|
1764
1669
|
//#region src/icons/XoSettingsOutlineIcon.tsx
|
|
1765
1670
|
var XoSettingsOutlineIcon = forwardRef((props, ref) => {
|
|
1766
|
-
return /* @__PURE__ */
|
|
1671
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1767
1672
|
ref,
|
|
1768
1673
|
viewBox: "0 0 24 24",
|
|
1769
1674
|
fill: "none",
|
|
1770
1675
|
stroke: "currentColor",
|
|
1771
1676
|
...props,
|
|
1772
|
-
children: [/* @__PURE__ */
|
|
1677
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1773
1678
|
d: "M11.1111 4H12.8889C13.3798 4 13.7778 4.39797 13.7778 4.88889V5.39448C13.7778 5.77474 14.033 6.10511 14.3842 6.25092C14.7355 6.39678 15.1446 6.34119 15.4136 6.0722L15.7712 5.71459C16.1183 5.36745 16.6811 5.36745 17.0283 5.71459L18.2854 6.97166C18.6325 7.3188 18.6325 7.88161 18.2854 8.22874L17.9278 8.58631C17.6588 8.85532 17.6032 9.26442 17.7491 9.61577C17.8949 9.96699 18.2253 10.2222 18.6056 10.2222L19.1111 10.2222C19.602 10.2222 20 10.6202 20 11.1111V12.8889C20 13.3798 19.602 13.7778 19.1111 13.7778H18.6055C18.2253 13.7778 17.8949 14.033 17.7491 14.3842C17.6032 14.7356 17.6588 15.1446 17.9278 15.4136L18.2854 15.7712C18.6325 16.1184 18.6325 16.6812 18.2854 17.0283L17.0283 18.2854C16.6812 18.6325 16.1183 18.6325 15.7712 18.2854L15.4136 17.9278C15.1446 17.6588 14.7356 17.6032 14.3842 17.7491C14.033 17.8949 13.7778 18.2253 13.7778 18.6055V19.1111C13.7778 19.602 13.3798 20 12.8889 20H11.1111C10.6202 20 10.2222 19.602 10.2222 19.1111V18.6056C10.2222 18.2253 9.96699 17.8949 9.61577 17.7491C9.26442 17.6032 8.85532 17.6588 8.58631 17.9278L8.22873 18.2854C7.8816 18.6325 7.31878 18.6325 6.97165 18.2854L5.71457 17.0283C5.36744 16.6812 5.36744 16.1183 5.71457 15.7712L6.0722 15.4136C6.34119 15.1446 6.39678 14.7355 6.25092 14.3842C6.10511 14.033 5.77474 13.7778 5.39448 13.7778H4.88889C4.39797 13.7778 4 13.3798 4 12.8889V11.1111C4 10.6202 4.39797 10.2222 4.88889 10.2222L5.39446 10.2222C5.77474 10.2222 6.10511 9.967 6.25093 9.61579C6.3968 9.26445 6.34121 8.85537 6.07221 8.58637L5.71459 8.22875C5.36745 7.88161 5.36745 7.3188 5.71459 6.97167L6.97166 5.71459C7.3188 5.36746 7.88161 5.36746 8.22874 5.71459L8.58636 6.07221C8.85536 6.34121 9.26444 6.3968 9.61579 6.25093C9.967 6.10511 10.2222 5.77474 10.2222 5.39446V4.88889C10.2222 4.39797 10.6202 4 11.1111 4Z",
|
|
1774
1679
|
stroke: "currentColor",
|
|
1775
1680
|
strokeWidth: "1.5"
|
|
1776
|
-
}), /* @__PURE__ */
|
|
1681
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1777
1682
|
d: "M13.7778 12C13.7778 12.9818 12.9818 13.7778 12 13.7778C11.0182 13.7778 10.2222 12.9818 10.2222 12C10.2222 11.0182 11.0182 10.2222 12 10.2222C12.9818 10.2222 13.7778 11.0182 13.7778 12Z",
|
|
1778
1683
|
stroke: "currentColor",
|
|
1779
1684
|
strokeWidth: "1.5"
|
|
@@ -1784,13 +1689,13 @@ XoSettingsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSettingsOutlineIco
|
|
|
1784
1689
|
//#endregion
|
|
1785
1690
|
//#region src/icons/XoShareOutlineIcon.tsx
|
|
1786
1691
|
var XoShareOutlineIcon = forwardRef((props, ref) => {
|
|
1787
|
-
return /* @__PURE__ */
|
|
1692
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1788
1693
|
ref,
|
|
1789
1694
|
viewBox: "0 0 24 24",
|
|
1790
1695
|
fill: "none",
|
|
1791
1696
|
stroke: "currentColor",
|
|
1792
1697
|
...props,
|
|
1793
|
-
children: /* @__PURE__ */
|
|
1698
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1794
1699
|
d: "M20 13V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 13M16 8L12 4M12 4L8 8M12 4L12 16",
|
|
1795
1700
|
stroke: "currentColor",
|
|
1796
1701
|
strokeWidth: "1.5",
|
|
@@ -1803,13 +1708,13 @@ XoShareOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoShareOutlineIcon";
|
|
|
1803
1708
|
//#endregion
|
|
1804
1709
|
//#region src/icons/XoSmartphoneOutlineIcon.tsx
|
|
1805
1710
|
var XoSmartphoneOutlineIcon = forwardRef((props, ref) => {
|
|
1806
|
-
return /* @__PURE__ */
|
|
1711
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1807
1712
|
ref,
|
|
1808
1713
|
viewBox: "0 0 24 24",
|
|
1809
1714
|
fill: "none",
|
|
1810
1715
|
stroke: "currentColor",
|
|
1811
1716
|
...props,
|
|
1812
|
-
children: /* @__PURE__ */
|
|
1717
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1813
1718
|
d: "M12 18.01V18M8 3H16C17.1046 3 18 3.89543 18 5V19C18 20.1046 17.1046 21 16 21H8C6.89543 21 6 20.1046 6 19V5C6 3.89543 6.89543 3 8 3Z",
|
|
1814
1719
|
stroke: "currentColor",
|
|
1815
1720
|
strokeWidth: "1.5",
|
|
@@ -1822,18 +1727,18 @@ XoSmartphoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSmartphoneOutlin
|
|
|
1822
1727
|
//#endregion
|
|
1823
1728
|
//#region src/icons/XoSortDownFillIcon.tsx
|
|
1824
1729
|
var XoSortDownFillIcon = forwardRef((props, ref) => {
|
|
1825
|
-
return /* @__PURE__ */
|
|
1730
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1826
1731
|
ref,
|
|
1827
1732
|
viewBox: "0 0 24 24",
|
|
1828
1733
|
fill: "none",
|
|
1829
1734
|
stroke: "currentColor",
|
|
1830
1735
|
...props,
|
|
1831
|
-
children: [/* @__PURE__ */
|
|
1736
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1832
1737
|
d: "M12 20.5C11.8328 20.5 11.6767 20.4164 11.584 20.2773L7.58398 14.2773C7.4817 14.1239 7.47256 13.9262 7.55957 13.7637C7.64666 13.6014 7.81578 13.5 8 13.5L16 13.5C16.1842 13.5 16.3533 13.6014 16.4404 13.7637C16.5274 13.9263 16.5183 14.1239 16.416 14.2773L12.416 20.2773L12.3779 20.3271C12.2836 20.4361 12.1461 20.5 12 20.5Z",
|
|
1833
1738
|
fill: "currentColor",
|
|
1834
1739
|
stroke: "currentColor",
|
|
1835
1740
|
strokeLinejoin: "round"
|
|
1836
|
-
}), /* @__PURE__ */
|
|
1741
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1837
1742
|
d: "M12 3.5C12.1672 3.5 12.3233 3.58356 12.416 3.72266L16.416 9.72266C16.5183 9.87608 16.5274 10.0737 16.4404 10.2363C16.3533 10.3986 16.1842 10.5 16 10.5H8C7.81578 10.5 7.64666 10.3986 7.55957 10.2363C7.47256 10.0737 7.4817 9.87608 7.58398 9.72266L11.584 3.72266L11.6221 3.67285C11.7164 3.56391 11.8539 3.5 12 3.5Z",
|
|
1838
1743
|
fill: "currentColor",
|
|
1839
1744
|
stroke: "currentColor",
|
|
@@ -1846,13 +1751,13 @@ XoSortDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortDownFillIcon";
|
|
|
1846
1751
|
//#endregion
|
|
1847
1752
|
//#region src/icons/XoSortFillIcon.tsx
|
|
1848
1753
|
var XoSortFillIcon = forwardRef((props, ref) => {
|
|
1849
|
-
return /* @__PURE__ */
|
|
1754
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1850
1755
|
ref,
|
|
1851
1756
|
viewBox: "0 0 24 24",
|
|
1852
1757
|
fill: "none",
|
|
1853
1758
|
stroke: "currentColor",
|
|
1854
1759
|
...props,
|
|
1855
|
-
children: /* @__PURE__ */
|
|
1760
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1856
1761
|
d: "M11.576 17.265C11.6674 17.4112 11.8276 17.5 12 17.5C12.1724 17.5 12.3326 17.4112 12.424 17.265L17.424 9.265C17.5203 9.11087 17.5254 8.91659 17.4373 8.75762C17.3492 8.59864 17.1818 8.5 17 8.5L7 8.5C6.81824 8.5 6.65079 8.59864 6.56268 8.75762C6.47457 8.91659 6.47967 9.11087 6.576 9.265L11.576 17.265Z",
|
|
1857
1762
|
fill: "currentColor",
|
|
1858
1763
|
stroke: "currentColor",
|
|
@@ -1864,13 +1769,13 @@ XoSortFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortFillIcon";
|
|
|
1864
1769
|
//#endregion
|
|
1865
1770
|
//#region src/icons/XoSortOrderOutlineIcon.tsx
|
|
1866
1771
|
var XoSortOrderOutlineIcon = forwardRef((props, ref) => {
|
|
1867
|
-
return /* @__PURE__ */
|
|
1772
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1868
1773
|
ref,
|
|
1869
1774
|
viewBox: "0 0 24 24",
|
|
1870
1775
|
fill: "none",
|
|
1871
1776
|
stroke: "currentColor",
|
|
1872
1777
|
...props,
|
|
1873
|
-
children: /* @__PURE__ */
|
|
1778
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1874
1779
|
d: "M15.5 5V19M15.5 5L18 7.5M15.5 5L13 7.5M8.5 19V5M8.5 19L6 16.5M8.5 19L11 16.5",
|
|
1875
1780
|
stroke: "currentColor",
|
|
1876
1781
|
strokeWidth: "1.5",
|
|
@@ -1883,18 +1788,18 @@ XoSortOrderOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSortOrderOutlineI
|
|
|
1883
1788
|
//#endregion
|
|
1884
1789
|
//#region src/icons/XoSortUnselectedFillIcon.tsx
|
|
1885
1790
|
var XoSortUnselectedFillIcon = forwardRef((props, ref) => {
|
|
1886
|
-
return /* @__PURE__ */
|
|
1791
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1887
1792
|
ref,
|
|
1888
1793
|
viewBox: "0 0 24 24",
|
|
1889
1794
|
fill: "none",
|
|
1890
1795
|
stroke: "currentColor",
|
|
1891
1796
|
...props,
|
|
1892
|
-
children: [/* @__PURE__ */
|
|
1797
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1893
1798
|
d: "M11.584 20.2773C11.6767 20.4164 11.8328 20.5 12 20.5C12.1672 20.5 12.3233 20.4164 12.416 20.2773L16.416 14.2774C16.5183 14.1239 16.5278 13.9267 16.4408 13.7641C16.3538 13.6015 16.1844 13.5 16 13.5L8 13.5C7.8156 13.5 7.64617 13.6015 7.55916 13.7641C7.47215 13.9266 7.48169 14.1239 7.58398 14.2773L11.584 20.2773Z",
|
|
1894
1799
|
fill: "currentColor",
|
|
1895
1800
|
stroke: "currentColor",
|
|
1896
1801
|
strokeLinejoin: "round"
|
|
1897
|
-
}), /* @__PURE__ */
|
|
1802
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1898
1803
|
d: "M12.416 3.72265C12.3233 3.58355 12.1672 3.5 12 3.5C11.8328 3.5 11.6767 3.58355 11.584 3.72265L7.58397 9.72265C7.48169 9.87608 7.47215 10.0734 7.55916 10.2359C7.64617 10.3985 7.8156 10.5 8 10.5H16C16.1844 10.5 16.3538 10.3985 16.4408 10.2359C16.5278 10.0734 16.5183 9.87608 16.416 9.72265L12.416 3.72265Z",
|
|
1899
1804
|
fill: "currentColor",
|
|
1900
1805
|
stroke: "currentColor",
|
|
@@ -1906,19 +1811,19 @@ XoSortUnselectedFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUnselectedF
|
|
|
1906
1811
|
//#endregion
|
|
1907
1812
|
//#region src/icons/XoSortUpFillIcon.tsx
|
|
1908
1813
|
var XoSortUpFillIcon = forwardRef((props, ref) => {
|
|
1909
|
-
return /* @__PURE__ */
|
|
1814
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1910
1815
|
ref,
|
|
1911
1816
|
viewBox: "0 0 24 24",
|
|
1912
1817
|
fill: "none",
|
|
1913
1818
|
stroke: "currentColor",
|
|
1914
1819
|
...props,
|
|
1915
|
-
children: [/* @__PURE__ */
|
|
1820
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1916
1821
|
d: "M12 20.5C11.8328 20.5 11.6767 20.4164 11.584 20.2773L7.58398 14.2773C7.4817 14.1239 7.47256 13.9262 7.55957 13.7637C7.64666 13.6014 7.81578 13.5 8 13.5L16 13.5C16.1842 13.5 16.3533 13.6014 16.4404 13.7637C16.5274 13.9263 16.5183 14.1239 16.416 14.2773L12.416 20.2773L12.3779 20.3271C12.2836 20.4361 12.1461 20.5 12 20.5Z",
|
|
1917
1822
|
fill: "currentColor",
|
|
1918
1823
|
stroke: "currentColor",
|
|
1919
1824
|
strokeLinejoin: "round",
|
|
1920
1825
|
opacity: "0.3"
|
|
1921
|
-
}), /* @__PURE__ */
|
|
1826
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1922
1827
|
d: "M12 3.5C12.1672 3.5 12.3233 3.58356 12.416 3.72266L16.416 9.72266C16.5183 9.87608 16.5274 10.0737 16.4404 10.2363C16.3533 10.3986 16.1842 10.5 16 10.5H8C7.81578 10.5 7.64666 10.3986 7.55957 10.2363C7.47256 10.0737 7.4817 9.87608 7.58398 9.72266L11.584 3.72266L11.6221 3.67285C11.7164 3.56391 11.8539 3.5 12 3.5Z",
|
|
1923
1828
|
fill: "currentColor",
|
|
1924
1829
|
stroke: "currentColor",
|
|
@@ -1930,16 +1835,16 @@ XoSortUpFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUpFillIcon";
|
|
|
1930
1835
|
//#endregion
|
|
1931
1836
|
//#region src/icons/XoSpeakerOffFillIcon.tsx
|
|
1932
1837
|
var XoSpeakerOffFillIcon = forwardRef((props, ref) => {
|
|
1933
|
-
return /* @__PURE__ */
|
|
1838
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1934
1839
|
ref,
|
|
1935
1840
|
viewBox: "0 0 24 24",
|
|
1936
1841
|
fill: "none",
|
|
1937
1842
|
stroke: "currentColor",
|
|
1938
1843
|
...props,
|
|
1939
|
-
children: [/* @__PURE__ */
|
|
1844
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1940
1845
|
d: "M7.57895 8.44444L13 4V20L7.57895 15.5556H5.78947C4.80117 15.5556 4 14.7596 4 13.7778V10.2222C4 9.24038 4.80117 8.44444 5.78947 8.44444H7.57895Z",
|
|
1941
1846
|
fill: "currentColor"
|
|
1942
|
-
}), /* @__PURE__ */
|
|
1847
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1943
1848
|
d: "M16 10L18 12M20 14L18 12M20 10L18 12M16 14L18 12M13 4L7.57895 8.44444H5.78947C4.80117 8.44444 4 9.24038 4 10.2222V13.7778C4 14.7596 4.80117 15.5556 5.78947 15.5556H7.57895L13 20V4Z",
|
|
1944
1849
|
stroke: "currentColor",
|
|
1945
1850
|
strokeWidth: "1.5",
|
|
@@ -1952,16 +1857,16 @@ XoSpeakerOffFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOffFillIcon"
|
|
|
1952
1857
|
//#endregion
|
|
1953
1858
|
//#region src/icons/XoSpeakerOnFillIcon.tsx
|
|
1954
1859
|
var XoSpeakerOnFillIcon = forwardRef((props, ref) => {
|
|
1955
|
-
return /* @__PURE__ */
|
|
1860
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
1956
1861
|
ref,
|
|
1957
1862
|
viewBox: "0 0 24 24",
|
|
1958
1863
|
fill: "none",
|
|
1959
1864
|
stroke: "currentColor",
|
|
1960
1865
|
...props,
|
|
1961
|
-
children: [/* @__PURE__ */
|
|
1866
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
1962
1867
|
d: "M7.55556 8.44444L13 4V20L7.55556 15.5556H5.77778C4.79594 15.5556 4 14.7596 4 13.7778V10.2222C4 9.24038 4.79594 8.44444 5.77778 8.44444H7.55556Z",
|
|
1963
1868
|
fill: "currentColor"
|
|
1964
|
-
}), /* @__PURE__ */
|
|
1869
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
1965
1870
|
d: "M15.5556 9.33333C16 9.77778 16.4444 10.6667 16.4444 12C16.4444 13.3333 16 14.2222 15.5556 14.6667M18.2222 6.66667C19.5556 8 20 10.2222 20 12C20 13.7778 19.5556 16 18.2222 17.3333M13 4L7.55556 8.44444H5.77778C4.79594 8.44444 4 9.24038 4 10.2222V13.7778C4 14.7596 4.79594 15.5556 5.77778 15.5556H7.55556L13 20V4Z",
|
|
1966
1871
|
stroke: "currentColor",
|
|
1967
1872
|
strokeWidth: "1.5",
|
|
@@ -1974,13 +1879,13 @@ XoSpeakerOnFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOnFillIcon";
|
|
|
1974
1879
|
//#endregion
|
|
1975
1880
|
//#region src/icons/XoStarFillIcon.tsx
|
|
1976
1881
|
var XoStarFillIcon = forwardRef((props, ref) => {
|
|
1977
|
-
return /* @__PURE__ */
|
|
1882
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1978
1883
|
ref,
|
|
1979
1884
|
viewBox: "0 0 24 24",
|
|
1980
1885
|
fill: "none",
|
|
1981
1886
|
stroke: "currentColor",
|
|
1982
1887
|
...props,
|
|
1983
|
-
children: /* @__PURE__ */
|
|
1888
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
1984
1889
|
d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
|
|
1985
1890
|
fill: "currentColor",
|
|
1986
1891
|
stroke: "currentColor",
|
|
@@ -1994,13 +1899,13 @@ XoStarFillIcon.displayName = "@xmart/xorder-ui-icons/XoStarFillIcon";
|
|
|
1994
1899
|
//#endregion
|
|
1995
1900
|
//#region src/icons/XoStarOutlineIcon.tsx
|
|
1996
1901
|
var XoStarOutlineIcon = forwardRef((props, ref) => {
|
|
1997
|
-
return /* @__PURE__ */
|
|
1902
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
1998
1903
|
ref,
|
|
1999
1904
|
viewBox: "0 0 24 24",
|
|
2000
1905
|
fill: "none",
|
|
2001
1906
|
stroke: "currentColor",
|
|
2002
1907
|
...props,
|
|
2003
|
-
children: /* @__PURE__ */
|
|
1908
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2004
1909
|
d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
|
|
2005
1910
|
stroke: "currentColor",
|
|
2006
1911
|
strokeWidth: "1.5",
|
|
@@ -2013,17 +1918,17 @@ XoStarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoStarOutlineIcon";
|
|
|
2013
1918
|
//#endregion
|
|
2014
1919
|
//#region src/icons/XoSwipeDownFillIcon.tsx
|
|
2015
1920
|
var XoSwipeDownFillIcon = forwardRef((props, ref) => {
|
|
2016
|
-
return /* @__PURE__ */
|
|
1921
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
2017
1922
|
ref,
|
|
2018
1923
|
viewBox: "0 0 24 24",
|
|
2019
1924
|
fill: "none",
|
|
2020
1925
|
...props,
|
|
2021
|
-
children: [/* @__PURE__ */
|
|
1926
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
2022
1927
|
fillRule: "evenodd",
|
|
2023
1928
|
clipRule: "evenodd",
|
|
2024
1929
|
d: "M4 7C4 6.44772 4.44772 6 5 6H19C19.5523 6 20 6.44772 20 7C20 7.55228 19.5523 8 19 8H5C4.44772 8 4 7.55228 4 7ZM13.5 12C13.5 11.4477 13.9477 11 14.5 11H19C19.5523 11 20 11.4477 20 12C20 12.5523 19.5523 13 19 13H14.5C13.9477 13 13.5 12.5523 13.5 12ZM4 17C4 16.4477 4.44772 16 5 16H19C19.5523 16 20 16.4477 20 17C20 17.5523 19.5523 18 19 18H5C4.44772 18 4 17.5523 4 17Z",
|
|
2025
1930
|
fill: "currentColor"
|
|
2026
|
-
}), /* @__PURE__ */
|
|
1931
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
2027
1932
|
d: "M8.94598 14.5045C8.70763 14.7693 8.29237 14.7693 8.05402 14.5045L4.90124 11.0014C4.55374 10.6153 4.82775 10 5.34722 10L11.6528 10C12.1722 10 12.4463 10.6153 12.0988 11.0014L8.94598 14.5045Z",
|
|
2028
1933
|
fill: "currentColor"
|
|
2029
1934
|
})]
|
|
@@ -2033,13 +1938,13 @@ XoSwipeDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeDownFillIcon";
|
|
|
2033
1938
|
//#endregion
|
|
2034
1939
|
//#region src/icons/XoSwipeOutlineIcon.tsx
|
|
2035
1940
|
var XoSwipeOutlineIcon = forwardRef((props, ref) => {
|
|
2036
|
-
return /* @__PURE__ */
|
|
1941
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2037
1942
|
ref,
|
|
2038
1943
|
viewBox: "0 0 24 24",
|
|
2039
1944
|
fill: "none",
|
|
2040
1945
|
stroke: "currentColor",
|
|
2041
1946
|
...props,
|
|
2042
|
-
children: /* @__PURE__ */
|
|
1947
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2043
1948
|
d: "M4 18H20M4 12H20M4 6H20",
|
|
2044
1949
|
stroke: "currentColor",
|
|
2045
1950
|
strokeWidth: "1.5",
|
|
@@ -2052,17 +1957,17 @@ XoSwipeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeOutlineIcon";
|
|
|
2052
1957
|
//#endregion
|
|
2053
1958
|
//#region src/icons/XoSwipe_upFillIcon.tsx
|
|
2054
1959
|
var XoSwipe_upFillIcon = forwardRef((props, ref) => {
|
|
2055
|
-
return /* @__PURE__ */
|
|
1960
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
2056
1961
|
ref,
|
|
2057
1962
|
viewBox: "0 0 24 24",
|
|
2058
1963
|
fill: "none",
|
|
2059
1964
|
...props,
|
|
2060
|
-
children: [/* @__PURE__ */
|
|
1965
|
+
children: [/* @__PURE__ */ jsx("path", {
|
|
2061
1966
|
fillRule: "evenodd",
|
|
2062
1967
|
clipRule: "evenodd",
|
|
2063
1968
|
d: "M4 7C4 6.44772 4.44772 6 5 6H19C19.5523 6 20 6.44772 20 7C20 7.55228 19.5523 8 19 8H5C4.44772 8 4 7.55228 4 7ZM4 12C4 11.4477 4.44772 11 5 11H9.5C10.0523 11 10.5 11.4477 10.5 12C10.5 12.5523 10.0523 13 9.5 13H5C4.44772 13 4 12.5523 4 12ZM4 17C4 16.4477 4.44772 16 5 16H19C19.5523 16 20 16.4477 20 17C20 17.5523 19.5523 18 19 18H5C4.44772 18 4 17.5523 4 17Z",
|
|
2064
1969
|
fill: "currentColor"
|
|
2065
|
-
}), /* @__PURE__ */
|
|
1970
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
2066
1971
|
d: "M15.054 9.49553C15.2924 9.2307 15.7076 9.2307 15.946 9.49553L19.0988 12.9986C19.4463 13.3847 19.1722 14 18.6528 14H12.3472C11.8278 14 11.5537 13.3847 11.9012 12.9986L15.054 9.49553Z",
|
|
2067
1972
|
fill: "currentColor"
|
|
2068
1973
|
})]
|
|
@@ -2070,40 +1975,40 @@ var XoSwipe_upFillIcon = forwardRef((props, ref) => {
|
|
|
2070
1975
|
});
|
|
2071
1976
|
XoSwipe_upFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipe_upFillIcon";
|
|
2072
1977
|
//#endregion
|
|
2073
|
-
//#region src/icons/
|
|
2074
|
-
var
|
|
2075
|
-
return /* @__PURE__ */
|
|
1978
|
+
//#region src/icons/XoTranslateOutlineIcon.tsx
|
|
1979
|
+
var XoTranslateOutlineIcon = forwardRef((props, ref) => {
|
|
1980
|
+
return /* @__PURE__ */ jsxs(SvgIcon, {
|
|
2076
1981
|
ref,
|
|
2077
1982
|
viewBox: "0 0 24 24",
|
|
2078
1983
|
fill: "none",
|
|
2079
1984
|
...props,
|
|
2080
1985
|
children: [
|
|
2081
|
-
/* @__PURE__ */
|
|
1986
|
+
/* @__PURE__ */ jsx("path", {
|
|
2082
1987
|
d: "M10.4981 11.9004C10.4709 11.7639 9.53181 7.06868 9.50202 6.91989C9.45551 6.68711 9.25107 6.51953 9.01367 6.51953H8.01758C7.78018 6.51953 7.57574 6.68711 7.52923 6.91989C7.49898 7.0712 6.55896 11.7712 6.53313 11.9004C6.47918 12.1701 6.65412 12.4325 6.92383 12.4864C7.19354 12.5404 7.45595 12.3654 7.50987 12.0957L7.82822 10.5039H9.20303L9.52138 12.0957C9.57534 12.3656 9.83784 12.5404 10.1074 12.4864C10.3771 12.4325 10.5521 12.1701 10.4981 11.9004ZM8.02744 9.50781L8.42588 7.51562H8.60537L9.00381 9.50781H8.02744Z",
|
|
2083
1988
|
fill: "currentColor"
|
|
2084
1989
|
}),
|
|
2085
|
-
/* @__PURE__ */
|
|
1990
|
+
/* @__PURE__ */ jsx("path", {
|
|
2086
1991
|
d: "M18.4766 10.5039H16.9824V10.0059C16.9824 9.7308 16.7594 9.50781 16.4844 9.50781C16.2093 9.50781 15.9863 9.7308 15.9863 10.0059V10.5039H14.4922C14.2171 10.5039 13.9941 10.7269 13.9941 11.002C13.9941 11.277 14.2171 11.5 14.4922 11.5H14.6127C14.8965 12.4168 15.3238 13.1205 15.7939 13.6844C15.4113 14.0345 15.024 14.3215 14.6791 14.5974C14.4643 14.7692 14.4295 15.0827 14.6014 15.2974C14.7733 15.5123 15.0867 15.547 15.3014 15.3752C15.6482 15.0977 16.064 14.7894 16.4844 14.4035C16.9051 14.7896 17.3216 15.0986 17.6674 15.3752C17.8822 15.5471 18.1956 15.5122 18.3674 15.2974C18.5392 15.0827 18.5044 14.7692 18.2896 14.5974C17.9456 14.3221 17.5579 14.0348 17.1748 13.6844C17.645 13.1205 18.0722 12.4168 18.356 11.5H18.4766C18.7516 11.5 18.9746 11.277 18.9746 11.002C18.9746 10.7269 18.7516 10.5039 18.4766 10.5039ZM16.4844 12.9525C16.1665 12.5534 15.8804 12.077 15.6648 11.4967H17.3039C17.0883 12.077 16.8023 12.5534 16.4844 12.9525Z",
|
|
2087
1992
|
fill: "currentColor"
|
|
2088
1993
|
}),
|
|
2089
|
-
/* @__PURE__ */
|
|
1994
|
+
/* @__PURE__ */ jsx("path", {
|
|
2090
1995
|
d: "M19.5059 6.02148H12.3207L12.1072 4.3088C12.0139 3.56266 11.3765 3 10.6246 3H5.49414C4.67027 3 4 3.67027 4 4.49414V15.4844C4 16.3082 4.67027 16.9785 5.49414 16.9785H9.69377L9.90454 18.6912C9.99765 19.4358 10.635 20 11.3872 20H19.5059C20.3297 20 21 19.3297 21 18.5059V7.51562C21 6.69176 20.3297 6.02148 19.5059 6.02148ZM5.49414 15.9824C5.21952 15.9824 4.99609 15.759 4.99609 15.4844V4.49414C4.99609 4.21952 5.21952 3.99609 5.49414 3.99609H10.6246C10.8752 3.99609 11.0877 4.18362 11.1187 4.43218C11.1909 5.01111 12.487 15.4081 12.5586 15.9824H5.49414ZM10.8639 18.3315L10.6974 16.9785H12.0336L10.8639 18.3315ZM20.0039 18.5059C20.0039 18.7805 19.7805 19.0039 19.5059 19.0039H11.5993L13.4954 16.8107C13.5924 16.7013 13.6359 16.5559 13.6159 16.4115L12.4448 7.01758H19.5059C19.7805 7.01758 20.0039 7.241 20.0039 7.51562V18.5059Z",
|
|
2091
1996
|
fill: "currentColor"
|
|
2092
1997
|
})
|
|
2093
1998
|
]
|
|
2094
1999
|
});
|
|
2095
2000
|
});
|
|
2096
|
-
|
|
2001
|
+
XoTranslateOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTranslateOutlineIcon";
|
|
2097
2002
|
//#endregion
|
|
2098
2003
|
//#region src/icons/XoTrashOutlineIcon.tsx
|
|
2099
2004
|
var XoTrashOutlineIcon = forwardRef((props, ref) => {
|
|
2100
|
-
return /* @__PURE__ */
|
|
2005
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2101
2006
|
ref,
|
|
2102
2007
|
viewBox: "0 0 24 24",
|
|
2103
2008
|
fill: "none",
|
|
2104
2009
|
stroke: "currentColor",
|
|
2105
2010
|
...props,
|
|
2106
|
-
children: /* @__PURE__ */
|
|
2011
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2107
2012
|
d: "M10 10V17M14 10V17M18 6V19C18 20.1046 17.1046 21 16 21H8C6.89543 21 6 20.1046 6 19V6M4 6H20M15 6V5C15 3.89543 14.1046 3 13 3H11C9.89543 3 9 3.89543 9 5V6",
|
|
2108
2013
|
stroke: "currentColor",
|
|
2109
2014
|
strokeWidth: "1.5",
|
|
@@ -2116,13 +2021,13 @@ XoTrashOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrashOutlineIcon";
|
|
|
2116
2021
|
//#endregion
|
|
2117
2022
|
//#region src/icons/XoTrendingUpOutlineIcon.tsx
|
|
2118
2023
|
var XoTrendingUpOutlineIcon = forwardRef((props, ref) => {
|
|
2119
|
-
return /* @__PURE__ */
|
|
2024
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2120
2025
|
ref,
|
|
2121
2026
|
viewBox: "0 0 24 24",
|
|
2122
2027
|
fill: "none",
|
|
2123
2028
|
stroke: "currentColor",
|
|
2124
2029
|
...props,
|
|
2125
|
-
children: /* @__PURE__ */
|
|
2030
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2126
2031
|
d: "M22 7L13.5 16.5L9 12L2 19M22 7H15M22 7V14",
|
|
2127
2032
|
stroke: "currentColor",
|
|
2128
2033
|
strokeWidth: "1.5",
|
|
@@ -2135,13 +2040,13 @@ XoTrendingUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrendingUpOutlin
|
|
|
2135
2040
|
//#endregion
|
|
2136
2041
|
//#region src/icons/XoUserOutlineIcon.tsx
|
|
2137
2042
|
var XoUserOutlineIcon = forwardRef((props, ref) => {
|
|
2138
|
-
return /* @__PURE__ */
|
|
2043
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2139
2044
|
ref,
|
|
2140
2045
|
viewBox: "0 0 24 24",
|
|
2141
2046
|
fill: "none",
|
|
2142
2047
|
stroke: "currentColor",
|
|
2143
2048
|
...props,
|
|
2144
|
-
children: /* @__PURE__ */
|
|
2049
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2145
2050
|
d: "M17.3333 17.963C17.3333 16.5232 16.2918 14.6666 14.6667 14.6667H9.33333C7.70819 14.6666 6.66667 16.5232 6.66667 17.963M4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12ZM14.6667 9.33333C14.6667 10.8061 13.4728 12 12 12C10.5272 12 9.33333 10.8061 9.33333 9.33333C9.33333 7.86057 10.5272 6.66667 12 6.66667C13.4728 6.66667 14.6667 7.86057 14.6667 9.33333Z",
|
|
2146
2051
|
stroke: "currentColor",
|
|
2147
2052
|
strokeWidth: "1.5"
|
|
@@ -2152,13 +2057,13 @@ XoUserOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoUserOutlineIcon";
|
|
|
2152
2057
|
//#endregion
|
|
2153
2058
|
//#region src/icons/XoWalletOutlineIcon.tsx
|
|
2154
2059
|
var XoWalletOutlineIcon = forwardRef((props, ref) => {
|
|
2155
|
-
return /* @__PURE__ */
|
|
2060
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2156
2061
|
ref,
|
|
2157
2062
|
viewBox: "0 0 24 24",
|
|
2158
2063
|
fill: "none",
|
|
2159
2064
|
stroke: "currentColor",
|
|
2160
2065
|
...props,
|
|
2161
|
-
children: /* @__PURE__ */
|
|
2066
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2162
2067
|
d: "M21 9H13.8947C12.3251 9 11.0526 10.3431 11.0526 12C11.0526 13.6569 12.3251 15 13.8947 15H21M13.8947 12V12.01M5 5H19C20.1046 5 21 6.04467 21 7.33333V16.6667C21 17.9553 20.1046 19 19 19H5C3.89543 19 3 17.9553 3 16.6667V7.33333C3 6.04467 3.89543 5 5 5Z",
|
|
2163
2068
|
stroke: "currentColor",
|
|
2164
2069
|
strokeWidth: "1.5",
|
|
@@ -2171,22 +2076,22 @@ XoWalletOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWalletOutlineIcon";
|
|
|
2171
2076
|
//#endregion
|
|
2172
2077
|
//#region src/icons/XoWarningCircleFillIcon.tsx
|
|
2173
2078
|
var XoWarningCircleFillIcon = forwardRef((props, ref) => {
|
|
2174
|
-
return /* @__PURE__ */
|
|
2079
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2175
2080
|
ref,
|
|
2176
2081
|
viewBox: "0 0 24 24",
|
|
2177
2082
|
fill: "none",
|
|
2178
2083
|
stroke: "currentColor",
|
|
2179
2084
|
...props,
|
|
2180
|
-
children: /* @__PURE__ */
|
|
2085
|
+
children: /* @__PURE__ */ jsxs("g", {
|
|
2181
2086
|
id: "warning-circle-fill",
|
|
2182
|
-
children: [/* @__PURE__ */
|
|
2087
|
+
children: [/* @__PURE__ */ jsx("circle", {
|
|
2183
2088
|
id: "Ellipse",
|
|
2184
2089
|
cx: "12",
|
|
2185
2090
|
cy: "12",
|
|
2186
2091
|
r: "8",
|
|
2187
2092
|
stroke: "currentColor",
|
|
2188
2093
|
strokeWidth: "1.5"
|
|
2189
|
-
}), /* @__PURE__ */
|
|
2094
|
+
}), /* @__PURE__ */ jsx("path", {
|
|
2190
2095
|
id: "Exclude",
|
|
2191
2096
|
fillRule: "evenodd",
|
|
2192
2097
|
clipRule: "evenodd",
|
|
@@ -2200,15 +2105,15 @@ XoWarningCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircleFil
|
|
|
2200
2105
|
//#endregion
|
|
2201
2106
|
//#region src/icons/XoWarningCircleOutlineIcon.tsx
|
|
2202
2107
|
var XoWarningCircleOutlineIcon = forwardRef((props, ref) => {
|
|
2203
|
-
return /* @__PURE__ */
|
|
2108
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2204
2109
|
ref,
|
|
2205
2110
|
viewBox: "0 0 24 24",
|
|
2206
2111
|
fill: "none",
|
|
2207
2112
|
stroke: "currentColor",
|
|
2208
2113
|
...props,
|
|
2209
|
-
children: /* @__PURE__ */
|
|
2114
|
+
children: /* @__PURE__ */ jsx("g", {
|
|
2210
2115
|
id: "warning-circle-outline",
|
|
2211
|
-
children: /* @__PURE__ */
|
|
2116
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2212
2117
|
id: "shape",
|
|
2213
2118
|
d: "M12 16.4356V16.4444M12 7.55556V13.7778M20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z",
|
|
2214
2119
|
stroke: "currentColor",
|
|
@@ -2223,12 +2128,12 @@ XoWarningCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircle
|
|
|
2223
2128
|
//#endregion
|
|
2224
2129
|
//#region src/icons/XoZoomInOutlineIcon.tsx
|
|
2225
2130
|
var XoZoomInOutlineIcon = forwardRef((props, ref) => {
|
|
2226
|
-
return /* @__PURE__ */
|
|
2131
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2227
2132
|
ref,
|
|
2228
2133
|
viewBox: "0 0 24 24",
|
|
2229
2134
|
fill: "none",
|
|
2230
2135
|
...props,
|
|
2231
|
-
children: /* @__PURE__ */
|
|
2136
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2232
2137
|
d: "M11.75 8C11.75 7.58579 11.4142 7.25 11 7.25C10.5858 7.25 10.25 7.58579 10.25 8H11.75ZM10.25 14C10.25 14.4142 10.5858 14.75 11 14.75C11.4142 14.75 11.75 14.4142 11.75 14H10.25ZM8 10.25C7.58579 10.25 7.25 10.5858 7.25 11C7.25 11.4142 7.58579 11.75 8 11.75V10.25ZM14 11.75C14.4142 11.75 14.75 11.4142 14.75 11C14.75 10.5858 14.4142 10.25 14 10.25V11.75ZM19.4697 20.5303C19.7626 20.8232 20.2374 20.8232 20.5303 20.5303C20.8232 20.2374 20.8232 19.7626 20.5303 19.4697L19.4697 20.5303ZM10.25 8V11H11.75V8H10.25ZM10.25 11V14H11.75V11H10.25ZM8 11.75H11V10.25H8V11.75ZM11 11.75H14V10.25H11V11.75ZM17.25 11C17.25 14.4518 14.4518 17.25 11 17.25V18.75C15.2802 18.75 18.75 15.2802 18.75 11H17.25ZM11 17.25C7.54822 17.25 4.75 14.4518 4.75 11H3.25C3.25 15.2802 6.71979 18.75 11 18.75V17.25ZM4.75 11C4.75 7.54822 7.54822 4.75 11 4.75V3.25C6.71979 3.25 3.25 6.71979 3.25 11H4.75ZM11 4.75C14.4518 4.75 17.25 7.54822 17.25 11H18.75C18.75 6.71979 15.2802 3.25 11 3.25V4.75ZM15.4194 16.4801L19.4697 20.5303L20.5303 19.4697L16.4801 15.4194L15.4194 16.4801Z",
|
|
2233
2138
|
fill: "currentColor"
|
|
2234
2139
|
})
|
|
@@ -2238,12 +2143,12 @@ XoZoomInOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoZoomInOutlineIcon";
|
|
|
2238
2143
|
//#endregion
|
|
2239
2144
|
//#region src/icons/XoZoomOutOutlineIcon.tsx
|
|
2240
2145
|
var XoZoomOutOutlineIcon = forwardRef((props, ref) => {
|
|
2241
|
-
return /* @__PURE__ */
|
|
2146
|
+
return /* @__PURE__ */ jsx(SvgIcon, {
|
|
2242
2147
|
ref,
|
|
2243
2148
|
viewBox: "0 0 24 24",
|
|
2244
2149
|
fill: "none",
|
|
2245
2150
|
...props,
|
|
2246
|
-
children: /* @__PURE__ */
|
|
2151
|
+
children: /* @__PURE__ */ jsx("path", {
|
|
2247
2152
|
d: "M19.4697 20.5303C19.7626 20.8232 20.2374 20.8232 20.5303 20.5303C20.8232 20.2374 20.8232 19.7626 20.5303 19.4697L19.4697 20.5303ZM8 10.25C7.58579 10.25 7.25 10.5858 7.25 11C7.25 11.4142 7.58579 11.75 8 11.75V10.25ZM14 11.75C14.4142 11.75 14.75 11.4142 14.75 11C14.75 10.5858 14.4142 10.25 14 10.25V11.75ZM17.25 11C17.25 14.4518 14.4518 17.25 11 17.25V18.75C15.2802 18.75 18.75 15.2802 18.75 11H17.25ZM11 17.25C7.54822 17.25 4.75 14.4518 4.75 11H3.25C3.25 15.2802 6.71979 18.75 11 18.75V17.25ZM4.75 11C4.75 7.54822 7.54822 4.75 11 4.75V3.25C6.71979 3.25 3.25 6.71979 3.25 11H4.75ZM11 4.75C14.4518 4.75 17.25 7.54822 17.25 11H18.75C18.75 6.71979 15.2802 3.25 11 3.25V4.75ZM8 11.75H14V10.25H8V11.75ZM15.4194 16.4801L19.4697 20.5303L20.5303 19.4697L16.4801 15.4194L15.4194 16.4801Z",
|
|
2248
2153
|
fill: "currentColor"
|
|
2249
2154
|
})
|
|
@@ -2251,6 +2156,6 @@ var XoZoomOutOutlineIcon = forwardRef((props, ref) => {
|
|
|
2251
2156
|
});
|
|
2252
2157
|
XoZoomOutOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoZoomOutOutlineIcon";
|
|
2253
2158
|
//#endregion
|
|
2254
|
-
export { SvgIcon, XoAlarmOutlineIcon, XoArrowLeftOutlineIcon, XoAtEmailOutlineIcon, XoAttachmentOutlineIcon, XoBellFillIcon, XoBellOutlineIcon, XoCalendarOutlineIcon, XoCartOutlineIcon, XoCatalogFillIcon, XoCatalogOutlineIcon, XoCheckCircleFillIcon, XoCheckCircleOutlineIcon, XoCheckOutlineIcon, XoCheckSOutlineIcon, XoChevronCircleDownOutlineIcon, XoChevronCircleLeftOutlineIcon, XoChevronCircleRightOutlineIcon, XoChevronCircleUpOutlineIcon, XoChevronDownOutlineIcon, XoChevronLeftOutlineIcon, XoChevronRightOutlineIcon, XoChevronUpOutlineIcon, XoChevronWDownOutlineIcon, XoClockFillIcon, XoClockOutlineIcon, XoCrossOutlineIcon, XoCrossSOutlineIcon, XoDownloadOutlineIcon, XoEditOutlineIcon, XoEyeClosedOutlineIcon, XoEyeOpenOutlineIcon, XoFiltersOutlineIcon, XoGridOutlineIcon, XoHomeFillIcon, XoHomeOutlineIcon, XoImageAddOutlineIcon, XoImageEditOutlineIcon, XoImageOutlineIcon, XoInboxOutlineIcon, XoInfoCircleFillIcon, XoInfoCircleOutlineIcon, XoLaptopOutlineIcon, XoLikeFillIcon, XoLikeOutlineIcon, XoListRightOutlineIcon, XoLockOffOutlineIcon, XoLockOnOutlineIcon, XoMailOutlineIcon, XoMenuOutlineIcon, XoMenuVerticalFillIcon, XoMessageCircleDotsOutlineIcon, XoMinusCircleFillIcon, XoMinusCircleOutlineIcon, XoMinusOutlineIcon, XoMinusSOutlineIcon, XoNewscreenOutlineIcon, XoPauseFillIcon, XoPhoneOutlineIcon, XoPlayFillIcon, XoPlusCircleFillIcon, XoPlusCircleOutlineIcon, XoPlusOutlineIcon, XoPlusSOutlineIcon, XoPrintOutlineIcon, XoQuestionCircleFillIcon, XoQuestionCircleOutlineIcon, XoRotateRightOutlineIcon, XoRouteOutlineIcon, XoScreenOutlineIcon, XoSearchFillIcon, XoSearchOutlineIcon, XoSendFillIcon, XoSendOutlineIcon, XoSettingsOutlineIcon, XoShareOutlineIcon, XoSmartphoneOutlineIcon, XoSortDownFillIcon, XoSortFillIcon, XoSortOrderOutlineIcon, XoSortUnselectedFillIcon, XoSortUpFillIcon, XoSpeakerOffFillIcon, XoSpeakerOnFillIcon, XoStarFillIcon, XoStarOutlineIcon, XoSwipeDownFillIcon, XoSwipeOutlineIcon, XoSwipe_upFillIcon,
|
|
2159
|
+
export { SvgIcon, XoAlarmOutlineIcon, XoArrowLeftOutlineIcon, XoAtEmailOutlineIcon, XoAttachmentOutlineIcon, XoBellFillIcon, XoBellOutlineIcon, XoCalendarDailyOutlineIcon, XoCalendarOutlineIcon, XoCartOutlineIcon, XoCatalogFillIcon, XoCatalogOutlineIcon, XoCheckCircleFillIcon, XoCheckCircleOutlineIcon, XoCheckOutlineIcon, XoCheckSOutlineIcon, XoChevronCircleDownOutlineIcon, XoChevronCircleLeftOutlineIcon, XoChevronCircleRightOutlineIcon, XoChevronCircleUpOutlineIcon, XoChevronDownOutlineIcon, XoChevronLeftOutlineIcon, XoChevronRightOutlineIcon, XoChevronUpOutlineIcon, XoChevronWDownOutlineIcon, XoClockFillIcon, XoClockOutlineIcon, XoCopyOutlineIcon, XoCrossOutlineIcon, XoCrossSOutlineIcon, XoDownloadOutlineIcon, XoEditOutlineIcon, XoEyeClosedOutlineIcon, XoEyeOpenOutlineIcon, XoFaxOutlineIcon, XoFiltersOutlineIcon, XoGridOutlineIcon, XoHeartFillIcon, XoHeartOutlineIcon, XoHomeFillIcon, XoHomeOutlineIcon, XoImageAddOutlineIcon, XoImageEditOutlineIcon, XoImageOutlineIcon, XoInboxOutlineIcon, XoInfoCircleFillIcon, XoInfoCircleOutlineIcon, XoKeyboardOutlineIcon, XoLaptopOutlineIcon, XoLikeFillIcon, XoLikeOutlineIcon, XoListRightOutlineIcon, XoLockOffOutlineIcon, XoLockOnOutlineIcon, XoMailOutlineIcon, XoMenuOutlineIcon, XoMenuVerticalFillIcon, XoMessageCircleDotsOutlineIcon, XoMinusCircleFillIcon, XoMinusCircleOutlineIcon, XoMinusOutlineIcon, XoMinusSOutlineIcon, XoNewscreenOutlineIcon, XoPauseFillIcon, XoPhoneOutlineIcon, XoPlayFillIcon, XoPlusCircleFillIcon, XoPlusCircleOutlineIcon, XoPlusOutlineIcon, XoPlusSOutlineIcon, XoPrintOutlineIcon, XoQuestionCircleFillIcon, XoQuestionCircleOutlineIcon, XoRotateRightOutlineIcon, XoRouteOutlineIcon, XoScreenOutlineIcon, XoSearchFillIcon, XoSearchOutlineIcon, XoSendFillIcon, XoSendOutlineIcon, XoSettingsOutlineIcon, XoShareOutlineIcon, XoSmartphoneOutlineIcon, XoSortDownFillIcon, XoSortFillIcon, XoSortOrderOutlineIcon, XoSortUnselectedFillIcon, XoSortUpFillIcon, XoSpeakerOffFillIcon, XoSpeakerOnFillIcon, XoStarFillIcon, XoStarOutlineIcon, XoSwipeDownFillIcon, XoSwipeOutlineIcon, XoSwipe_upFillIcon, XoTranslateOutlineIcon, XoTrashOutlineIcon, XoTrendingUpOutlineIcon, XoUserOutlineIcon, XoWalletOutlineIcon, XoWarningCircleFillIcon, XoWarningCircleOutlineIcon, XoZoomInOutlineIcon, XoZoomOutOutlineIcon };
|
|
2255
2160
|
|
|
2256
2161
|
//# sourceMappingURL=index.esm.js.map
|