@xmart/xorder-ui-icons 0.1.0 → 0.1.2-dev.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/index.esm.js CHANGED
@@ -1,11 +1,5 @@
1
1
  import { forwardRef, useMemo } from "react";
2
- //#region \0rolldown/runtime.js
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__ */ (0, import_jsx_runtime.jsxs)("svg", {
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__ */ (0, import_jsx_runtime.jsx)("title", { children: title }), children]
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__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("circle", {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
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__ */ (0, import_jsx_runtime.jsx)("path", {
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",
@@ -432,25 +189,25 @@ XoBellOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoBellOutlineIcon";
432
189
  //#endregion
433
190
  //#region src/icons/XoCalendarDailyOutlineIcon.tsx
434
191
  var XoCalendarDailyOutlineIcon = forwardRef((props, ref) => {
435
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
192
+ return /* @__PURE__ */ jsxs(SvgIcon, {
436
193
  ref,
437
194
  viewBox: "0 0 24 24",
438
195
  fill: "none",
439
196
  stroke: "currentColor",
440
197
  ...props,
441
198
  children: [
442
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
199
+ /* @__PURE__ */ jsx("path", {
443
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",
444
201
  stroke: "currentColor",
445
202
  strokeWidth: "1.5",
446
203
  strokeLinecap: "round",
447
204
  strokeLinejoin: "round"
448
205
  }),
449
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
206
+ /* @__PURE__ */ jsx("path", {
450
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",
451
208
  fill: "currentColor"
452
209
  }),
453
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
210
+ /* @__PURE__ */ jsx("path", {
454
211
  fillRule: "evenodd",
455
212
  clipRule: "evenodd",
456
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",
@@ -463,13 +220,13 @@ XoCalendarDailyOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCalendarDaily
463
220
  //#endregion
464
221
  //#region src/icons/XoCalendarOutlineIcon.tsx
465
222
  var XoCalendarOutlineIcon = forwardRef((props, ref) => {
466
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
223
+ return /* @__PURE__ */ jsx(SvgIcon, {
467
224
  ref,
468
225
  viewBox: "0 0 24 24",
469
226
  fill: "none",
470
227
  stroke: "currentColor",
471
228
  ...props,
472
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
229
+ children: /* @__PURE__ */ jsx("path", {
473
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",
474
231
  stroke: "currentColor",
475
232
  strokeWidth: "1.5",
@@ -482,13 +239,13 @@ XoCalendarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCalendarOutlineIco
482
239
  //#endregion
483
240
  //#region src/icons/XoCartOutlineIcon.tsx
484
241
  var XoCartOutlineIcon = forwardRef((props, ref) => {
485
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
242
+ return /* @__PURE__ */ jsx(SvgIcon, {
486
243
  ref,
487
244
  viewBox: "0 0 24 24",
488
245
  fill: "none",
489
246
  stroke: "currentColor",
490
247
  ...props,
491
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
248
+ children: /* @__PURE__ */ jsx("path", {
492
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",
493
250
  stroke: "currentColor",
494
251
  strokeWidth: "1.5",
@@ -501,16 +258,16 @@ XoCartOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCartOutlineIcon";
501
258
  //#endregion
502
259
  //#region src/icons/XoCatalogFillIcon.tsx
503
260
  var XoCatalogFillIcon = forwardRef((props, ref) => {
504
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
261
+ return /* @__PURE__ */ jsxs(SvgIcon, {
505
262
  ref,
506
263
  viewBox: "0 0 24 24",
507
264
  fill: "none",
508
265
  stroke: "currentColor",
509
266
  ...props,
510
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
267
+ children: [/* @__PURE__ */ jsx("path", {
511
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",
512
269
  fill: "currentColor"
513
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
270
+ }), /* @__PURE__ */ jsx("path", {
514
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",
515
272
  stroke: "currentColor",
516
273
  strokeWidth: "1.5",
@@ -522,13 +279,13 @@ XoCatalogFillIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogFillIcon";
522
279
  //#endregion
523
280
  //#region src/icons/XoCatalogOutlineIcon.tsx
524
281
  var XoCatalogOutlineIcon = forwardRef((props, ref) => {
525
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
282
+ return /* @__PURE__ */ jsx(SvgIcon, {
526
283
  ref,
527
284
  viewBox: "0 0 24 24",
528
285
  fill: "none",
529
286
  stroke: "currentColor",
530
287
  ...props,
531
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
288
+ children: /* @__PURE__ */ jsx("path", {
532
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",
533
290
  stroke: "currentColor",
534
291
  strokeWidth: "1.5",
@@ -540,19 +297,19 @@ XoCatalogOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogOutlineIcon"
540
297
  //#endregion
541
298
  //#region src/icons/XoCheckCircleFillIcon.tsx
542
299
  var XoCheckCircleFillIcon = forwardRef((props, ref) => {
543
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
300
+ return /* @__PURE__ */ jsxs(SvgIcon, {
544
301
  ref,
545
302
  viewBox: "0 0 24 24",
546
303
  fill: "none",
547
304
  stroke: "currentColor",
548
305
  ...props,
549
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
306
+ children: [/* @__PURE__ */ jsx("path", {
550
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",
551
308
  stroke: "currentColor",
552
309
  strokeWidth: "1.5",
553
310
  strokeLinecap: "round",
554
311
  strokeLinejoin: "round"
555
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
312
+ }), /* @__PURE__ */ jsx("path", {
556
313
  fillRule: "evenodd",
557
314
  clipRule: "evenodd",
558
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",
@@ -564,13 +321,13 @@ XoCheckCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleFillIco
564
321
  //#endregion
565
322
  //#region src/icons/XoCheckCircleOutlineIcon.tsx
566
323
  var XoCheckCircleOutlineIcon = forwardRef((props, ref) => {
567
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
324
+ return /* @__PURE__ */ jsx(SvgIcon, {
568
325
  ref,
569
326
  viewBox: "0 0 24 24",
570
327
  fill: "none",
571
328
  stroke: "currentColor",
572
329
  ...props,
573
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
330
+ children: /* @__PURE__ */ jsx("path", {
574
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",
575
332
  stroke: "currentColor",
576
333
  strokeWidth: "1.5",
@@ -583,13 +340,13 @@ XoCheckCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleOutl
583
340
  //#endregion
584
341
  //#region src/icons/XoCheckOutlineIcon.tsx
585
342
  var XoCheckOutlineIcon = forwardRef((props, ref) => {
586
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
343
+ return /* @__PURE__ */ jsx(SvgIcon, {
587
344
  ref,
588
345
  viewBox: "0 0 24 24",
589
346
  fill: "none",
590
347
  stroke: "currentColor",
591
348
  ...props,
592
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
349
+ children: /* @__PURE__ */ jsx("path", {
593
350
  d: "M20 6L9 18L4 13",
594
351
  stroke: "currentColor",
595
352
  strokeWidth: "1.5",
@@ -602,13 +359,13 @@ XoCheckOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckOutlineIcon";
602
359
  //#endregion
603
360
  //#region src/icons/XoCheckSOutlineIcon.tsx
604
361
  var XoCheckSOutlineIcon = forwardRef((props, ref) => {
605
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
362
+ return /* @__PURE__ */ jsx(SvgIcon, {
606
363
  ref,
607
364
  viewBox: "0 0 24 24",
608
365
  fill: "none",
609
366
  stroke: "currentColor",
610
367
  ...props,
611
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
368
+ children: /* @__PURE__ */ jsx("path", {
612
369
  d: "M17 8L10 16L7 13",
613
370
  stroke: "currentColor",
614
371
  strokeWidth: "1.5",
@@ -621,13 +378,13 @@ XoCheckSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckSOutlineIcon";
621
378
  //#endregion
622
379
  //#region src/icons/XoChevronCircleDownOutlineIcon.tsx
623
380
  var XoChevronCircleDownOutlineIcon = forwardRef((props, ref) => {
624
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
381
+ return /* @__PURE__ */ jsx(SvgIcon, {
625
382
  ref,
626
383
  viewBox: "0 0 24 24",
627
384
  fill: "none",
628
385
  stroke: "currentColor",
629
386
  ...props,
630
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
387
+ children: /* @__PURE__ */ jsx("path", {
631
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",
632
389
  stroke: "currentColor",
633
390
  strokeWidth: "1.5",
@@ -640,13 +397,13 @@ XoChevronCircleDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCi
640
397
  //#endregion
641
398
  //#region src/icons/XoChevronCircleLeftOutlineIcon.tsx
642
399
  var XoChevronCircleLeftOutlineIcon = forwardRef((props, ref) => {
643
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
400
+ return /* @__PURE__ */ jsx(SvgIcon, {
644
401
  ref,
645
402
  viewBox: "0 0 24 24",
646
403
  fill: "none",
647
404
  stroke: "currentColor",
648
405
  ...props,
649
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
406
+ children: /* @__PURE__ */ jsx("path", {
650
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",
651
408
  stroke: "currentColor",
652
409
  strokeWidth: "1.5",
@@ -659,13 +416,13 @@ XoChevronCircleLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCi
659
416
  //#endregion
660
417
  //#region src/icons/XoChevronCircleRightOutlineIcon.tsx
661
418
  var XoChevronCircleRightOutlineIcon = forwardRef((props, ref) => {
662
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
419
+ return /* @__PURE__ */ jsx(SvgIcon, {
663
420
  ref,
664
421
  viewBox: "0 0 24 24",
665
422
  fill: "none",
666
423
  stroke: "currentColor",
667
424
  ...props,
668
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
425
+ children: /* @__PURE__ */ jsx("path", {
669
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",
670
427
  stroke: "currentColor",
671
428
  strokeWidth: "1.5",
@@ -678,13 +435,13 @@ XoChevronCircleRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronC
678
435
  //#endregion
679
436
  //#region src/icons/XoChevronCircleUpOutlineIcon.tsx
680
437
  var XoChevronCircleUpOutlineIcon = forwardRef((props, ref) => {
681
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
438
+ return /* @__PURE__ */ jsx(SvgIcon, {
682
439
  ref,
683
440
  viewBox: "0 0 24 24",
684
441
  fill: "none",
685
442
  stroke: "currentColor",
686
443
  ...props,
687
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
444
+ children: /* @__PURE__ */ jsx("path", {
688
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",
689
446
  stroke: "currentColor",
690
447
  strokeWidth: "1.5",
@@ -697,13 +454,13 @@ XoChevronCircleUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCirc
697
454
  //#endregion
698
455
  //#region src/icons/XoChevronDownOutlineIcon.tsx
699
456
  var XoChevronDownOutlineIcon = forwardRef((props, ref) => {
700
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
457
+ return /* @__PURE__ */ jsx(SvgIcon, {
701
458
  ref,
702
459
  viewBox: "0 0 24 24",
703
460
  fill: "none",
704
461
  stroke: "currentColor",
705
462
  ...props,
706
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
463
+ children: /* @__PURE__ */ jsx("path", {
707
464
  d: "M6 9L12 15L18 9",
708
465
  stroke: "currentColor",
709
466
  strokeWidth: "1.5",
@@ -716,13 +473,13 @@ XoChevronDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronDownOutl
716
473
  //#endregion
717
474
  //#region src/icons/XoChevronLeftOutlineIcon.tsx
718
475
  var XoChevronLeftOutlineIcon = forwardRef((props, ref) => {
719
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
476
+ return /* @__PURE__ */ jsx(SvgIcon, {
720
477
  ref,
721
478
  viewBox: "0 0 24 24",
722
479
  fill: "none",
723
480
  stroke: "currentColor",
724
481
  ...props,
725
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
482
+ children: /* @__PURE__ */ jsx("path", {
726
483
  d: "M15 6L9 12L15 18",
727
484
  stroke: "currentColor",
728
485
  strokeWidth: "1.5",
@@ -735,13 +492,13 @@ XoChevronLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronLeftOutl
735
492
  //#endregion
736
493
  //#region src/icons/XoChevronRightOutlineIcon.tsx
737
494
  var XoChevronRightOutlineIcon = forwardRef((props, ref) => {
738
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
495
+ return /* @__PURE__ */ jsx(SvgIcon, {
739
496
  ref,
740
497
  viewBox: "0 0 24 24",
741
498
  fill: "none",
742
499
  stroke: "currentColor",
743
500
  ...props,
744
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
501
+ children: /* @__PURE__ */ jsx("path", {
745
502
  d: "M9 18L15 12L9 6",
746
503
  stroke: "currentColor",
747
504
  strokeWidth: "1.5",
@@ -754,13 +511,13 @@ XoChevronRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronRightOu
754
511
  //#endregion
755
512
  //#region src/icons/XoChevronUpOutlineIcon.tsx
756
513
  var XoChevronUpOutlineIcon = forwardRef((props, ref) => {
757
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
514
+ return /* @__PURE__ */ jsx(SvgIcon, {
758
515
  ref,
759
516
  viewBox: "0 0 24 24",
760
517
  fill: "none",
761
518
  stroke: "currentColor",
762
519
  ...props,
763
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
520
+ children: /* @__PURE__ */ jsx("path", {
764
521
  d: "M18 14L12 8L6 14",
765
522
  stroke: "currentColor",
766
523
  strokeWidth: "1.5",
@@ -773,19 +530,19 @@ XoChevronUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronUpOutlineI
773
530
  //#endregion
774
531
  //#region src/icons/XoChevronWDownOutlineIcon.tsx
775
532
  var XoChevronWDownOutlineIcon = forwardRef((props, ref) => {
776
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
533
+ return /* @__PURE__ */ jsxs(SvgIcon, {
777
534
  ref,
778
535
  viewBox: "0 0 24 24",
779
536
  fill: "none",
780
537
  stroke: "currentColor",
781
538
  ...props,
782
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
539
+ children: [/* @__PURE__ */ jsx("path", {
783
540
  d: "M7 13L12 17L17 13",
784
541
  stroke: "currentColor",
785
542
  strokeWidth: "1.5",
786
543
  strokeLinecap: "round",
787
544
  strokeLinejoin: "round"
788
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
545
+ }), /* @__PURE__ */ jsx("path", {
789
546
  d: "M7 8L12 12L17 8",
790
547
  stroke: "currentColor",
791
548
  strokeWidth: "1.5",
@@ -798,18 +555,18 @@ XoChevronWDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronWDownOu
798
555
  //#endregion
799
556
  //#region src/icons/XoClockFillIcon.tsx
800
557
  var XoClockFillIcon = forwardRef((props, ref) => {
801
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
558
+ return /* @__PURE__ */ jsxs(SvgIcon, {
802
559
  ref,
803
560
  viewBox: "0 0 24 24",
804
561
  fill: "none",
805
562
  stroke: "currentColor",
806
563
  ...props,
807
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
564
+ children: [/* @__PURE__ */ jsx("path", {
808
565
  fillRule: "evenodd",
809
566
  clipRule: "evenodd",
810
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",
811
568
  fill: "currentColor"
812
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
569
+ }), /* @__PURE__ */ jsx("circle", {
813
570
  cx: "12",
814
571
  cy: "12",
815
572
  r: "8",
@@ -822,13 +579,13 @@ XoClockFillIcon.displayName = "@xmart/xorder-ui-icons/XoClockFillIcon";
822
579
  //#endregion
823
580
  //#region src/icons/XoClockOutlineIcon.tsx
824
581
  var XoClockOutlineIcon = forwardRef((props, ref) => {
825
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
582
+ return /* @__PURE__ */ jsx(SvgIcon, {
826
583
  ref,
827
584
  viewBox: "0 0 24 24",
828
585
  fill: "none",
829
586
  stroke: "currentColor",
830
587
  ...props,
831
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
588
+ children: /* @__PURE__ */ jsx("path", {
832
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",
833
590
  stroke: "currentColor",
834
591
  strokeWidth: "1.5",
@@ -841,12 +598,12 @@ XoClockOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoClockOutlineIcon";
841
598
  //#endregion
842
599
  //#region src/icons/XoCopyOutlineIcon.tsx
843
600
  var XoCopyOutlineIcon = forwardRef((props, ref) => {
844
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
601
+ return /* @__PURE__ */ jsx(SvgIcon, {
845
602
  ref,
846
603
  viewBox: "0 0 24 24",
847
604
  fill: "none",
848
605
  ...props,
849
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
606
+ children: /* @__PURE__ */ jsx("path", {
850
607
  fillRule: "evenodd",
851
608
  clipRule: "evenodd",
852
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",
@@ -858,13 +615,13 @@ XoCopyOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCopyOutlineIcon";
858
615
  //#endregion
859
616
  //#region src/icons/XoCrossOutlineIcon.tsx
860
617
  var XoCrossOutlineIcon = forwardRef((props, ref) => {
861
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
618
+ return /* @__PURE__ */ jsx(SvgIcon, {
862
619
  ref,
863
620
  viewBox: "0 0 24 24",
864
621
  fill: "none",
865
622
  stroke: "currentColor",
866
623
  ...props,
867
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
624
+ children: /* @__PURE__ */ jsx("path", {
868
625
  d: "M18 6L6 18M6.00001 6L18 18",
869
626
  stroke: "currentColor",
870
627
  strokeWidth: "1.5",
@@ -877,13 +634,13 @@ XoCrossOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossOutlineIcon";
877
634
  //#endregion
878
635
  //#region src/icons/XoCrossSOutlineIcon.tsx
879
636
  var XoCrossSOutlineIcon = forwardRef((props, ref) => {
880
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
637
+ return /* @__PURE__ */ jsx(SvgIcon, {
881
638
  ref,
882
639
  viewBox: "0 0 24 24",
883
640
  fill: "none",
884
641
  stroke: "currentColor",
885
642
  ...props,
886
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
643
+ children: /* @__PURE__ */ jsx("path", {
887
644
  d: "M16 8L8 16M8.00001 8L16 16",
888
645
  stroke: "currentColor",
889
646
  strokeWidth: "1.5",
@@ -896,13 +653,13 @@ XoCrossSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossSOutlineIcon";
896
653
  //#endregion
897
654
  //#region src/icons/XoDownloadOutlineIcon.tsx
898
655
  var XoDownloadOutlineIcon = forwardRef((props, ref) => {
899
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
656
+ return /* @__PURE__ */ jsx(SvgIcon, {
900
657
  ref,
901
658
  viewBox: "0 0 24 24",
902
659
  fill: "none",
903
660
  stroke: "currentColor",
904
661
  ...props,
905
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
662
+ children: /* @__PURE__ */ jsx("path", {
906
663
  d: "M20 15V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 15M8 11L12 15M12 15L16 11M12 15V4",
907
664
  stroke: "currentColor",
908
665
  strokeWidth: "1.5",
@@ -915,13 +672,13 @@ XoDownloadOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoDownloadOutlineIco
915
672
  //#endregion
916
673
  //#region src/icons/XoEditOutlineIcon.tsx
917
674
  var XoEditOutlineIcon = forwardRef((props, ref) => {
918
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
675
+ return /* @__PURE__ */ jsx(SvgIcon, {
919
676
  ref,
920
677
  viewBox: "0 0 24 24",
921
678
  fill: "none",
922
679
  stroke: "currentColor",
923
680
  ...props,
924
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
681
+ children: /* @__PURE__ */ jsx("path", {
925
682
  d: "M14 6L8 12V16H12L18 10M14 6L17 3L21 7L18 10M14 6L18 10M10 4L4 4L4 20L20 20V14",
926
683
  stroke: "currentColor",
927
684
  strokeWidth: "1.5",
@@ -934,13 +691,13 @@ XoEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEditOutlineIcon";
934
691
  //#endregion
935
692
  //#region src/icons/XoEyeClosedOutlineIcon.tsx
936
693
  var XoEyeClosedOutlineIcon = forwardRef((props, ref) => {
937
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
694
+ return /* @__PURE__ */ jsx(SvgIcon, {
938
695
  ref,
939
696
  viewBox: "0 0 24 24",
940
697
  fill: "none",
941
698
  stroke: "currentColor",
942
699
  ...props,
943
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
700
+ children: /* @__PURE__ */ jsx("path", {
944
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",
945
702
  stroke: "currentColor",
946
703
  strokeWidth: "1.5",
@@ -953,19 +710,19 @@ XoEyeClosedOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeClosedOutlineI
953
710
  //#endregion
954
711
  //#region src/icons/XoEyeOpenOutlineIcon.tsx
955
712
  var XoEyeOpenOutlineIcon = forwardRef((props, ref) => {
956
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
713
+ return /* @__PURE__ */ jsxs(SvgIcon, {
957
714
  ref,
958
715
  viewBox: "0 0 24 24",
959
716
  fill: "none",
960
717
  stroke: "currentColor",
961
718
  ...props,
962
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
719
+ children: [/* @__PURE__ */ jsx("path", {
963
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",
964
721
  stroke: "currentColor",
965
722
  strokeWidth: "1.5",
966
723
  strokeLinecap: "round",
967
724
  strokeLinejoin: "round"
968
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
725
+ }), /* @__PURE__ */ jsx("path", {
969
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",
970
727
  stroke: "currentColor",
971
728
  strokeWidth: "1.5",
@@ -978,49 +735,49 @@ XoEyeOpenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeOpenOutlineIcon"
978
735
  //#endregion
979
736
  //#region src/icons/XoFaxOutlineIcon.tsx
980
737
  var XoFaxOutlineIcon = forwardRef((props, ref) => {
981
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
738
+ return /* @__PURE__ */ jsxs(SvgIcon, {
982
739
  ref,
983
740
  viewBox: "0 0 24 24",
984
741
  fill: "none",
985
742
  ...props,
986
743
  children: [
987
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
744
+ /* @__PURE__ */ jsx("path", {
988
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",
989
746
  fill: "currentColor"
990
747
  }),
991
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
748
+ /* @__PURE__ */ jsx("path", {
992
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",
993
750
  fill: "currentColor"
994
751
  }),
995
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
752
+ /* @__PURE__ */ jsx("path", {
996
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",
997
754
  fill: "currentColor"
998
755
  }),
999
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
756
+ /* @__PURE__ */ jsx("path", {
1000
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",
1001
758
  fill: "currentColor"
1002
759
  }),
1003
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
760
+ /* @__PURE__ */ jsx("path", {
1004
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",
1005
762
  fill: "currentColor"
1006
763
  }),
1007
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
764
+ /* @__PURE__ */ jsx("path", {
1008
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",
1009
766
  fill: "currentColor"
1010
767
  }),
1011
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
768
+ /* @__PURE__ */ jsx("path", {
1012
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",
1013
770
  fill: "currentColor"
1014
771
  }),
1015
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
772
+ /* @__PURE__ */ jsx("path", {
1016
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",
1017
774
  fill: "currentColor"
1018
775
  }),
1019
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
776
+ /* @__PURE__ */ jsx("path", {
1020
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",
1021
778
  fill: "currentColor"
1022
779
  }),
1023
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
780
+ /* @__PURE__ */ jsx("path", {
1024
781
  fillRule: "evenodd",
1025
782
  clipRule: "evenodd",
1026
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",
@@ -1033,13 +790,13 @@ XoFaxOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoFaxOutlineIcon";
1033
790
  //#endregion
1034
791
  //#region src/icons/XoFiltersOutlineIcon.tsx
1035
792
  var XoFiltersOutlineIcon = forwardRef((props, ref) => {
1036
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
793
+ return /* @__PURE__ */ jsx(SvgIcon, {
1037
794
  ref,
1038
795
  viewBox: "0 0 24 24",
1039
796
  fill: "none",
1040
797
  stroke: "currentColor",
1041
798
  ...props,
1042
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
799
+ children: /* @__PURE__ */ jsx("path", {
1043
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",
1044
801
  stroke: "currentColor",
1045
802
  strokeWidth: "1.5",
@@ -1051,35 +808,35 @@ XoFiltersOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoFiltersOutlineIcon"
1051
808
  //#endregion
1052
809
  //#region src/icons/XoGridOutlineIcon.tsx
1053
810
  var XoGridOutlineIcon = forwardRef((props, ref) => {
1054
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
811
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1055
812
  ref,
1056
813
  viewBox: "0 0 24 24",
1057
814
  fill: "none",
1058
815
  stroke: "currentColor",
1059
816
  ...props,
1060
817
  children: [
1061
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
818
+ /* @__PURE__ */ jsx("path", {
1062
819
  d: "M4 4H10.5882V10.5882H4V4Z",
1063
820
  stroke: "currentColor",
1064
821
  strokeWidth: "1.5",
1065
822
  strokeLinecap: "round",
1066
823
  strokeLinejoin: "round"
1067
824
  }),
1068
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
825
+ /* @__PURE__ */ jsx("path", {
1069
826
  d: "M4 13.4118H10.5882V20H4V13.4118Z",
1070
827
  stroke: "currentColor",
1071
828
  strokeWidth: "1.5",
1072
829
  strokeLinecap: "round",
1073
830
  strokeLinejoin: "round"
1074
831
  }),
1075
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
832
+ /* @__PURE__ */ jsx("path", {
1076
833
  d: "M13.4118 4H20V10.5882H13.4118V4Z",
1077
834
  stroke: "currentColor",
1078
835
  strokeWidth: "1.5",
1079
836
  strokeLinecap: "round",
1080
837
  strokeLinejoin: "round"
1081
838
  }),
1082
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
839
+ /* @__PURE__ */ jsx("path", {
1083
840
  d: "M13.4118 13.4118H20V20H13.4118V13.4118Z",
1084
841
  stroke: "currentColor",
1085
842
  strokeWidth: "1.5",
@@ -1093,12 +850,12 @@ XoGridOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoGridOutlineIcon";
1093
850
  //#endregion
1094
851
  //#region src/icons/XoHeartFillIcon.tsx
1095
852
  var XoHeartFillIcon = forwardRef((props, ref) => {
1096
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
853
+ return /* @__PURE__ */ jsx(SvgIcon, {
1097
854
  ref,
1098
855
  viewBox: "0 0 24 24",
1099
856
  fill: "none",
1100
857
  ...props,
1101
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
858
+ children: /* @__PURE__ */ jsx("path", {
1102
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",
1103
860
  fill: "currentColor"
1104
861
  })
@@ -1108,12 +865,12 @@ XoHeartFillIcon.displayName = "@xmart/xorder-ui-icons/XoHeartFillIcon";
1108
865
  //#endregion
1109
866
  //#region src/icons/XoHeartOutlineIcon.tsx
1110
867
  var XoHeartOutlineIcon = forwardRef((props, ref) => {
1111
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
868
+ return /* @__PURE__ */ jsx(SvgIcon, {
1112
869
  ref,
1113
870
  viewBox: "0 0 24 24",
1114
871
  fill: "none",
1115
872
  ...props,
1116
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
873
+ children: /* @__PURE__ */ jsx("path", {
1117
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",
1118
875
  fill: "currentColor"
1119
876
  })
@@ -1123,13 +880,13 @@ XoHeartOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoHeartOutlineIcon";
1123
880
  //#endregion
1124
881
  //#region src/icons/XoHomeFillIcon.tsx
1125
882
  var XoHomeFillIcon = forwardRef((props, ref) => {
1126
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
883
+ return /* @__PURE__ */ jsx(SvgIcon, {
1127
884
  ref,
1128
885
  viewBox: "0 0 24 24",
1129
886
  fill: "none",
1130
887
  stroke: "currentColor",
1131
888
  ...props,
1132
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
889
+ children: /* @__PURE__ */ jsx("path", {
1133
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",
1134
891
  fill: "currentColor",
1135
892
  stroke: "currentColor",
@@ -1143,13 +900,13 @@ XoHomeFillIcon.displayName = "@xmart/xorder-ui-icons/XoHomeFillIcon";
1143
900
  //#endregion
1144
901
  //#region src/icons/XoHomeOutlineIcon.tsx
1145
902
  var XoHomeOutlineIcon = forwardRef((props, ref) => {
1146
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
903
+ return /* @__PURE__ */ jsx(SvgIcon, {
1147
904
  ref,
1148
905
  viewBox: "0 0 24 24",
1149
906
  fill: "none",
1150
907
  stroke: "currentColor",
1151
908
  ...props,
1152
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
909
+ children: /* @__PURE__ */ jsx("path", {
1153
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",
1154
911
  stroke: "currentColor",
1155
912
  strokeWidth: "1.5",
@@ -1162,12 +919,12 @@ XoHomeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoHomeOutlineIcon";
1162
919
  //#endregion
1163
920
  //#region src/icons/XoImageAddOutlineIcon.tsx
1164
921
  var XoImageAddOutlineIcon = forwardRef((props, ref) => {
1165
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
922
+ return /* @__PURE__ */ jsx(SvgIcon, {
1166
923
  ref,
1167
924
  viewBox: "0 0 24 24",
1168
925
  fill: "none",
1169
926
  ...props,
1170
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
927
+ children: /* @__PURE__ */ jsx("path", {
1171
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",
1172
929
  fill: "currentColor"
1173
930
  })
@@ -1177,12 +934,12 @@ XoImageAddOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageAddOutlineIco
1177
934
  //#endregion
1178
935
  //#region src/icons/XoImageEditOutlineIcon.tsx
1179
936
  var XoImageEditOutlineIcon = forwardRef((props, ref) => {
1180
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
937
+ return /* @__PURE__ */ jsx(SvgIcon, {
1181
938
  ref,
1182
939
  viewBox: "0 0 24 24",
1183
940
  fill: "none",
1184
941
  ...props,
1185
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
942
+ children: /* @__PURE__ */ jsx("path", {
1186
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",
1187
944
  fill: "currentColor"
1188
945
  })
@@ -1192,12 +949,12 @@ XoImageEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageEditOutlineI
1192
949
  //#endregion
1193
950
  //#region src/icons/XoImageOutlineIcon.tsx
1194
951
  var XoImageOutlineIcon = forwardRef((props, ref) => {
1195
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
952
+ return /* @__PURE__ */ jsx(SvgIcon, {
1196
953
  ref,
1197
954
  viewBox: "0 0 24 24",
1198
955
  fill: "none",
1199
956
  ...props,
1200
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
957
+ children: /* @__PURE__ */ jsx("path", {
1201
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",
1202
959
  fill: "currentColor"
1203
960
  })
@@ -1207,13 +964,13 @@ XoImageOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageOutlineIcon";
1207
964
  //#endregion
1208
965
  //#region src/icons/XoInboxOutlineIcon.tsx
1209
966
  var XoInboxOutlineIcon = forwardRef((props, ref) => {
1210
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
967
+ return /* @__PURE__ */ jsx(SvgIcon, {
1211
968
  ref,
1212
969
  viewBox: "0 0 24 24",
1213
970
  fill: "none",
1214
971
  stroke: "currentColor",
1215
972
  ...props,
1216
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
973
+ children: /* @__PURE__ */ jsx("path", {
1217
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",
1218
975
  stroke: "currentColor",
1219
976
  strokeWidth: "1.5",
@@ -1226,19 +983,19 @@ XoInboxOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInboxOutlineIcon";
1226
983
  //#endregion
1227
984
  //#region src/icons/XoInfoCircleFillIcon.tsx
1228
985
  var XoInfoCircleFillIcon = forwardRef((props, ref) => {
1229
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
986
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1230
987
  ref,
1231
988
  viewBox: "0 0 24 24",
1232
989
  fill: "none",
1233
990
  stroke: "currentColor",
1234
991
  ...props,
1235
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
992
+ children: [/* @__PURE__ */ jsx("circle", {
1236
993
  cx: "12",
1237
994
  cy: "12",
1238
995
  r: "8",
1239
996
  stroke: "currentColor",
1240
997
  strokeWidth: "1.5"
1241
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
998
+ }), /* @__PURE__ */ jsx("path", {
1242
999
  fillRule: "evenodd",
1243
1000
  clipRule: "evenodd",
1244
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",
@@ -1250,13 +1007,13 @@ XoInfoCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleFillIcon"
1250
1007
  //#endregion
1251
1008
  //#region src/icons/XoInfoCircleOutlineIcon.tsx
1252
1009
  var XoInfoCircleOutlineIcon = forwardRef((props, ref) => {
1253
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1010
+ return /* @__PURE__ */ jsx(SvgIcon, {
1254
1011
  ref,
1255
1012
  viewBox: "0 0 24 24",
1256
1013
  fill: "none",
1257
1014
  stroke: "currentColor",
1258
1015
  ...props,
1259
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1016
+ children: /* @__PURE__ */ jsx("path", {
1260
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",
1261
1018
  stroke: "currentColor",
1262
1019
  strokeWidth: "1.5",
@@ -1269,12 +1026,12 @@ XoInfoCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleOutlin
1269
1026
  //#endregion
1270
1027
  //#region src/icons/XoKeyboardOutlineIcon.tsx
1271
1028
  var XoKeyboardOutlineIcon = forwardRef((props, ref) => {
1272
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1029
+ return /* @__PURE__ */ jsx(SvgIcon, {
1273
1030
  ref,
1274
1031
  viewBox: "0 0 24 24",
1275
1032
  fill: "none",
1276
1033
  ...props,
1277
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1034
+ children: /* @__PURE__ */ jsx("path", {
1278
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",
1279
1036
  fill: "currentColor"
1280
1037
  })
@@ -1284,13 +1041,13 @@ XoKeyboardOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoKeyboardOutlineIco
1284
1041
  //#endregion
1285
1042
  //#region src/icons/XoLaptopOutlineIcon.tsx
1286
1043
  var XoLaptopOutlineIcon = forwardRef((props, ref) => {
1287
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1044
+ return /* @__PURE__ */ jsx(SvgIcon, {
1288
1045
  ref,
1289
1046
  viewBox: "0 0 24 24",
1290
1047
  fill: "none",
1291
1048
  stroke: "currentColor",
1292
1049
  ...props,
1293
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1050
+ children: /* @__PURE__ */ jsx("path", {
1294
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",
1295
1052
  stroke: "currentColor",
1296
1053
  strokeWidth: "1.5",
@@ -1303,18 +1060,18 @@ XoLaptopOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLaptopOutlineIcon";
1303
1060
  //#endregion
1304
1061
  //#region src/icons/XoLikeFillIcon.tsx
1305
1062
  var XoLikeFillIcon = forwardRef((props, ref) => {
1306
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1063
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1307
1064
  ref,
1308
1065
  viewBox: "0 0 24 24",
1309
1066
  fill: "none",
1310
1067
  stroke: "currentColor",
1311
1068
  ...props,
1312
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1069
+ children: [/* @__PURE__ */ jsx("path", {
1313
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",
1314
1071
  stroke: "currentColor",
1315
1072
  strokeWidth: "1.5",
1316
1073
  strokeLinejoin: "round"
1317
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1074
+ }), /* @__PURE__ */ jsx("path", {
1318
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",
1319
1076
  fill: "currentColor"
1320
1077
  })]
@@ -1324,13 +1081,13 @@ XoLikeFillIcon.displayName = "@xmart/xorder-ui-icons/XoLikeFillIcon";
1324
1081
  //#endregion
1325
1082
  //#region src/icons/XoLikeOutlineIcon.tsx
1326
1083
  var XoLikeOutlineIcon = forwardRef((props, ref) => {
1327
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1084
+ return /* @__PURE__ */ jsx(SvgIcon, {
1328
1085
  ref,
1329
1086
  viewBox: "0 0 24 24",
1330
1087
  fill: "none",
1331
1088
  stroke: "currentColor",
1332
1089
  ...props,
1333
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1090
+ children: /* @__PURE__ */ jsx("path", {
1334
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",
1335
1092
  stroke: "currentColor",
1336
1093
  strokeWidth: "1.5",
@@ -1342,13 +1099,13 @@ XoLikeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLikeOutlineIcon";
1342
1099
  //#endregion
1343
1100
  //#region src/icons/XoListRightOutlineIcon.tsx
1344
1101
  var XoListRightOutlineIcon = forwardRef((props, ref) => {
1345
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1102
+ return /* @__PURE__ */ jsx(SvgIcon, {
1346
1103
  ref,
1347
1104
  viewBox: "0 0 24 24",
1348
1105
  fill: "none",
1349
1106
  stroke: "currentColor",
1350
1107
  ...props,
1351
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1108
+ children: /* @__PURE__ */ jsx("path", {
1352
1109
  d: "M7 8H17M7 12H17M7 16H13M4 4H20V20H4V4Z",
1353
1110
  stroke: "currentColor",
1354
1111
  strokeWidth: "1.5",
@@ -1361,13 +1118,13 @@ XoListRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoListRightOutlineI
1361
1118
  //#endregion
1362
1119
  //#region src/icons/XoLockOffOutlineIcon.tsx
1363
1120
  var XoLockOffOutlineIcon = forwardRef((props, ref) => {
1364
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1121
+ return /* @__PURE__ */ jsx(SvgIcon, {
1365
1122
  ref,
1366
1123
  viewBox: "0 0 24 24",
1367
1124
  fill: "none",
1368
1125
  stroke: "currentColor",
1369
1126
  ...props,
1370
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1127
+ children: /* @__PURE__ */ jsx("path", {
1371
1128
  d: "M8 11V7C8 5.66667 8.8 3 12 3C13.9103 3 14.9653 3.95032 15.5054 5M8 11H5V21H19V11H8Z",
1372
1129
  stroke: "currentColor",
1373
1130
  strokeWidth: "1.5",
@@ -1380,13 +1137,13 @@ XoLockOffOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOffOutlineIcon"
1380
1137
  //#endregion
1381
1138
  //#region src/icons/XoLockOnOutlineIcon.tsx
1382
1139
  var XoLockOnOutlineIcon = forwardRef((props, ref) => {
1383
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1140
+ return /* @__PURE__ */ jsx(SvgIcon, {
1384
1141
  ref,
1385
1142
  viewBox: "0 0 24 24",
1386
1143
  fill: "none",
1387
1144
  stroke: "currentColor",
1388
1145
  ...props,
1389
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1146
+ children: /* @__PURE__ */ jsx("path", {
1390
1147
  d: "M8 11V7C8 5.66667 8.8 3 12 3C15.2 3 16 5.66667 16 7V11M8 11H5V21H19V11H16M8 11H16",
1391
1148
  stroke: "currentColor",
1392
1149
  strokeWidth: "1.5",
@@ -1399,13 +1156,13 @@ XoLockOnOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOnOutlineIcon";
1399
1156
  //#endregion
1400
1157
  //#region src/icons/XoMailOutlineIcon.tsx
1401
1158
  var XoMailOutlineIcon = forwardRef((props, ref) => {
1402
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1159
+ return /* @__PURE__ */ jsx(SvgIcon, {
1403
1160
  ref,
1404
1161
  viewBox: "0 0 24 24",
1405
1162
  fill: "none",
1406
1163
  stroke: "currentColor",
1407
1164
  ...props,
1408
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1165
+ children: /* @__PURE__ */ jsx("path", {
1409
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",
1410
1167
  stroke: "currentColor",
1411
1168
  strokeWidth: "1.5",
@@ -1418,13 +1175,13 @@ XoMailOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMailOutlineIcon";
1418
1175
  //#endregion
1419
1176
  //#region src/icons/XoMenuOutlineIcon.tsx
1420
1177
  var XoMenuOutlineIcon = forwardRef((props, ref) => {
1421
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1178
+ return /* @__PURE__ */ jsx(SvgIcon, {
1422
1179
  ref,
1423
1180
  viewBox: "0 0 24 24",
1424
1181
  fill: "none",
1425
1182
  stroke: "currentColor",
1426
1183
  ...props,
1427
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1184
+ children: /* @__PURE__ */ jsx("path", {
1428
1185
  d: "M4 18H20M4 12H20M4 6H20",
1429
1186
  stroke: "currentColor",
1430
1187
  strokeWidth: "2",
@@ -1437,21 +1194,21 @@ XoMenuOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMenuOutlineIcon";
1437
1194
  //#endregion
1438
1195
  //#region src/icons/XoMenuVerticalFillIcon.tsx
1439
1196
  var XoMenuVerticalFillIcon = forwardRef((props, ref) => {
1440
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1197
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1441
1198
  ref,
1442
1199
  viewBox: "0 0 24 24",
1443
1200
  fill: "none",
1444
1201
  ...props,
1445
1202
  children: [
1446
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1203
+ /* @__PURE__ */ jsx("path", {
1447
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",
1448
1205
  fill: "currentColor"
1449
1206
  }),
1450
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1207
+ /* @__PURE__ */ jsx("path", {
1451
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",
1452
1209
  fill: "currentColor"
1453
1210
  }),
1454
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1211
+ /* @__PURE__ */ jsx("path", {
1455
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",
1456
1213
  fill: "currentColor"
1457
1214
  })
@@ -1462,13 +1219,13 @@ XoMenuVerticalFillIcon.displayName = "@xmart/xorder-ui-icons/XoMenuVerticalFillI
1462
1219
  //#endregion
1463
1220
  //#region src/icons/XoMessageCircleDotsOutlineIcon.tsx
1464
1221
  var XoMessageCircleDotsOutlineIcon = forwardRef((props, ref) => {
1465
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1222
+ return /* @__PURE__ */ jsx(SvgIcon, {
1466
1223
  ref,
1467
1224
  viewBox: "0 0 24 24",
1468
1225
  fill: "none",
1469
1226
  stroke: "currentColor",
1470
1227
  ...props,
1471
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1228
+ children: /* @__PURE__ */ jsx("path", {
1472
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",
1473
1230
  stroke: "currentColor",
1474
1231
  strokeWidth: "1.5",
@@ -1481,19 +1238,19 @@ XoMessageCircleDotsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMessageCi
1481
1238
  //#endregion
1482
1239
  //#region src/icons/XoMinusCircleFillIcon.tsx
1483
1240
  var XoMinusCircleFillIcon = forwardRef((props, ref) => {
1484
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1241
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1485
1242
  ref,
1486
1243
  viewBox: "0 0 24 24",
1487
1244
  fill: "none",
1488
1245
  stroke: "currentColor",
1489
1246
  ...props,
1490
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1247
+ children: [/* @__PURE__ */ jsx("path", {
1491
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",
1492
1249
  stroke: "currentColor",
1493
1250
  strokeWidth: "1.5",
1494
1251
  strokeLinecap: "round",
1495
1252
  strokeLinejoin: "round"
1496
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1253
+ }), /* @__PURE__ */ jsx("path", {
1497
1254
  fillRule: "evenodd",
1498
1255
  clipRule: "evenodd",
1499
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",
@@ -1505,13 +1262,13 @@ XoMinusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleFillIco
1505
1262
  //#endregion
1506
1263
  //#region src/icons/XoMinusCircleOutlineIcon.tsx
1507
1264
  var XoMinusCircleOutlineIcon = forwardRef((props, ref) => {
1508
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1265
+ return /* @__PURE__ */ jsx(SvgIcon, {
1509
1266
  ref,
1510
1267
  viewBox: "0 0 24 24",
1511
1268
  fill: "none",
1512
1269
  stroke: "currentColor",
1513
1270
  ...props,
1514
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1271
+ children: /* @__PURE__ */ jsx("path", {
1515
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",
1516
1273
  stroke: "currentColor",
1517
1274
  strokeWidth: "1.5",
@@ -1524,13 +1281,13 @@ XoMinusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleOutl
1524
1281
  //#endregion
1525
1282
  //#region src/icons/XoMinusOutlineIcon.tsx
1526
1283
  var XoMinusOutlineIcon = forwardRef((props, ref) => {
1527
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1284
+ return /* @__PURE__ */ jsx(SvgIcon, {
1528
1285
  ref,
1529
1286
  viewBox: "0 0 24 24",
1530
1287
  fill: "none",
1531
1288
  stroke: "currentColor",
1532
1289
  ...props,
1533
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1290
+ children: /* @__PURE__ */ jsx("path", {
1534
1291
  d: "M4 12H20",
1535
1292
  stroke: "currentColor",
1536
1293
  strokeWidth: "1.5",
@@ -1543,13 +1300,13 @@ XoMinusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusOutlineIcon";
1543
1300
  //#endregion
1544
1301
  //#region src/icons/XoMinusSOutlineIcon.tsx
1545
1302
  var XoMinusSOutlineIcon = forwardRef((props, ref) => {
1546
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1303
+ return /* @__PURE__ */ jsx(SvgIcon, {
1547
1304
  ref,
1548
1305
  viewBox: "0 0 24 24",
1549
1306
  fill: "none",
1550
1307
  stroke: "currentColor",
1551
1308
  ...props,
1552
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1309
+ children: /* @__PURE__ */ jsx("path", {
1553
1310
  d: "M6 12H18",
1554
1311
  stroke: "currentColor",
1555
1312
  strokeWidth: "1.5",
@@ -1562,13 +1319,13 @@ XoMinusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusSOutlineIcon";
1562
1319
  //#endregion
1563
1320
  //#region src/icons/XoNewscreenOutlineIcon.tsx
1564
1321
  var XoNewscreenOutlineIcon = forwardRef((props, ref) => {
1565
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1322
+ return /* @__PURE__ */ jsx(SvgIcon, {
1566
1323
  ref,
1567
1324
  viewBox: "0 0 24 24",
1568
1325
  fill: "none",
1569
1326
  stroke: "currentColor",
1570
1327
  ...props,
1571
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1328
+ children: /* @__PURE__ */ jsx("path", {
1572
1329
  d: "M19.9999 4.00001L9.99994 14M19.9999 4.00001L20 10M19.9999 4.00001L14 4M10 4.00001H4V20H20V14",
1573
1330
  stroke: "currentColor",
1574
1331
  strokeWidth: "1.5",
@@ -1581,13 +1338,13 @@ XoNewscreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoNewscreenOutlineI
1581
1338
  //#endregion
1582
1339
  //#region src/icons/XoPauseFillIcon.tsx
1583
1340
  var XoPauseFillIcon = forwardRef((props, ref) => {
1584
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1341
+ return /* @__PURE__ */ jsx(SvgIcon, {
1585
1342
  ref,
1586
1343
  viewBox: "0 0 24 24",
1587
1344
  fill: "none",
1588
1345
  stroke: "currentColor",
1589
1346
  ...props,
1590
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1347
+ children: /* @__PURE__ */ jsx("path", {
1591
1348
  d: "M15 6V18M9 6V18",
1592
1349
  stroke: "currentColor",
1593
1350
  strokeWidth: "2",
@@ -1600,13 +1357,13 @@ XoPauseFillIcon.displayName = "@xmart/xorder-ui-icons/XoPauseFillIcon";
1600
1357
  //#endregion
1601
1358
  //#region src/icons/XoPhoneOutlineIcon.tsx
1602
1359
  var XoPhoneOutlineIcon = forwardRef((props, ref) => {
1603
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1360
+ return /* @__PURE__ */ jsx(SvgIcon, {
1604
1361
  ref,
1605
1362
  viewBox: "0 0 24 24",
1606
1363
  fill: "none",
1607
1364
  stroke: "currentColor",
1608
1365
  ...props,
1609
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1366
+ children: /* @__PURE__ */ jsx("path", {
1610
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",
1611
1368
  stroke: "currentColor",
1612
1369
  strokeWidth: "1.5",
@@ -1619,13 +1376,13 @@ XoPhoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPhoneOutlineIcon";
1619
1376
  //#endregion
1620
1377
  //#region src/icons/XoPlayFillIcon.tsx
1621
1378
  var XoPlayFillIcon = forwardRef((props, ref) => {
1622
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1379
+ return /* @__PURE__ */ jsx(SvgIcon, {
1623
1380
  ref,
1624
1381
  viewBox: "0 0 24 24",
1625
1382
  fill: "none",
1626
1383
  stroke: "currentColor",
1627
1384
  ...props,
1628
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1385
+ children: /* @__PURE__ */ jsx("path", {
1629
1386
  d: "M8 6V18L18 12L8 6Z",
1630
1387
  fill: "currentColor",
1631
1388
  stroke: "currentColor",
@@ -1638,19 +1395,19 @@ XoPlayFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlayFillIcon";
1638
1395
  //#endregion
1639
1396
  //#region src/icons/XoPlusCircleFillIcon.tsx
1640
1397
  var XoPlusCircleFillIcon = forwardRef((props, ref) => {
1641
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1398
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1642
1399
  ref,
1643
1400
  viewBox: "0 0 24 24",
1644
1401
  fill: "none",
1645
1402
  stroke: "currentColor",
1646
1403
  ...props,
1647
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
1404
+ children: [/* @__PURE__ */ jsx("circle", {
1648
1405
  cx: "12",
1649
1406
  cy: "12",
1650
1407
  r: "8",
1651
1408
  stroke: "currentColor",
1652
1409
  strokeWidth: "1.5"
1653
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1410
+ }), /* @__PURE__ */ jsx("path", {
1654
1411
  fillRule: "evenodd",
1655
1412
  clipRule: "evenodd",
1656
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",
@@ -1662,13 +1419,13 @@ XoPlusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleFillIcon"
1662
1419
  //#endregion
1663
1420
  //#region src/icons/XoPlusCircleOutlineIcon.tsx
1664
1421
  var XoPlusCircleOutlineIcon = forwardRef((props, ref) => {
1665
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1422
+ return /* @__PURE__ */ jsx(SvgIcon, {
1666
1423
  ref,
1667
1424
  viewBox: "0 0 24 24",
1668
1425
  fill: "none",
1669
1426
  stroke: "currentColor",
1670
1427
  ...props,
1671
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1428
+ children: /* @__PURE__ */ jsx("path", {
1672
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",
1673
1430
  stroke: "currentColor",
1674
1431
  strokeWidth: "1.5",
@@ -1681,13 +1438,13 @@ XoPlusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleOutlin
1681
1438
  //#endregion
1682
1439
  //#region src/icons/XoPlusOutlineIcon.tsx
1683
1440
  var XoPlusOutlineIcon = forwardRef((props, ref) => {
1684
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1441
+ return /* @__PURE__ */ jsx(SvgIcon, {
1685
1442
  ref,
1686
1443
  viewBox: "0 0 24 24",
1687
1444
  fill: "none",
1688
1445
  stroke: "currentColor",
1689
1446
  ...props,
1690
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1447
+ children: /* @__PURE__ */ jsx("path", {
1691
1448
  d: "M4 12H20M12 4V20",
1692
1449
  stroke: "currentColor",
1693
1450
  strokeWidth: "1.5",
@@ -1700,13 +1457,13 @@ XoPlusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusOutlineIcon";
1700
1457
  //#endregion
1701
1458
  //#region src/icons/XoPlusSOutlineIcon.tsx
1702
1459
  var XoPlusSOutlineIcon = forwardRef((props, ref) => {
1703
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1460
+ return /* @__PURE__ */ jsx(SvgIcon, {
1704
1461
  ref,
1705
1462
  viewBox: "0 0 24 24",
1706
1463
  fill: "none",
1707
1464
  stroke: "currentColor",
1708
1465
  ...props,
1709
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1466
+ children: /* @__PURE__ */ jsx("path", {
1710
1467
  d: "M12 6V18M6 12H18",
1711
1468
  stroke: "currentColor",
1712
1469
  strokeWidth: "1.5",
@@ -1719,13 +1476,13 @@ XoPlusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusSOutlineIcon";
1719
1476
  //#endregion
1720
1477
  //#region src/icons/XoPrintOutlineIcon.tsx
1721
1478
  var XoPrintOutlineIcon = forwardRef((props, ref) => {
1722
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1479
+ return /* @__PURE__ */ jsx(SvgIcon, {
1723
1480
  ref,
1724
1481
  viewBox: "0 0 24 24",
1725
1482
  fill: "none",
1726
1483
  stroke: "currentColor",
1727
1484
  ...props,
1728
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1485
+ children: /* @__PURE__ */ jsx("path", {
1729
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",
1730
1487
  stroke: "currentColor",
1731
1488
  strokeWidth: "1.5",
@@ -1738,19 +1495,19 @@ XoPrintOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPrintOutlineIcon";
1738
1495
  //#endregion
1739
1496
  //#region src/icons/XoQuestionCircleFillIcon.tsx
1740
1497
  var XoQuestionCircleFillIcon = forwardRef((props, ref) => {
1741
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1498
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1742
1499
  ref,
1743
1500
  viewBox: "0 0 24 24",
1744
1501
  fill: "none",
1745
1502
  stroke: "currentColor",
1746
1503
  ...props,
1747
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
1504
+ children: [/* @__PURE__ */ jsx("circle", {
1748
1505
  cx: "12",
1749
1506
  cy: "12",
1750
1507
  r: "8",
1751
1508
  stroke: "currentColor",
1752
1509
  strokeWidth: "1.5"
1753
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1510
+ }), /* @__PURE__ */ jsx("path", {
1754
1511
  fillRule: "evenodd",
1755
1512
  clipRule: "evenodd",
1756
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",
@@ -1762,19 +1519,19 @@ XoQuestionCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCircleF
1762
1519
  //#endregion
1763
1520
  //#region src/icons/XoQuestionCircleOutlineIcon.tsx
1764
1521
  var XoQuestionCircleOutlineIcon = forwardRef((props, ref) => {
1765
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1522
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1766
1523
  ref,
1767
1524
  viewBox: "0 0 24 24",
1768
1525
  fill: "none",
1769
1526
  stroke: "currentColor",
1770
1527
  ...props,
1771
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1528
+ children: [/* @__PURE__ */ jsx("path", {
1772
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",
1773
1530
  stroke: "currentColor",
1774
1531
  strokeWidth: "1.5",
1775
1532
  strokeLinecap: "round",
1776
1533
  strokeLinejoin: "round"
1777
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1534
+ }), /* @__PURE__ */ jsx("path", {
1778
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",
1779
1536
  stroke: "currentColor",
1780
1537
  strokeWidth: "1.5",
@@ -1787,13 +1544,13 @@ XoQuestionCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCirc
1787
1544
  //#endregion
1788
1545
  //#region src/icons/XoRotateRightOutlineIcon.tsx
1789
1546
  var XoRotateRightOutlineIcon = forwardRef((props, ref) => {
1790
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1547
+ return /* @__PURE__ */ jsx(SvgIcon, {
1791
1548
  ref,
1792
1549
  viewBox: "0 0 24 24",
1793
1550
  fill: "none",
1794
1551
  stroke: "currentColor",
1795
1552
  ...props,
1796
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1553
+ children: /* @__PURE__ */ jsx("path", {
1797
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",
1798
1555
  stroke: "currentColor",
1799
1556
  strokeWidth: "1.5",
@@ -1806,12 +1563,12 @@ XoRotateRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRotateRightOutl
1806
1563
  //#endregion
1807
1564
  //#region src/icons/XoRouteOutlineIcon.tsx
1808
1565
  var XoRouteOutlineIcon = forwardRef((props, ref) => {
1809
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1566
+ return /* @__PURE__ */ jsx(SvgIcon, {
1810
1567
  ref,
1811
1568
  viewBox: "0 0 24 24",
1812
1569
  fill: "none",
1813
1570
  ...props,
1814
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1571
+ children: /* @__PURE__ */ jsx("path", {
1815
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",
1816
1573
  fill: "currentColor"
1817
1574
  })
@@ -1821,13 +1578,13 @@ XoRouteOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRouteOutlineIcon";
1821
1578
  //#endregion
1822
1579
  //#region src/icons/XoScreenOutlineIcon.tsx
1823
1580
  var XoScreenOutlineIcon = forwardRef((props, ref) => {
1824
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1581
+ return /* @__PURE__ */ jsx(SvgIcon, {
1825
1582
  ref,
1826
1583
  viewBox: "0 0 24 24",
1827
1584
  fill: "none",
1828
1585
  stroke: "currentColor",
1829
1586
  ...props,
1830
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1587
+ children: /* @__PURE__ */ jsx("path", {
1831
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",
1832
1589
  stroke: "currentColor",
1833
1590
  strokeWidth: "1.5",
@@ -1840,12 +1597,12 @@ XoScreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoScreenOutlineIcon";
1840
1597
  //#endregion
1841
1598
  //#region src/icons/XoSearchFillIcon.tsx
1842
1599
  var XoSearchFillIcon = forwardRef((props, ref) => {
1843
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1600
+ return /* @__PURE__ */ jsx(SvgIcon, {
1844
1601
  ref,
1845
1602
  viewBox: "0 0 24 24",
1846
1603
  fill: "none",
1847
1604
  ...props,
1848
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1605
+ children: /* @__PURE__ */ jsx("path", {
1849
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",
1850
1607
  fill: "currentColor"
1851
1608
  })
@@ -1855,12 +1612,12 @@ XoSearchFillIcon.displayName = "@xmart/xorder-ui-icons/XoSearchFillIcon";
1855
1612
  //#endregion
1856
1613
  //#region src/icons/XoSearchOutlineIcon.tsx
1857
1614
  var XoSearchOutlineIcon = forwardRef((props, ref) => {
1858
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1615
+ return /* @__PURE__ */ jsx(SvgIcon, {
1859
1616
  ref,
1860
1617
  viewBox: "0 0 24 24",
1861
1618
  fill: "none",
1862
1619
  ...props,
1863
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1620
+ children: /* @__PURE__ */ jsx("path", {
1864
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",
1865
1622
  fill: "currentColor"
1866
1623
  })
@@ -1870,16 +1627,16 @@ XoSearchOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSearchOutlineIcon";
1870
1627
  //#endregion
1871
1628
  //#region src/icons/XoSendFillIcon.tsx
1872
1629
  var XoSendFillIcon = forwardRef((props, ref) => {
1873
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1630
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1874
1631
  ref,
1875
1632
  viewBox: "0 0 24 24",
1876
1633
  fill: "none",
1877
1634
  stroke: "currentColor",
1878
1635
  ...props,
1879
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1636
+ children: [/* @__PURE__ */ jsx("path", {
1880
1637
  d: "M20 4L4 10.5L10.5 13.5L13.5 20L20 4Z",
1881
1638
  fill: "currentColor"
1882
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1639
+ }), /* @__PURE__ */ jsx("path", {
1883
1640
  d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
1884
1641
  stroke: "currentColor",
1885
1642
  strokeWidth: "1.5",
@@ -1892,13 +1649,13 @@ XoSendFillIcon.displayName = "@xmart/xorder-ui-icons/XoSendFillIcon";
1892
1649
  //#endregion
1893
1650
  //#region src/icons/XoSendOutlineIcon.tsx
1894
1651
  var XoSendOutlineIcon = forwardRef((props, ref) => {
1895
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1652
+ return /* @__PURE__ */ jsx(SvgIcon, {
1896
1653
  ref,
1897
1654
  viewBox: "0 0 24 24",
1898
1655
  fill: "none",
1899
1656
  stroke: "currentColor",
1900
1657
  ...props,
1901
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1658
+ children: /* @__PURE__ */ jsx("path", {
1902
1659
  d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
1903
1660
  stroke: "currentColor",
1904
1661
  strokeWidth: "1.5",
@@ -1911,17 +1668,17 @@ XoSendOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSendOutlineIcon";
1911
1668
  //#endregion
1912
1669
  //#region src/icons/XoSettingsOutlineIcon.tsx
1913
1670
  var XoSettingsOutlineIcon = forwardRef((props, ref) => {
1914
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1671
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1915
1672
  ref,
1916
1673
  viewBox: "0 0 24 24",
1917
1674
  fill: "none",
1918
1675
  stroke: "currentColor",
1919
1676
  ...props,
1920
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1677
+ children: [/* @__PURE__ */ jsx("path", {
1921
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",
1922
1679
  stroke: "currentColor",
1923
1680
  strokeWidth: "1.5"
1924
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1681
+ }), /* @__PURE__ */ jsx("path", {
1925
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",
1926
1683
  stroke: "currentColor",
1927
1684
  strokeWidth: "1.5"
@@ -1932,13 +1689,13 @@ XoSettingsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSettingsOutlineIco
1932
1689
  //#endregion
1933
1690
  //#region src/icons/XoShareOutlineIcon.tsx
1934
1691
  var XoShareOutlineIcon = forwardRef((props, ref) => {
1935
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1692
+ return /* @__PURE__ */ jsx(SvgIcon, {
1936
1693
  ref,
1937
1694
  viewBox: "0 0 24 24",
1938
1695
  fill: "none",
1939
1696
  stroke: "currentColor",
1940
1697
  ...props,
1941
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1698
+ children: /* @__PURE__ */ jsx("path", {
1942
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",
1943
1700
  stroke: "currentColor",
1944
1701
  strokeWidth: "1.5",
@@ -1951,13 +1708,13 @@ XoShareOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoShareOutlineIcon";
1951
1708
  //#endregion
1952
1709
  //#region src/icons/XoSmartphoneOutlineIcon.tsx
1953
1710
  var XoSmartphoneOutlineIcon = forwardRef((props, ref) => {
1954
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1711
+ return /* @__PURE__ */ jsx(SvgIcon, {
1955
1712
  ref,
1956
1713
  viewBox: "0 0 24 24",
1957
1714
  fill: "none",
1958
1715
  stroke: "currentColor",
1959
1716
  ...props,
1960
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1717
+ children: /* @__PURE__ */ jsx("path", {
1961
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",
1962
1719
  stroke: "currentColor",
1963
1720
  strokeWidth: "1.5",
@@ -1970,18 +1727,18 @@ XoSmartphoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSmartphoneOutlin
1970
1727
  //#endregion
1971
1728
  //#region src/icons/XoSortDownFillIcon.tsx
1972
1729
  var XoSortDownFillIcon = forwardRef((props, ref) => {
1973
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1730
+ return /* @__PURE__ */ jsxs(SvgIcon, {
1974
1731
  ref,
1975
1732
  viewBox: "0 0 24 24",
1976
1733
  fill: "none",
1977
1734
  stroke: "currentColor",
1978
1735
  ...props,
1979
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1736
+ children: [/* @__PURE__ */ jsx("path", {
1980
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",
1981
1738
  fill: "currentColor",
1982
1739
  stroke: "currentColor",
1983
1740
  strokeLinejoin: "round"
1984
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1741
+ }), /* @__PURE__ */ jsx("path", {
1985
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",
1986
1743
  fill: "currentColor",
1987
1744
  stroke: "currentColor",
@@ -1994,13 +1751,13 @@ XoSortDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortDownFillIcon";
1994
1751
  //#endregion
1995
1752
  //#region src/icons/XoSortFillIcon.tsx
1996
1753
  var XoSortFillIcon = forwardRef((props, ref) => {
1997
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1754
+ return /* @__PURE__ */ jsx(SvgIcon, {
1998
1755
  ref,
1999
1756
  viewBox: "0 0 24 24",
2000
1757
  fill: "none",
2001
1758
  stroke: "currentColor",
2002
1759
  ...props,
2003
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1760
+ children: /* @__PURE__ */ jsx("path", {
2004
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",
2005
1762
  fill: "currentColor",
2006
1763
  stroke: "currentColor",
@@ -2012,13 +1769,13 @@ XoSortFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortFillIcon";
2012
1769
  //#endregion
2013
1770
  //#region src/icons/XoSortOrderOutlineIcon.tsx
2014
1771
  var XoSortOrderOutlineIcon = forwardRef((props, ref) => {
2015
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1772
+ return /* @__PURE__ */ jsx(SvgIcon, {
2016
1773
  ref,
2017
1774
  viewBox: "0 0 24 24",
2018
1775
  fill: "none",
2019
1776
  stroke: "currentColor",
2020
1777
  ...props,
2021
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1778
+ children: /* @__PURE__ */ jsx("path", {
2022
1779
  d: "M15.5 5V19M15.5 5L18 7.5M15.5 5L13 7.5M8.5 19V5M8.5 19L6 16.5M8.5 19L11 16.5",
2023
1780
  stroke: "currentColor",
2024
1781
  strokeWidth: "1.5",
@@ -2031,18 +1788,18 @@ XoSortOrderOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSortOrderOutlineI
2031
1788
  //#endregion
2032
1789
  //#region src/icons/XoSortUnselectedFillIcon.tsx
2033
1790
  var XoSortUnselectedFillIcon = forwardRef((props, ref) => {
2034
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1791
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2035
1792
  ref,
2036
1793
  viewBox: "0 0 24 24",
2037
1794
  fill: "none",
2038
1795
  stroke: "currentColor",
2039
1796
  ...props,
2040
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1797
+ children: [/* @__PURE__ */ jsx("path", {
2041
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",
2042
1799
  fill: "currentColor",
2043
1800
  stroke: "currentColor",
2044
1801
  strokeLinejoin: "round"
2045
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1802
+ }), /* @__PURE__ */ jsx("path", {
2046
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",
2047
1804
  fill: "currentColor",
2048
1805
  stroke: "currentColor",
@@ -2054,19 +1811,19 @@ XoSortUnselectedFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUnselectedF
2054
1811
  //#endregion
2055
1812
  //#region src/icons/XoSortUpFillIcon.tsx
2056
1813
  var XoSortUpFillIcon = forwardRef((props, ref) => {
2057
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1814
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2058
1815
  ref,
2059
1816
  viewBox: "0 0 24 24",
2060
1817
  fill: "none",
2061
1818
  stroke: "currentColor",
2062
1819
  ...props,
2063
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1820
+ children: [/* @__PURE__ */ jsx("path", {
2064
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",
2065
1822
  fill: "currentColor",
2066
1823
  stroke: "currentColor",
2067
1824
  strokeLinejoin: "round",
2068
1825
  opacity: "0.3"
2069
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1826
+ }), /* @__PURE__ */ jsx("path", {
2070
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",
2071
1828
  fill: "currentColor",
2072
1829
  stroke: "currentColor",
@@ -2078,16 +1835,16 @@ XoSortUpFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUpFillIcon";
2078
1835
  //#endregion
2079
1836
  //#region src/icons/XoSpeakerOffFillIcon.tsx
2080
1837
  var XoSpeakerOffFillIcon = forwardRef((props, ref) => {
2081
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1838
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2082
1839
  ref,
2083
1840
  viewBox: "0 0 24 24",
2084
1841
  fill: "none",
2085
1842
  stroke: "currentColor",
2086
1843
  ...props,
2087
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1844
+ children: [/* @__PURE__ */ jsx("path", {
2088
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",
2089
1846
  fill: "currentColor"
2090
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1847
+ }), /* @__PURE__ */ jsx("path", {
2091
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",
2092
1849
  stroke: "currentColor",
2093
1850
  strokeWidth: "1.5",
@@ -2100,16 +1857,16 @@ XoSpeakerOffFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOffFillIcon"
2100
1857
  //#endregion
2101
1858
  //#region src/icons/XoSpeakerOnFillIcon.tsx
2102
1859
  var XoSpeakerOnFillIcon = forwardRef((props, ref) => {
2103
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1860
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2104
1861
  ref,
2105
1862
  viewBox: "0 0 24 24",
2106
1863
  fill: "none",
2107
1864
  stroke: "currentColor",
2108
1865
  ...props,
2109
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1866
+ children: [/* @__PURE__ */ jsx("path", {
2110
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",
2111
1868
  fill: "currentColor"
2112
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1869
+ }), /* @__PURE__ */ jsx("path", {
2113
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",
2114
1871
  stroke: "currentColor",
2115
1872
  strokeWidth: "1.5",
@@ -2122,13 +1879,13 @@ XoSpeakerOnFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOnFillIcon";
2122
1879
  //#endregion
2123
1880
  //#region src/icons/XoStarFillIcon.tsx
2124
1881
  var XoStarFillIcon = forwardRef((props, ref) => {
2125
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1882
+ return /* @__PURE__ */ jsx(SvgIcon, {
2126
1883
  ref,
2127
1884
  viewBox: "0 0 24 24",
2128
1885
  fill: "none",
2129
1886
  stroke: "currentColor",
2130
1887
  ...props,
2131
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1888
+ children: /* @__PURE__ */ jsx("path", {
2132
1889
  d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
2133
1890
  fill: "currentColor",
2134
1891
  stroke: "currentColor",
@@ -2142,13 +1899,13 @@ XoStarFillIcon.displayName = "@xmart/xorder-ui-icons/XoStarFillIcon";
2142
1899
  //#endregion
2143
1900
  //#region src/icons/XoStarOutlineIcon.tsx
2144
1901
  var XoStarOutlineIcon = forwardRef((props, ref) => {
2145
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1902
+ return /* @__PURE__ */ jsx(SvgIcon, {
2146
1903
  ref,
2147
1904
  viewBox: "0 0 24 24",
2148
1905
  fill: "none",
2149
1906
  stroke: "currentColor",
2150
1907
  ...props,
2151
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1908
+ children: /* @__PURE__ */ jsx("path", {
2152
1909
  d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
2153
1910
  stroke: "currentColor",
2154
1911
  strokeWidth: "1.5",
@@ -2161,17 +1918,17 @@ XoStarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoStarOutlineIcon";
2161
1918
  //#endregion
2162
1919
  //#region src/icons/XoSwipeDownFillIcon.tsx
2163
1920
  var XoSwipeDownFillIcon = forwardRef((props, ref) => {
2164
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1921
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2165
1922
  ref,
2166
1923
  viewBox: "0 0 24 24",
2167
1924
  fill: "none",
2168
1925
  ...props,
2169
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1926
+ children: [/* @__PURE__ */ jsx("path", {
2170
1927
  fillRule: "evenodd",
2171
1928
  clipRule: "evenodd",
2172
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",
2173
1930
  fill: "currentColor"
2174
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1931
+ }), /* @__PURE__ */ jsx("path", {
2175
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",
2176
1933
  fill: "currentColor"
2177
1934
  })]
@@ -2181,13 +1938,13 @@ XoSwipeDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeDownFillIcon";
2181
1938
  //#endregion
2182
1939
  //#region src/icons/XoSwipeOutlineIcon.tsx
2183
1940
  var XoSwipeOutlineIcon = forwardRef((props, ref) => {
2184
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1941
+ return /* @__PURE__ */ jsx(SvgIcon, {
2185
1942
  ref,
2186
1943
  viewBox: "0 0 24 24",
2187
1944
  fill: "none",
2188
1945
  stroke: "currentColor",
2189
1946
  ...props,
2190
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1947
+ children: /* @__PURE__ */ jsx("path", {
2191
1948
  d: "M4 18H20M4 12H20M4 6H20",
2192
1949
  stroke: "currentColor",
2193
1950
  strokeWidth: "1.5",
@@ -2200,17 +1957,17 @@ XoSwipeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeOutlineIcon";
2200
1957
  //#endregion
2201
1958
  //#region src/icons/XoSwipe_upFillIcon.tsx
2202
1959
  var XoSwipe_upFillIcon = forwardRef((props, ref) => {
2203
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1960
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2204
1961
  ref,
2205
1962
  viewBox: "0 0 24 24",
2206
1963
  fill: "none",
2207
1964
  ...props,
2208
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1965
+ children: [/* @__PURE__ */ jsx("path", {
2209
1966
  fillRule: "evenodd",
2210
1967
  clipRule: "evenodd",
2211
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",
2212
1969
  fill: "currentColor"
2213
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1970
+ }), /* @__PURE__ */ jsx("path", {
2214
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",
2215
1972
  fill: "currentColor"
2216
1973
  })]
@@ -2220,21 +1977,21 @@ XoSwipe_upFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipe_upFillIcon";
2220
1977
  //#endregion
2221
1978
  //#region src/icons/XoTranslateOutlineIcon.tsx
2222
1979
  var XoTranslateOutlineIcon = forwardRef((props, ref) => {
2223
- return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1980
+ return /* @__PURE__ */ jsxs(SvgIcon, {
2224
1981
  ref,
2225
1982
  viewBox: "0 0 24 24",
2226
1983
  fill: "none",
2227
1984
  ...props,
2228
1985
  children: [
2229
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1986
+ /* @__PURE__ */ jsx("path", {
2230
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",
2231
1988
  fill: "currentColor"
2232
1989
  }),
2233
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1990
+ /* @__PURE__ */ jsx("path", {
2234
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",
2235
1992
  fill: "currentColor"
2236
1993
  }),
2237
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1994
+ /* @__PURE__ */ jsx("path", {
2238
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",
2239
1996
  fill: "currentColor"
2240
1997
  })
@@ -2245,13 +2002,13 @@ XoTranslateOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTranslateOutlineI
2245
2002
  //#endregion
2246
2003
  //#region src/icons/XoTrashOutlineIcon.tsx
2247
2004
  var XoTrashOutlineIcon = forwardRef((props, ref) => {
2248
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2005
+ return /* @__PURE__ */ jsx(SvgIcon, {
2249
2006
  ref,
2250
2007
  viewBox: "0 0 24 24",
2251
2008
  fill: "none",
2252
2009
  stroke: "currentColor",
2253
2010
  ...props,
2254
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2011
+ children: /* @__PURE__ */ jsx("path", {
2255
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",
2256
2013
  stroke: "currentColor",
2257
2014
  strokeWidth: "1.5",
@@ -2264,13 +2021,13 @@ XoTrashOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrashOutlineIcon";
2264
2021
  //#endregion
2265
2022
  //#region src/icons/XoTrendingUpOutlineIcon.tsx
2266
2023
  var XoTrendingUpOutlineIcon = forwardRef((props, ref) => {
2267
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2024
+ return /* @__PURE__ */ jsx(SvgIcon, {
2268
2025
  ref,
2269
2026
  viewBox: "0 0 24 24",
2270
2027
  fill: "none",
2271
2028
  stroke: "currentColor",
2272
2029
  ...props,
2273
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2030
+ children: /* @__PURE__ */ jsx("path", {
2274
2031
  d: "M22 7L13.5 16.5L9 12L2 19M22 7H15M22 7V14",
2275
2032
  stroke: "currentColor",
2276
2033
  strokeWidth: "1.5",
@@ -2283,13 +2040,13 @@ XoTrendingUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrendingUpOutlin
2283
2040
  //#endregion
2284
2041
  //#region src/icons/XoUserOutlineIcon.tsx
2285
2042
  var XoUserOutlineIcon = forwardRef((props, ref) => {
2286
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2043
+ return /* @__PURE__ */ jsx(SvgIcon, {
2287
2044
  ref,
2288
2045
  viewBox: "0 0 24 24",
2289
2046
  fill: "none",
2290
2047
  stroke: "currentColor",
2291
2048
  ...props,
2292
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2049
+ children: /* @__PURE__ */ jsx("path", {
2293
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",
2294
2051
  stroke: "currentColor",
2295
2052
  strokeWidth: "1.5"
@@ -2300,13 +2057,13 @@ XoUserOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoUserOutlineIcon";
2300
2057
  //#endregion
2301
2058
  //#region src/icons/XoWalletOutlineIcon.tsx
2302
2059
  var XoWalletOutlineIcon = forwardRef((props, ref) => {
2303
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2060
+ return /* @__PURE__ */ jsx(SvgIcon, {
2304
2061
  ref,
2305
2062
  viewBox: "0 0 24 24",
2306
2063
  fill: "none",
2307
2064
  stroke: "currentColor",
2308
2065
  ...props,
2309
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2066
+ children: /* @__PURE__ */ jsx("path", {
2310
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",
2311
2068
  stroke: "currentColor",
2312
2069
  strokeWidth: "1.5",
@@ -2319,22 +2076,22 @@ XoWalletOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWalletOutlineIcon";
2319
2076
  //#endregion
2320
2077
  //#region src/icons/XoWarningCircleFillIcon.tsx
2321
2078
  var XoWarningCircleFillIcon = forwardRef((props, ref) => {
2322
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2079
+ return /* @__PURE__ */ jsx(SvgIcon, {
2323
2080
  ref,
2324
2081
  viewBox: "0 0 24 24",
2325
2082
  fill: "none",
2326
2083
  stroke: "currentColor",
2327
2084
  ...props,
2328
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", {
2085
+ children: /* @__PURE__ */ jsxs("g", {
2329
2086
  id: "warning-circle-fill",
2330
- children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
2087
+ children: [/* @__PURE__ */ jsx("circle", {
2331
2088
  id: "Ellipse",
2332
2089
  cx: "12",
2333
2090
  cy: "12",
2334
2091
  r: "8",
2335
2092
  stroke: "currentColor",
2336
2093
  strokeWidth: "1.5"
2337
- }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2094
+ }), /* @__PURE__ */ jsx("path", {
2338
2095
  id: "Exclude",
2339
2096
  fillRule: "evenodd",
2340
2097
  clipRule: "evenodd",
@@ -2348,15 +2105,15 @@ XoWarningCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircleFil
2348
2105
  //#endregion
2349
2106
  //#region src/icons/XoWarningCircleOutlineIcon.tsx
2350
2107
  var XoWarningCircleOutlineIcon = forwardRef((props, ref) => {
2351
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2108
+ return /* @__PURE__ */ jsx(SvgIcon, {
2352
2109
  ref,
2353
2110
  viewBox: "0 0 24 24",
2354
2111
  fill: "none",
2355
2112
  stroke: "currentColor",
2356
2113
  ...props,
2357
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", {
2114
+ children: /* @__PURE__ */ jsx("g", {
2358
2115
  id: "warning-circle-outline",
2359
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2116
+ children: /* @__PURE__ */ jsx("path", {
2360
2117
  id: "shape",
2361
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",
2362
2119
  stroke: "currentColor",
@@ -2371,12 +2128,12 @@ XoWarningCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircle
2371
2128
  //#endregion
2372
2129
  //#region src/icons/XoZoomInOutlineIcon.tsx
2373
2130
  var XoZoomInOutlineIcon = forwardRef((props, ref) => {
2374
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2131
+ return /* @__PURE__ */ jsx(SvgIcon, {
2375
2132
  ref,
2376
2133
  viewBox: "0 0 24 24",
2377
2134
  fill: "none",
2378
2135
  ...props,
2379
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2136
+ children: /* @__PURE__ */ jsx("path", {
2380
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",
2381
2138
  fill: "currentColor"
2382
2139
  })
@@ -2386,12 +2143,12 @@ XoZoomInOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoZoomInOutlineIcon";
2386
2143
  //#endregion
2387
2144
  //#region src/icons/XoZoomOutOutlineIcon.tsx
2388
2145
  var XoZoomOutOutlineIcon = forwardRef((props, ref) => {
2389
- return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2146
+ return /* @__PURE__ */ jsx(SvgIcon, {
2390
2147
  ref,
2391
2148
  viewBox: "0 0 24 24",
2392
2149
  fill: "none",
2393
2150
  ...props,
2394
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2151
+ children: /* @__PURE__ */ jsx("path", {
2395
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",
2396
2153
  fill: "currentColor"
2397
2154
  })