@xmart/xorder-ui-icons 0.0.33 → 0.0.35-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -1,1895 +1,2255 @@
1
- import require$$0, { forwardRef, useMemo } from "react";
2
- var jsxRuntime = { exports: {} };
3
- var reactJsxRuntime_production = {};
4
- var hasRequiredReactJsxRuntime_production;
5
- function requireReactJsxRuntime_production() {
6
- if (hasRequiredReactJsxRuntime_production) return reactJsxRuntime_production;
7
- hasRequiredReactJsxRuntime_production = 1;
8
- var REACT_ELEMENT_TYPE = /* @__PURE__ */ Symbol.for("react.transitional.element"), REACT_FRAGMENT_TYPE = /* @__PURE__ */ Symbol.for("react.fragment");
9
- function jsxProd(type, config, maybeKey) {
10
- var key = null;
11
- void 0 !== maybeKey && (key = "" + maybeKey);
12
- void 0 !== config.key && (key = "" + config.key);
13
- if ("key" in config) {
14
- maybeKey = {};
15
- for (var propName in config)
16
- "key" !== propName && (maybeKey[propName] = config[propName]);
17
- } else maybeKey = config;
18
- config = maybeKey.ref;
19
- return {
20
- $$typeof: REACT_ELEMENT_TYPE,
21
- type,
22
- key,
23
- ref: void 0 !== config ? config : null,
24
- props: maybeKey
25
- };
26
- }
27
- reactJsxRuntime_production.Fragment = REACT_FRAGMENT_TYPE;
28
- reactJsxRuntime_production.jsx = jsxProd;
29
- reactJsxRuntime_production.jsxs = jsxProd;
30
- return reactJsxRuntime_production;
31
- }
32
- var reactJsxRuntime_development = {};
33
- var hasRequiredReactJsxRuntime_development;
34
- function requireReactJsxRuntime_development() {
35
- if (hasRequiredReactJsxRuntime_development) return reactJsxRuntime_development;
36
- hasRequiredReactJsxRuntime_development = 1;
37
- "production" !== process.env.NODE_ENV && (function() {
38
- function getComponentNameFromType(type) {
39
- if (null == type) return null;
40
- if ("function" === typeof type)
41
- return type.$$typeof === REACT_CLIENT_REFERENCE ? null : type.displayName || type.name || null;
42
- if ("string" === typeof type) return type;
43
- switch (type) {
44
- case REACT_FRAGMENT_TYPE:
45
- return "Fragment";
46
- case REACT_PROFILER_TYPE:
47
- return "Profiler";
48
- case REACT_STRICT_MODE_TYPE:
49
- return "StrictMode";
50
- case REACT_SUSPENSE_TYPE:
51
- return "Suspense";
52
- case REACT_SUSPENSE_LIST_TYPE:
53
- return "SuspenseList";
54
- case REACT_ACTIVITY_TYPE:
55
- return "Activity";
56
- }
57
- if ("object" === typeof type)
58
- switch ("number" === typeof type.tag && console.error(
59
- "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
60
- ), type.$$typeof) {
61
- case REACT_PORTAL_TYPE:
62
- return "Portal";
63
- case REACT_CONTEXT_TYPE:
64
- return type.displayName || "Context";
65
- case REACT_CONSUMER_TYPE:
66
- return (type._context.displayName || "Context") + ".Consumer";
67
- case REACT_FORWARD_REF_TYPE:
68
- var innerType = type.render;
69
- type = type.displayName;
70
- type || (type = innerType.displayName || innerType.name || "", type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef");
71
- return type;
72
- case REACT_MEMO_TYPE:
73
- return innerType = type.displayName || null, null !== innerType ? innerType : getComponentNameFromType(type.type) || "Memo";
74
- case REACT_LAZY_TYPE:
75
- innerType = type._payload;
76
- type = type._init;
77
- try {
78
- return getComponentNameFromType(type(innerType));
79
- } catch (x) {
80
- }
81
- }
82
- return null;
83
- }
84
- function testStringCoercion(value) {
85
- return "" + value;
86
- }
87
- function checkKeyStringCoercion(value) {
88
- try {
89
- testStringCoercion(value);
90
- var JSCompiler_inline_result = false;
91
- } catch (e) {
92
- JSCompiler_inline_result = true;
93
- }
94
- if (JSCompiler_inline_result) {
95
- JSCompiler_inline_result = console;
96
- var JSCompiler_temp_const = JSCompiler_inline_result.error;
97
- var JSCompiler_inline_result$jscomp$0 = "function" === typeof Symbol && Symbol.toStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
98
- JSCompiler_temp_const.call(
99
- JSCompiler_inline_result,
100
- "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
101
- JSCompiler_inline_result$jscomp$0
102
- );
103
- return testStringCoercion(value);
104
- }
105
- }
106
- function getTaskName(type) {
107
- if (type === REACT_FRAGMENT_TYPE) return "<>";
108
- if ("object" === typeof type && null !== type && type.$$typeof === REACT_LAZY_TYPE)
109
- return "<...>";
110
- try {
111
- var name = getComponentNameFromType(type);
112
- return name ? "<" + name + ">" : "<...>";
113
- } catch (x) {
114
- return "<...>";
115
- }
116
- }
117
- function getOwner() {
118
- var dispatcher = ReactSharedInternals.A;
119
- return null === dispatcher ? null : dispatcher.getOwner();
120
- }
121
- function UnknownOwner() {
122
- return Error("react-stack-top-frame");
123
- }
124
- function hasValidKey(config) {
125
- if (hasOwnProperty.call(config, "key")) {
126
- var getter = Object.getOwnPropertyDescriptor(config, "key").get;
127
- if (getter && getter.isReactWarning) return false;
128
- }
129
- return void 0 !== config.key;
130
- }
131
- function defineKeyPropWarningGetter(props, displayName) {
132
- function warnAboutAccessingKey() {
133
- specialPropKeyWarningShown || (specialPropKeyWarningShown = true, console.error(
134
- "%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)",
135
- displayName
136
- ));
137
- }
138
- warnAboutAccessingKey.isReactWarning = true;
139
- Object.defineProperty(props, "key", {
140
- get: warnAboutAccessingKey,
141
- configurable: true
142
- });
143
- }
144
- function elementRefGetterWithDeprecationWarning() {
145
- var componentName = getComponentNameFromType(this.type);
146
- didWarnAboutElementRef[componentName] || (didWarnAboutElementRef[componentName] = true, console.error(
147
- "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."
148
- ));
149
- componentName = this.props.ref;
150
- return void 0 !== componentName ? componentName : null;
151
- }
152
- function ReactElement(type, key, props, owner, debugStack, debugTask) {
153
- var refProp = props.ref;
154
- type = {
155
- $$typeof: REACT_ELEMENT_TYPE,
156
- type,
157
- key,
158
- props,
159
- _owner: owner
160
- };
161
- null !== (void 0 !== refProp ? refProp : null) ? Object.defineProperty(type, "ref", {
162
- enumerable: false,
163
- get: elementRefGetterWithDeprecationWarning
164
- }) : Object.defineProperty(type, "ref", { enumerable: false, value: null });
165
- type._store = {};
166
- Object.defineProperty(type._store, "validated", {
167
- configurable: false,
168
- enumerable: false,
169
- writable: true,
170
- value: 0
171
- });
172
- Object.defineProperty(type, "_debugInfo", {
173
- configurable: false,
174
- enumerable: false,
175
- writable: true,
176
- value: null
177
- });
178
- Object.defineProperty(type, "_debugStack", {
179
- configurable: false,
180
- enumerable: false,
181
- writable: true,
182
- value: debugStack
183
- });
184
- Object.defineProperty(type, "_debugTask", {
185
- configurable: false,
186
- enumerable: false,
187
- writable: true,
188
- value: debugTask
189
- });
190
- Object.freeze && (Object.freeze(type.props), Object.freeze(type));
191
- return type;
192
- }
193
- function jsxDEVImpl(type, config, maybeKey, isStaticChildren, debugStack, debugTask) {
194
- var children = config.children;
195
- if (void 0 !== children)
196
- if (isStaticChildren)
197
- if (isArrayImpl(children)) {
198
- for (isStaticChildren = 0; isStaticChildren < children.length; isStaticChildren++)
199
- validateChildKeys(children[isStaticChildren]);
200
- Object.freeze && Object.freeze(children);
201
- } else
202
- console.error(
203
- "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
204
- );
205
- else validateChildKeys(children);
206
- if (hasOwnProperty.call(config, "key")) {
207
- children = getComponentNameFromType(type);
208
- var keys = Object.keys(config).filter(function(k) {
209
- return "key" !== k;
210
- });
211
- isStaticChildren = 0 < keys.length ? "{key: someKey, " + keys.join(": ..., ") + ": ...}" : "{key: someKey}";
212
- didWarnAboutKeySpread[children + isStaticChildren] || (keys = 0 < keys.length ? "{" + keys.join(": ..., ") + ": ...}" : "{}", console.error(
213
- '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} />',
214
- isStaticChildren,
215
- children,
216
- keys,
217
- children
218
- ), didWarnAboutKeySpread[children + isStaticChildren] = true);
219
- }
220
- children = null;
221
- void 0 !== maybeKey && (checkKeyStringCoercion(maybeKey), children = "" + maybeKey);
222
- hasValidKey(config) && (checkKeyStringCoercion(config.key), children = "" + config.key);
223
- if ("key" in config) {
224
- maybeKey = {};
225
- for (var propName in config)
226
- "key" !== propName && (maybeKey[propName] = config[propName]);
227
- } else maybeKey = config;
228
- children && defineKeyPropWarningGetter(
229
- maybeKey,
230
- "function" === typeof type ? type.displayName || type.name || "Unknown" : type
231
- );
232
- return ReactElement(
233
- type,
234
- children,
235
- maybeKey,
236
- getOwner(),
237
- debugStack,
238
- debugTask
239
- );
240
- }
241
- function validateChildKeys(node) {
242
- 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));
243
- }
244
- function isValidElement(object) {
245
- return "object" === typeof object && null !== object && object.$$typeof === REACT_ELEMENT_TYPE;
246
- }
247
- var React = require$$0, REACT_ELEMENT_TYPE = /* @__PURE__ */ Symbol.for("react.transitional.element"), REACT_PORTAL_TYPE = /* @__PURE__ */ Symbol.for("react.portal"), REACT_FRAGMENT_TYPE = /* @__PURE__ */ Symbol.for("react.fragment"), REACT_STRICT_MODE_TYPE = /* @__PURE__ */ Symbol.for("react.strict_mode"), REACT_PROFILER_TYPE = /* @__PURE__ */ Symbol.for("react.profiler"), REACT_CONSUMER_TYPE = /* @__PURE__ */ Symbol.for("react.consumer"), REACT_CONTEXT_TYPE = /* @__PURE__ */ Symbol.for("react.context"), REACT_FORWARD_REF_TYPE = /* @__PURE__ */ Symbol.for("react.forward_ref"), REACT_SUSPENSE_TYPE = /* @__PURE__ */ Symbol.for("react.suspense"), REACT_SUSPENSE_LIST_TYPE = /* @__PURE__ */ Symbol.for("react.suspense_list"), REACT_MEMO_TYPE = /* @__PURE__ */ Symbol.for("react.memo"), REACT_LAZY_TYPE = /* @__PURE__ */ Symbol.for("react.lazy"), REACT_ACTIVITY_TYPE = /* @__PURE__ */ Symbol.for("react.activity"), REACT_CLIENT_REFERENCE = /* @__PURE__ */ 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() {
248
- return null;
249
- };
250
- React = {
251
- react_stack_bottom_frame: function(callStackForError) {
252
- return callStackForError();
253
- }
254
- };
255
- var specialPropKeyWarningShown;
256
- var didWarnAboutElementRef = {};
257
- var unknownOwnerDebugStack = React.react_stack_bottom_frame.bind(
258
- React,
259
- UnknownOwner
260
- )();
261
- var unknownOwnerDebugTask = createTask(getTaskName(UnknownOwner));
262
- var didWarnAboutKeySpread = {};
263
- reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
264
- reactJsxRuntime_development.jsx = function(type, config, maybeKey) {
265
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
266
- return jsxDEVImpl(
267
- type,
268
- config,
269
- maybeKey,
270
- false,
271
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
272
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
273
- );
274
- };
275
- reactJsxRuntime_development.jsxs = function(type, config, maybeKey) {
276
- var trackActualOwner = 1e4 > ReactSharedInternals.recentlyCreatedOwnerStacks++;
277
- return jsxDEVImpl(
278
- type,
279
- config,
280
- maybeKey,
281
- true,
282
- trackActualOwner ? Error("react-stack-top-frame") : unknownOwnerDebugStack,
283
- trackActualOwner ? createTask(getTaskName(type)) : unknownOwnerDebugTask
284
- );
285
- };
286
- })();
287
- return reactJsxRuntime_development;
288
- }
289
- var hasRequiredJsxRuntime;
290
- function requireJsxRuntime() {
291
- if (hasRequiredJsxRuntime) return jsxRuntime.exports;
292
- hasRequiredJsxRuntime = 1;
293
- if (process.env.NODE_ENV === "production") {
294
- jsxRuntime.exports = requireReactJsxRuntime_production();
295
- } else {
296
- jsxRuntime.exports = requireReactJsxRuntime_development();
297
- }
298
- return jsxRuntime.exports;
299
- }
300
- var jsxRuntimeExports = requireJsxRuntime();
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
9
+ //#region src/utils.ts
10
+ /**
11
+ * ピクセル値をrem単位に変換します
12
+ * @param value - ピクセル値(数値、文字列、または複数の数値。'16px 8px'のような複数の値を含むことができます)
13
+ * @returns 変換されたrem値
14
+ * @example
15
+ * rem(16) // '1rem'
16
+ * rem(8) // '0.5rem'
17
+ * rem('16px 8px') // '1rem 0.5rem'
18
+ * rem(8, 16) // '0.5rem 1rem'
19
+ * rem(8, 8, 16) // '0.5rem 0.5rem 1rem'
20
+ * rem(16, 8, 8, 16) // '1rem 0.5rem 0.5rem 1rem'
21
+ */
301
22
  function rem(value, ...additionalValues) {
302
- const BASE_FONT_SIZE = 16;
303
- if (typeof value === "number" && additionalValues.length > 0) {
304
- return [value, ...additionalValues].map((val) => `${val / BASE_FONT_SIZE}rem`).join(" ");
305
- }
306
- if (typeof value === "number") {
307
- return `${value / BASE_FONT_SIZE}rem`;
308
- }
309
- return value.split(" ").map((part) => {
310
- const numericValue = parseFloat(part);
311
- if (isNaN(numericValue)) {
312
- return part;
313
- }
314
- return `${numericValue / BASE_FONT_SIZE}rem`;
315
- }).join(" ");
23
+ const BASE_FONT_SIZE = 16;
24
+ if (typeof value === "number" && additionalValues.length > 0) return [value, ...additionalValues].map((val) => `${val / BASE_FONT_SIZE}rem`).join(" ");
25
+ if (typeof value === "number") return `${value / BASE_FONT_SIZE}rem`;
26
+ return value.split(" ").map((part) => {
27
+ const numericValue = parseFloat(part);
28
+ if (isNaN(numericValue)) return part;
29
+ return `${numericValue / BASE_FONT_SIZE}rem`;
30
+ }).join(" ");
316
31
  }
317
- const SvgIcon = forwardRef(
318
- ({
319
- color,
320
- strokeWidth = "0",
321
- size = 24,
322
- title,
323
- children,
324
- style: styleProp,
325
- className,
326
- "aria-hidden": ariaHidden,
327
- "aria-label": ariaLabel,
328
- role,
329
- ...other
330
- }, ref) => {
331
- const style = useMemo(() => {
332
- const remSize = rem(size);
333
- return {
334
- ...styleProp,
335
- color: color || "currentColor",
336
- width: remSize,
337
- height: remSize
338
- };
339
- }, [color, size, styleProp]);
340
- const a11yProps = useMemo(() => ({
341
- role: role || (title || ariaLabel ? "img" : void 0),
342
- ...ariaHidden === void 0 && !title && !ariaLabel ? { "aria-hidden": true } : {}
343
- }), [ariaHidden, title, ariaLabel, role]);
344
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
345
- "svg",
346
- {
347
- "aria-hidden": ariaHidden,
348
- "aria-label": ariaLabel,
349
- fill: "currentColor",
350
- ref,
351
- stroke: "currentColor",
352
- strokeWidth,
353
- style,
354
- viewBox: "0 0 24 24",
355
- xmlns: "http://www.w3.org/2000/svg",
356
- ...a11yProps,
357
- ...other,
358
- children: [
359
- title && /* @__PURE__ */ jsxRuntimeExports.jsx("title", { children: title }),
360
- children
361
- ]
362
- }
363
- );
364
- }
365
- );
32
+ //#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
+ //#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
+ 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", {
273
+ "aria-hidden": ariaHidden,
274
+ "aria-label": ariaLabel,
275
+ fill: "currentColor",
276
+ ref,
277
+ stroke: "currentColor",
278
+ strokeWidth,
279
+ style: useMemo(() => {
280
+ const remSize = rem(size);
281
+ return {
282
+ ...styleProp,
283
+ color: color || "currentColor",
284
+ width: remSize,
285
+ height: remSize
286
+ };
287
+ }, [
288
+ color,
289
+ size,
290
+ styleProp
291
+ ]),
292
+ viewBox: "0 0 24 24",
293
+ xmlns: "http://www.w3.org/2000/svg",
294
+ ...useMemo(() => ({
295
+ role: role || (title || ariaLabel ? "img" : void 0),
296
+ ...ariaHidden === void 0 && !title && !ariaLabel ? { "aria-hidden": true } : {}
297
+ }), [
298
+ ariaHidden,
299
+ title,
300
+ ariaLabel,
301
+ role
302
+ ]),
303
+ ...other,
304
+ children: [title && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("title", { children: title }), children]
305
+ });
306
+ });
366
307
  SvgIcon.displayName = "@xmart/xorder-ui-icons/SvgIcon";
367
- const XoAlarmOutlineIcon = forwardRef((props, ref) => {
368
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
369
- SvgIcon,
370
- {
371
- ref,
372
- viewBox: "0 0 24 24",
373
- fill: "none",
374
- stroke: "currentColor",
375
- ...props,
376
- children: [
377
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: "12", cy: "13", r: "7", stroke: "currentColor", strokeWidth: "1.5" }),
378
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M12 9.5V13L14 15M17 4L20 7M4 7L7 4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
379
- ]
380
- }
381
- );
308
+ //#endregion
309
+ //#region src/icons/XoAlarmOutlineIcon.tsx
310
+ var XoAlarmOutlineIcon = forwardRef((props, ref) => {
311
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
312
+ ref,
313
+ viewBox: "0 0 24 24",
314
+ fill: "none",
315
+ stroke: "currentColor",
316
+ ...props,
317
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
318
+ cx: "12",
319
+ cy: "13",
320
+ r: "7",
321
+ stroke: "currentColor",
322
+ strokeWidth: "1.5"
323
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
324
+ d: "M12 9.5V13L14 15M17 4L20 7M4 7L7 4",
325
+ stroke: "currentColor",
326
+ strokeWidth: "1.5",
327
+ strokeLinecap: "round",
328
+ strokeLinejoin: "round"
329
+ })]
330
+ });
382
331
  });
383
332
  XoAlarmOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAlarmOutlineIcon";
384
- const XoArrowLeftOutlineIcon = forwardRef((props, ref) => {
385
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
386
- SvgIcon,
387
- {
388
- ref,
389
- viewBox: "0 0 24 24",
390
- fill: "none",
391
- stroke: "currentColor",
392
- ...props,
393
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 12L20 12M4 12L10 6M4 12L10 18", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
394
- }
395
- );
333
+ //#endregion
334
+ //#region src/icons/XoArrowLeftOutlineIcon.tsx
335
+ var XoArrowLeftOutlineIcon = forwardRef((props, ref) => {
336
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
337
+ ref,
338
+ viewBox: "0 0 24 24",
339
+ fill: "none",
340
+ stroke: "currentColor",
341
+ ...props,
342
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
343
+ d: "M4 12L20 12M4 12L10 6M4 12L10 18",
344
+ stroke: "currentColor",
345
+ strokeWidth: "1.5",
346
+ strokeLinecap: "round",
347
+ strokeLinejoin: "round"
348
+ })
349
+ });
396
350
  });
397
351
  XoArrowLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoArrowLeftOutlineIcon";
398
- const XoAtEmailOutlineIcon = forwardRef((props, ref) => {
399
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
400
- SvgIcon,
401
- {
402
- ref,
403
- viewBox: "0 0 24 24",
404
- fill: "none",
405
- stroke: "currentColor",
406
- ...props,
407
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
408
- }
409
- );
352
+ //#endregion
353
+ //#region src/icons/XoAtEmailOutlineIcon.tsx
354
+ var XoAtEmailOutlineIcon = forwardRef((props, ref) => {
355
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
356
+ ref,
357
+ viewBox: "0 0 24 24",
358
+ fill: "none",
359
+ stroke: "currentColor",
360
+ ...props,
361
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
362
+ 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",
363
+ stroke: "currentColor",
364
+ strokeWidth: "1.5",
365
+ strokeLinecap: "round",
366
+ strokeLinejoin: "round"
367
+ })
368
+ });
410
369
  });
411
370
  XoAtEmailOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAtEmailOutlineIcon";
412
- const XoAttachmentOutlineIcon = forwardRef((props, ref) => {
413
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
414
- SvgIcon,
415
- {
416
- ref,
417
- viewBox: "0 0 24 24",
418
- fill: "none",
419
- stroke: "currentColor",
420
- ...props,
421
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
422
- }
423
- );
371
+ //#endregion
372
+ //#region src/icons/XoAttachmentOutlineIcon.tsx
373
+ var XoAttachmentOutlineIcon = forwardRef((props, ref) => {
374
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
375
+ ref,
376
+ viewBox: "0 0 24 24",
377
+ fill: "none",
378
+ stroke: "currentColor",
379
+ ...props,
380
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
381
+ 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",
382
+ stroke: "currentColor",
383
+ strokeWidth: "1.5",
384
+ strokeLinecap: "round",
385
+ strokeLinejoin: "round"
386
+ })
387
+ });
424
388
  });
425
389
  XoAttachmentOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoAttachmentOutlineIcon";
426
- const XoBellFillIcon = forwardRef((props, ref) => {
427
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
428
- SvgIcon,
429
- {
430
- ref,
431
- viewBox: "0 0 24 24",
432
- fill: "none",
433
- stroke: "currentColor",
434
- ...props,
435
- children: [
436
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
437
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
438
- ]
439
- }
440
- );
390
+ //#endregion
391
+ //#region src/icons/XoBellFillIcon.tsx
392
+ var XoBellFillIcon = forwardRef((props, ref) => {
393
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
394
+ ref,
395
+ viewBox: "0 0 24 24",
396
+ fill: "none",
397
+ stroke: "currentColor",
398
+ ...props,
399
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
400
+ 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",
401
+ fill: "currentColor"
402
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
403
+ 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",
404
+ stroke: "currentColor",
405
+ strokeWidth: "1.5",
406
+ strokeLinecap: "round",
407
+ strokeLinejoin: "round"
408
+ })]
409
+ });
441
410
  });
442
411
  XoBellFillIcon.displayName = "@xmart/xorder-ui-icons/XoBellFillIcon";
443
- const XoBellOutlineIcon = forwardRef((props, ref) => {
444
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
445
- SvgIcon,
446
- {
447
- ref,
448
- viewBox: "0 0 24 24",
449
- fill: "none",
450
- stroke: "currentColor",
451
- ...props,
452
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
453
- }
454
- );
412
+ //#endregion
413
+ //#region src/icons/XoBellOutlineIcon.tsx
414
+ var XoBellOutlineIcon = forwardRef((props, ref) => {
415
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
416
+ ref,
417
+ viewBox: "0 0 24 24",
418
+ fill: "none",
419
+ stroke: "currentColor",
420
+ ...props,
421
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
422
+ 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",
423
+ stroke: "currentColor",
424
+ strokeWidth: "1.5",
425
+ strokeLinecap: "round",
426
+ strokeLinejoin: "round"
427
+ })
428
+ });
455
429
  });
456
430
  XoBellOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoBellOutlineIcon";
457
- const XoCalendarOutlineIcon = forwardRef((props, ref) => {
458
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
459
- SvgIcon,
460
- {
461
- ref,
462
- viewBox: "0 0 24 24",
463
- fill: "none",
464
- stroke: "currentColor",
465
- ...props,
466
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
467
- }
468
- );
431
+ //#endregion
432
+ //#region src/icons/XoCalendarOutlineIcon.tsx
433
+ var XoCalendarOutlineIcon = forwardRef((props, ref) => {
434
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
435
+ ref,
436
+ viewBox: "0 0 24 24",
437
+ fill: "none",
438
+ stroke: "currentColor",
439
+ ...props,
440
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
441
+ 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",
442
+ stroke: "currentColor",
443
+ strokeWidth: "1.5",
444
+ strokeLinecap: "round",
445
+ strokeLinejoin: "round"
446
+ })
447
+ });
469
448
  });
470
449
  XoCalendarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCalendarOutlineIcon";
471
- const XoCartOutlineIcon = forwardRef((props, ref) => {
472
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
473
- SvgIcon,
474
- {
475
- ref,
476
- viewBox: "0 0 24 24",
477
- fill: "none",
478
- stroke: "currentColor",
479
- ...props,
480
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
481
- }
482
- );
450
+ //#endregion
451
+ //#region src/icons/XoCartOutlineIcon.tsx
452
+ var XoCartOutlineIcon = forwardRef((props, ref) => {
453
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
454
+ ref,
455
+ viewBox: "0 0 24 24",
456
+ fill: "none",
457
+ stroke: "currentColor",
458
+ ...props,
459
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
460
+ 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",
461
+ stroke: "currentColor",
462
+ strokeWidth: "1.5",
463
+ strokeLinecap: "round",
464
+ strokeLinejoin: "round"
465
+ })
466
+ });
483
467
  });
484
468
  XoCartOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCartOutlineIcon";
485
- const XoCatalogFillIcon = forwardRef((props, ref) => {
486
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
487
- SvgIcon,
488
- {
489
- ref,
490
- viewBox: "0 0 24 24",
491
- fill: "none",
492
- stroke: "currentColor",
493
- ...props,
494
- children: [
495
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
496
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" })
497
- ]
498
- }
499
- );
469
+ //#endregion
470
+ //#region src/icons/XoCatalogFillIcon.tsx
471
+ var XoCatalogFillIcon = forwardRef((props, ref) => {
472
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
473
+ ref,
474
+ viewBox: "0 0 24 24",
475
+ fill: "none",
476
+ stroke: "currentColor",
477
+ ...props,
478
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
479
+ 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",
480
+ fill: "currentColor"
481
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
482
+ 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",
483
+ stroke: "currentColor",
484
+ strokeWidth: "1.5",
485
+ strokeLinejoin: "round"
486
+ })]
487
+ });
500
488
  });
501
489
  XoCatalogFillIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogFillIcon";
502
- const XoCatalogOutlineIcon = forwardRef((props, ref) => {
503
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
504
- SvgIcon,
505
- {
506
- ref,
507
- viewBox: "0 0 24 24",
508
- fill: "none",
509
- stroke: "currentColor",
510
- ...props,
511
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" })
512
- }
513
- );
490
+ //#endregion
491
+ //#region src/icons/XoCatalogOutlineIcon.tsx
492
+ var XoCatalogOutlineIcon = forwardRef((props, ref) => {
493
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
494
+ ref,
495
+ viewBox: "0 0 24 24",
496
+ fill: "none",
497
+ stroke: "currentColor",
498
+ ...props,
499
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
500
+ 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",
501
+ stroke: "currentColor",
502
+ strokeWidth: "1.5",
503
+ strokeLinejoin: "round"
504
+ })
505
+ });
514
506
  });
515
507
  XoCatalogOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCatalogOutlineIcon";
516
- const XoCheckCircleFillIcon = forwardRef((props, ref) => {
517
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
518
- SvgIcon,
519
- {
520
- ref,
521
- viewBox: "0 0 24 24",
522
- fill: "none",
523
- stroke: "currentColor",
524
- ...props,
525
- children: [
526
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
527
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" })
528
- ]
529
- }
530
- );
508
+ //#endregion
509
+ //#region src/icons/XoCheckCircleFillIcon.tsx
510
+ var XoCheckCircleFillIcon = forwardRef((props, ref) => {
511
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
512
+ ref,
513
+ viewBox: "0 0 24 24",
514
+ fill: "none",
515
+ stroke: "currentColor",
516
+ ...props,
517
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
518
+ 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",
519
+ stroke: "currentColor",
520
+ strokeWidth: "1.5",
521
+ strokeLinecap: "round",
522
+ strokeLinejoin: "round"
523
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
524
+ fillRule: "evenodd",
525
+ clipRule: "evenodd",
526
+ 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",
527
+ fill: "currentColor"
528
+ })]
529
+ });
531
530
  });
532
531
  XoCheckCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleFillIcon";
533
- const XoCheckCircleOutlineIcon = forwardRef((props, ref) => {
534
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
535
- SvgIcon,
536
- {
537
- ref,
538
- viewBox: "0 0 24 24",
539
- fill: "none",
540
- stroke: "currentColor",
541
- ...props,
542
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
543
- }
544
- );
532
+ //#endregion
533
+ //#region src/icons/XoCheckCircleOutlineIcon.tsx
534
+ var XoCheckCircleOutlineIcon = forwardRef((props, ref) => {
535
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
536
+ ref,
537
+ viewBox: "0 0 24 24",
538
+ fill: "none",
539
+ stroke: "currentColor",
540
+ ...props,
541
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
542
+ 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",
543
+ stroke: "currentColor",
544
+ strokeWidth: "1.5",
545
+ strokeLinecap: "round",
546
+ strokeLinejoin: "round"
547
+ })
548
+ });
545
549
  });
546
550
  XoCheckCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckCircleOutlineIcon";
547
- const XoCheckOutlineIcon = forwardRef((props, ref) => {
548
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
549
- SvgIcon,
550
- {
551
- ref,
552
- viewBox: "0 0 24 24",
553
- fill: "none",
554
- stroke: "currentColor",
555
- ...props,
556
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M20 6L9 18L4 13", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
557
- }
558
- );
551
+ //#endregion
552
+ //#region src/icons/XoCheckOutlineIcon.tsx
553
+ var XoCheckOutlineIcon = forwardRef((props, ref) => {
554
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
555
+ ref,
556
+ viewBox: "0 0 24 24",
557
+ fill: "none",
558
+ stroke: "currentColor",
559
+ ...props,
560
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
561
+ d: "M20 6L9 18L4 13",
562
+ stroke: "currentColor",
563
+ strokeWidth: "1.5",
564
+ strokeLinecap: "round",
565
+ strokeLinejoin: "round"
566
+ })
567
+ });
559
568
  });
560
569
  XoCheckOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckOutlineIcon";
561
- const XoCheckSOutlineIcon = forwardRef((props, ref) => {
562
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
563
- SvgIcon,
564
- {
565
- ref,
566
- viewBox: "0 0 24 24",
567
- fill: "none",
568
- stroke: "currentColor",
569
- ...props,
570
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M17 8L10 16L7 13", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
571
- }
572
- );
570
+ //#endregion
571
+ //#region src/icons/XoCheckSOutlineIcon.tsx
572
+ var XoCheckSOutlineIcon = forwardRef((props, ref) => {
573
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
574
+ ref,
575
+ viewBox: "0 0 24 24",
576
+ fill: "none",
577
+ stroke: "currentColor",
578
+ ...props,
579
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
580
+ d: "M17 8L10 16L7 13",
581
+ stroke: "currentColor",
582
+ strokeWidth: "1.5",
583
+ strokeLinecap: "round",
584
+ strokeLinejoin: "round"
585
+ })
586
+ });
573
587
  });
574
588
  XoCheckSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCheckSOutlineIcon";
575
- const XoChevronCircleDownOutlineIcon = forwardRef((props, ref) => {
576
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
577
- SvgIcon,
578
- {
579
- ref,
580
- viewBox: "0 0 24 24",
581
- fill: "none",
582
- stroke: "currentColor",
583
- ...props,
584
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
585
- }
586
- );
589
+ //#endregion
590
+ //#region src/icons/XoChevronCircleDownOutlineIcon.tsx
591
+ var XoChevronCircleDownOutlineIcon = forwardRef((props, ref) => {
592
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
593
+ ref,
594
+ viewBox: "0 0 24 24",
595
+ fill: "none",
596
+ stroke: "currentColor",
597
+ ...props,
598
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
599
+ 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",
600
+ stroke: "currentColor",
601
+ strokeWidth: "1.5",
602
+ strokeLinecap: "round",
603
+ strokeLinejoin: "round"
604
+ })
605
+ });
587
606
  });
588
607
  XoChevronCircleDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCircleDownOutlineIcon";
589
- const XoChevronCircleLeftOutlineIcon = forwardRef((props, ref) => {
590
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
591
- SvgIcon,
592
- {
593
- ref,
594
- viewBox: "0 0 24 24",
595
- fill: "none",
596
- stroke: "currentColor",
597
- ...props,
598
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
599
- }
600
- );
608
+ //#endregion
609
+ //#region src/icons/XoChevronCircleLeftOutlineIcon.tsx
610
+ var XoChevronCircleLeftOutlineIcon = forwardRef((props, ref) => {
611
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
612
+ ref,
613
+ viewBox: "0 0 24 24",
614
+ fill: "none",
615
+ stroke: "currentColor",
616
+ ...props,
617
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
618
+ 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",
619
+ stroke: "currentColor",
620
+ strokeWidth: "1.5",
621
+ strokeLinecap: "round",
622
+ strokeLinejoin: "round"
623
+ })
624
+ });
601
625
  });
602
626
  XoChevronCircleLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCircleLeftOutlineIcon";
603
- const XoChevronCircleRightOutlineIcon = forwardRef((props, ref) => {
604
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
605
- SvgIcon,
606
- {
607
- ref,
608
- viewBox: "0 0 24 24",
609
- fill: "none",
610
- stroke: "currentColor",
611
- ...props,
612
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
613
- }
614
- );
627
+ //#endregion
628
+ //#region src/icons/XoChevronCircleRightOutlineIcon.tsx
629
+ var XoChevronCircleRightOutlineIcon = forwardRef((props, ref) => {
630
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
631
+ ref,
632
+ viewBox: "0 0 24 24",
633
+ fill: "none",
634
+ stroke: "currentColor",
635
+ ...props,
636
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
637
+ 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",
638
+ stroke: "currentColor",
639
+ strokeWidth: "1.5",
640
+ strokeLinecap: "round",
641
+ strokeLinejoin: "round"
642
+ })
643
+ });
615
644
  });
616
645
  XoChevronCircleRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCircleRightOutlineIcon";
617
- const XoChevronCircleUpOutlineIcon = forwardRef((props, ref) => {
618
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
619
- SvgIcon,
620
- {
621
- ref,
622
- viewBox: "0 0 24 24",
623
- fill: "none",
624
- stroke: "currentColor",
625
- ...props,
626
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
627
- }
628
- );
646
+ //#endregion
647
+ //#region src/icons/XoChevronCircleUpOutlineIcon.tsx
648
+ var XoChevronCircleUpOutlineIcon = forwardRef((props, ref) => {
649
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
650
+ ref,
651
+ viewBox: "0 0 24 24",
652
+ fill: "none",
653
+ stroke: "currentColor",
654
+ ...props,
655
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
656
+ 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",
657
+ stroke: "currentColor",
658
+ strokeWidth: "1.5",
659
+ strokeLinecap: "round",
660
+ strokeLinejoin: "round"
661
+ })
662
+ });
629
663
  });
630
664
  XoChevronCircleUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronCircleUpOutlineIcon";
631
- const XoChevronDownOutlineIcon = forwardRef((props, ref) => {
632
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
633
- SvgIcon,
634
- {
635
- ref,
636
- viewBox: "0 0 24 24",
637
- fill: "none",
638
- stroke: "currentColor",
639
- ...props,
640
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M6 9L12 15L18 9", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
641
- }
642
- );
665
+ //#endregion
666
+ //#region src/icons/XoChevronDownOutlineIcon.tsx
667
+ var XoChevronDownOutlineIcon = forwardRef((props, ref) => {
668
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
669
+ ref,
670
+ viewBox: "0 0 24 24",
671
+ fill: "none",
672
+ stroke: "currentColor",
673
+ ...props,
674
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
675
+ d: "M6 9L12 15L18 9",
676
+ stroke: "currentColor",
677
+ strokeWidth: "1.5",
678
+ strokeLinecap: "round",
679
+ strokeLinejoin: "round"
680
+ })
681
+ });
643
682
  });
644
683
  XoChevronDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronDownOutlineIcon";
645
- const XoChevronLeftOutlineIcon = forwardRef((props, ref) => {
646
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
647
- SvgIcon,
648
- {
649
- ref,
650
- viewBox: "0 0 24 24",
651
- fill: "none",
652
- stroke: "currentColor",
653
- ...props,
654
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M15 6L9 12L15 18", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
655
- }
656
- );
684
+ //#endregion
685
+ //#region src/icons/XoChevronLeftOutlineIcon.tsx
686
+ var XoChevronLeftOutlineIcon = forwardRef((props, ref) => {
687
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
688
+ ref,
689
+ viewBox: "0 0 24 24",
690
+ fill: "none",
691
+ stroke: "currentColor",
692
+ ...props,
693
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
694
+ d: "M15 6L9 12L15 18",
695
+ stroke: "currentColor",
696
+ strokeWidth: "1.5",
697
+ strokeLinecap: "round",
698
+ strokeLinejoin: "round"
699
+ })
700
+ });
657
701
  });
658
702
  XoChevronLeftOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronLeftOutlineIcon";
659
- const XoChevronRightOutlineIcon = forwardRef((props, ref) => {
660
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
661
- SvgIcon,
662
- {
663
- ref,
664
- viewBox: "0 0 24 24",
665
- fill: "none",
666
- stroke: "currentColor",
667
- ...props,
668
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M9 18L15 12L9 6", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
669
- }
670
- );
703
+ //#endregion
704
+ //#region src/icons/XoChevronRightOutlineIcon.tsx
705
+ var XoChevronRightOutlineIcon = forwardRef((props, ref) => {
706
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
707
+ ref,
708
+ viewBox: "0 0 24 24",
709
+ fill: "none",
710
+ stroke: "currentColor",
711
+ ...props,
712
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
713
+ d: "M9 18L15 12L9 6",
714
+ stroke: "currentColor",
715
+ strokeWidth: "1.5",
716
+ strokeLinecap: "round",
717
+ strokeLinejoin: "round"
718
+ })
719
+ });
671
720
  });
672
721
  XoChevronRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronRightOutlineIcon";
673
- const XoChevronUpOutlineIcon = forwardRef((props, ref) => {
674
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
675
- SvgIcon,
676
- {
677
- ref,
678
- viewBox: "0 0 24 24",
679
- fill: "none",
680
- stroke: "currentColor",
681
- ...props,
682
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M18 14L12 8L6 14", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
683
- }
684
- );
722
+ //#endregion
723
+ //#region src/icons/XoChevronUpOutlineIcon.tsx
724
+ var XoChevronUpOutlineIcon = forwardRef((props, ref) => {
725
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
726
+ ref,
727
+ viewBox: "0 0 24 24",
728
+ fill: "none",
729
+ stroke: "currentColor",
730
+ ...props,
731
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
732
+ d: "M18 14L12 8L6 14",
733
+ stroke: "currentColor",
734
+ strokeWidth: "1.5",
735
+ strokeLinecap: "round",
736
+ strokeLinejoin: "round"
737
+ })
738
+ });
685
739
  });
686
740
  XoChevronUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronUpOutlineIcon";
687
- const XoChevronWDownOutlineIcon = forwardRef((props, ref) => {
688
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
689
- SvgIcon,
690
- {
691
- ref,
692
- viewBox: "0 0 24 24",
693
- fill: "none",
694
- stroke: "currentColor",
695
- ...props,
696
- children: [
697
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M7 13L12 17L17 13", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
698
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M7 8L12 12L17 8", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
699
- ]
700
- }
701
- );
741
+ //#endregion
742
+ //#region src/icons/XoChevronWDownOutlineIcon.tsx
743
+ var XoChevronWDownOutlineIcon = forwardRef((props, ref) => {
744
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
745
+ ref,
746
+ viewBox: "0 0 24 24",
747
+ fill: "none",
748
+ stroke: "currentColor",
749
+ ...props,
750
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
751
+ d: "M7 13L12 17L17 13",
752
+ stroke: "currentColor",
753
+ strokeWidth: "1.5",
754
+ strokeLinecap: "round",
755
+ strokeLinejoin: "round"
756
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
757
+ d: "M7 8L12 12L17 8",
758
+ stroke: "currentColor",
759
+ strokeWidth: "1.5",
760
+ strokeLinecap: "round",
761
+ strokeLinejoin: "round"
762
+ })]
763
+ });
702
764
  });
703
765
  XoChevronWDownOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoChevronWDownOutlineIcon";
704
- const XoClockFillIcon = forwardRef((props, ref) => {
705
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
706
- SvgIcon,
707
- {
708
- ref,
709
- viewBox: "0 0 24 24",
710
- fill: "none",
711
- stroke: "currentColor",
712
- ...props,
713
- children: [
714
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" }),
715
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: "12", cy: "12", r: "8", stroke: "currentColor", strokeWidth: "1.5" })
716
- ]
717
- }
718
- );
766
+ //#endregion
767
+ //#region src/icons/XoClockFillIcon.tsx
768
+ var XoClockFillIcon = forwardRef((props, ref) => {
769
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
770
+ ref,
771
+ viewBox: "0 0 24 24",
772
+ fill: "none",
773
+ stroke: "currentColor",
774
+ ...props,
775
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
776
+ fillRule: "evenodd",
777
+ clipRule: "evenodd",
778
+ 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",
779
+ fill: "currentColor"
780
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
781
+ cx: "12",
782
+ cy: "12",
783
+ r: "8",
784
+ stroke: "currentColor",
785
+ strokeWidth: "1.5"
786
+ })]
787
+ });
719
788
  });
720
789
  XoClockFillIcon.displayName = "@xmart/xorder-ui-icons/XoClockFillIcon";
721
- const XoClockOutlineIcon = forwardRef((props, ref) => {
722
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
723
- SvgIcon,
724
- {
725
- ref,
726
- viewBox: "0 0 24 24",
727
- fill: "none",
728
- stroke: "currentColor",
729
- ...props,
730
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
731
- }
732
- );
790
+ //#endregion
791
+ //#region src/icons/XoClockOutlineIcon.tsx
792
+ var XoClockOutlineIcon = forwardRef((props, ref) => {
793
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
794
+ ref,
795
+ viewBox: "0 0 24 24",
796
+ fill: "none",
797
+ stroke: "currentColor",
798
+ ...props,
799
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
800
+ 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",
801
+ stroke: "currentColor",
802
+ strokeWidth: "1.5",
803
+ strokeLinecap: "round",
804
+ strokeLinejoin: "round"
805
+ })
806
+ });
733
807
  });
734
808
  XoClockOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoClockOutlineIcon";
735
- const XoCrossOutlineIcon = forwardRef((props, ref) => {
736
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
737
- SvgIcon,
738
- {
739
- ref,
740
- viewBox: "0 0 24 24",
741
- fill: "none",
742
- stroke: "currentColor",
743
- ...props,
744
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M18 6L6 18M6.00001 6L18 18", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
745
- }
746
- );
809
+ //#endregion
810
+ //#region src/icons/XoCrossOutlineIcon.tsx
811
+ var XoCrossOutlineIcon = forwardRef((props, ref) => {
812
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
813
+ ref,
814
+ viewBox: "0 0 24 24",
815
+ fill: "none",
816
+ stroke: "currentColor",
817
+ ...props,
818
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
819
+ d: "M18 6L6 18M6.00001 6L18 18",
820
+ stroke: "currentColor",
821
+ strokeWidth: "1.5",
822
+ strokeLinecap: "round",
823
+ strokeLinejoin: "round"
824
+ })
825
+ });
747
826
  });
748
827
  XoCrossOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossOutlineIcon";
749
- const XoCrossSOutlineIcon = forwardRef((props, ref) => {
750
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
751
- SvgIcon,
752
- {
753
- ref,
754
- viewBox: "0 0 24 24",
755
- fill: "none",
756
- stroke: "currentColor",
757
- ...props,
758
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M16 8L8 16M8.00001 8L16 16", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
759
- }
760
- );
828
+ //#endregion
829
+ //#region src/icons/XoCrossSOutlineIcon.tsx
830
+ var XoCrossSOutlineIcon = forwardRef((props, ref) => {
831
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
832
+ ref,
833
+ viewBox: "0 0 24 24",
834
+ fill: "none",
835
+ stroke: "currentColor",
836
+ ...props,
837
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
838
+ d: "M16 8L8 16M8.00001 8L16 16",
839
+ stroke: "currentColor",
840
+ strokeWidth: "1.5",
841
+ strokeLinecap: "round",
842
+ strokeLinejoin: "round"
843
+ })
844
+ });
761
845
  });
762
846
  XoCrossSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoCrossSOutlineIcon";
763
- const XoDownloadOutlineIcon = forwardRef((props, ref) => {
764
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
765
- SvgIcon,
766
- {
767
- ref,
768
- viewBox: "0 0 24 24",
769
- fill: "none",
770
- stroke: "currentColor",
771
- ...props,
772
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M20 15V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 15M8 11L12 15M12 15L16 11M12 15V4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
773
- }
774
- );
847
+ //#endregion
848
+ //#region src/icons/XoDownloadOutlineIcon.tsx
849
+ var XoDownloadOutlineIcon = forwardRef((props, ref) => {
850
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
851
+ ref,
852
+ viewBox: "0 0 24 24",
853
+ fill: "none",
854
+ stroke: "currentColor",
855
+ ...props,
856
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
857
+ d: "M20 15V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 15M8 11L12 15M12 15L16 11M12 15V4",
858
+ stroke: "currentColor",
859
+ strokeWidth: "1.5",
860
+ strokeLinecap: "round",
861
+ strokeLinejoin: "round"
862
+ })
863
+ });
775
864
  });
776
865
  XoDownloadOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoDownloadOutlineIcon";
777
- const XoEditOutlineIcon = forwardRef((props, ref) => {
778
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
779
- SvgIcon,
780
- {
781
- ref,
782
- viewBox: "0 0 24 24",
783
- fill: "none",
784
- stroke: "currentColor",
785
- ...props,
786
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M14 6L8 12V16H12L18 10M14 6L17 3L21 7L18 10M14 6L18 10M10 4L4 4L4 20L20 20V14", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
787
- }
788
- );
866
+ //#endregion
867
+ //#region src/icons/XoEditOutlineIcon.tsx
868
+ var XoEditOutlineIcon = forwardRef((props, ref) => {
869
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
870
+ ref,
871
+ viewBox: "0 0 24 24",
872
+ fill: "none",
873
+ stroke: "currentColor",
874
+ ...props,
875
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
876
+ d: "M14 6L8 12V16H12L18 10M14 6L17 3L21 7L18 10M14 6L18 10M10 4L4 4L4 20L20 20V14",
877
+ stroke: "currentColor",
878
+ strokeWidth: "1.5",
879
+ strokeLinecap: "round",
880
+ strokeLinejoin: "round"
881
+ })
882
+ });
789
883
  });
790
884
  XoEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEditOutlineIcon";
791
- const XoEyeClosedOutlineIcon = forwardRef((props, ref) => {
792
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
793
- SvgIcon,
794
- {
795
- ref,
796
- viewBox: "0 0 24 24",
797
- fill: "none",
798
- stroke: "currentColor",
799
- ...props,
800
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
801
- }
802
- );
885
+ //#endregion
886
+ //#region src/icons/XoEyeClosedOutlineIcon.tsx
887
+ var XoEyeClosedOutlineIcon = forwardRef((props, ref) => {
888
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
889
+ ref,
890
+ viewBox: "0 0 24 24",
891
+ fill: "none",
892
+ stroke: "currentColor",
893
+ ...props,
894
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
895
+ 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",
896
+ stroke: "currentColor",
897
+ strokeWidth: "1.5",
898
+ strokeLinecap: "round",
899
+ strokeLinejoin: "round"
900
+ })
901
+ });
803
902
  });
804
903
  XoEyeClosedOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeClosedOutlineIcon";
805
- const XoEyeOpenOutlineIcon = forwardRef((props, ref) => {
806
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
807
- SvgIcon,
808
- {
809
- ref,
810
- viewBox: "0 0 24 24",
811
- fill: "none",
812
- stroke: "currentColor",
813
- ...props,
814
- children: [
815
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
816
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
817
- ]
818
- }
819
- );
904
+ //#endregion
905
+ //#region src/icons/XoEyeOpenOutlineIcon.tsx
906
+ var XoEyeOpenOutlineIcon = forwardRef((props, ref) => {
907
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
908
+ ref,
909
+ viewBox: "0 0 24 24",
910
+ fill: "none",
911
+ stroke: "currentColor",
912
+ ...props,
913
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
914
+ 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",
915
+ stroke: "currentColor",
916
+ strokeWidth: "1.5",
917
+ strokeLinecap: "round",
918
+ strokeLinejoin: "round"
919
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
920
+ 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",
921
+ stroke: "currentColor",
922
+ strokeWidth: "1.5",
923
+ strokeLinecap: "round",
924
+ strokeLinejoin: "round"
925
+ })]
926
+ });
820
927
  });
821
928
  XoEyeOpenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoEyeOpenOutlineIcon";
822
- const XoFiltersOutlineIcon = forwardRef((props, ref) => {
823
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
824
- SvgIcon,
825
- {
826
- ref,
827
- viewBox: "0 0 24 24",
828
- fill: "none",
829
- stroke: "currentColor",
830
- ...props,
831
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
832
- }
833
- );
929
+ //#endregion
930
+ //#region src/icons/XoFiltersOutlineIcon.tsx
931
+ var XoFiltersOutlineIcon = forwardRef((props, ref) => {
932
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
933
+ ref,
934
+ viewBox: "0 0 24 24",
935
+ fill: "none",
936
+ stroke: "currentColor",
937
+ ...props,
938
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
939
+ 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",
940
+ stroke: "currentColor",
941
+ strokeWidth: "1.5",
942
+ strokeLinecap: "round"
943
+ })
944
+ });
834
945
  });
835
946
  XoFiltersOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoFiltersOutlineIcon";
836
- const XoGridOutlineIcon = forwardRef((props, ref) => {
837
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
838
- SvgIcon,
839
- {
840
- ref,
841
- viewBox: "0 0 24 24",
842
- fill: "none",
843
- stroke: "currentColor",
844
- ...props,
845
- children: [
846
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 4H10.5882V10.5882H4V4Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
847
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 13.4118H10.5882V20H4V13.4118Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
848
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M13.4118 4H20V10.5882H13.4118V4Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
849
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M13.4118 13.4118H20V20H13.4118V13.4118Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
850
- ]
851
- }
852
- );
947
+ //#endregion
948
+ //#region src/icons/XoGridOutlineIcon.tsx
949
+ var XoGridOutlineIcon = forwardRef((props, ref) => {
950
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
951
+ ref,
952
+ viewBox: "0 0 24 24",
953
+ fill: "none",
954
+ stroke: "currentColor",
955
+ ...props,
956
+ children: [
957
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
958
+ d: "M4 4H10.5882V10.5882H4V4Z",
959
+ stroke: "currentColor",
960
+ strokeWidth: "1.5",
961
+ strokeLinecap: "round",
962
+ strokeLinejoin: "round"
963
+ }),
964
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
965
+ d: "M4 13.4118H10.5882V20H4V13.4118Z",
966
+ stroke: "currentColor",
967
+ strokeWidth: "1.5",
968
+ strokeLinecap: "round",
969
+ strokeLinejoin: "round"
970
+ }),
971
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
972
+ d: "M13.4118 4H20V10.5882H13.4118V4Z",
973
+ stroke: "currentColor",
974
+ strokeWidth: "1.5",
975
+ strokeLinecap: "round",
976
+ strokeLinejoin: "round"
977
+ }),
978
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
979
+ d: "M13.4118 13.4118H20V20H13.4118V13.4118Z",
980
+ stroke: "currentColor",
981
+ strokeWidth: "1.5",
982
+ strokeLinecap: "round",
983
+ strokeLinejoin: "round"
984
+ })
985
+ ]
986
+ });
853
987
  });
854
988
  XoGridOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoGridOutlineIcon";
855
- const XoHomeFillIcon = forwardRef((props, ref) => {
856
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
857
- SvgIcon,
858
- {
859
- ref,
860
- viewBox: "0 0 24 24",
861
- fill: "none",
862
- stroke: "currentColor",
863
- ...props,
864
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
865
- }
866
- );
989
+ //#endregion
990
+ //#region src/icons/XoHomeFillIcon.tsx
991
+ var XoHomeFillIcon = forwardRef((props, ref) => {
992
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
993
+ ref,
994
+ viewBox: "0 0 24 24",
995
+ fill: "none",
996
+ stroke: "currentColor",
997
+ ...props,
998
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
999
+ 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",
1000
+ fill: "currentColor",
1001
+ stroke: "currentColor",
1002
+ strokeWidth: "1.5",
1003
+ strokeLinecap: "round",
1004
+ strokeLinejoin: "round"
1005
+ })
1006
+ });
867
1007
  });
868
1008
  XoHomeFillIcon.displayName = "@xmart/xorder-ui-icons/XoHomeFillIcon";
869
- const XoHomeOutlineIcon = forwardRef((props, ref) => {
870
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
871
- SvgIcon,
872
- {
873
- ref,
874
- viewBox: "0 0 24 24",
875
- fill: "none",
876
- stroke: "currentColor",
877
- ...props,
878
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
879
- }
880
- );
1009
+ //#endregion
1010
+ //#region src/icons/XoHomeOutlineIcon.tsx
1011
+ var XoHomeOutlineIcon = forwardRef((props, ref) => {
1012
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1013
+ ref,
1014
+ viewBox: "0 0 24 24",
1015
+ fill: "none",
1016
+ stroke: "currentColor",
1017
+ ...props,
1018
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1019
+ 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",
1020
+ stroke: "currentColor",
1021
+ strokeWidth: "1.5",
1022
+ strokeLinecap: "round",
1023
+ strokeLinejoin: "round"
1024
+ })
1025
+ });
881
1026
  });
882
1027
  XoHomeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoHomeOutlineIcon";
883
- const XoImageAddOutlineIcon = forwardRef((props, ref) => {
884
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
885
- SvgIcon,
886
- {
887
- ref,
888
- viewBox: "0 0 24 24",
889
- fill: "none",
890
- ...props,
891
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
892
- }
893
- );
1028
+ //#endregion
1029
+ //#region src/icons/XoImageAddOutlineIcon.tsx
1030
+ var XoImageAddOutlineIcon = forwardRef((props, ref) => {
1031
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1032
+ ref,
1033
+ viewBox: "0 0 24 24",
1034
+ fill: "none",
1035
+ ...props,
1036
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1037
+ 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",
1038
+ fill: "currentColor"
1039
+ })
1040
+ });
894
1041
  });
895
1042
  XoImageAddOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageAddOutlineIcon";
896
- const XoImageEditOutlineIcon = forwardRef((props, ref) => {
897
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
898
- SvgIcon,
899
- {
900
- ref,
901
- viewBox: "0 0 24 24",
902
- fill: "none",
903
- ...props,
904
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
905
- }
906
- );
1043
+ //#endregion
1044
+ //#region src/icons/XoImageEditOutlineIcon.tsx
1045
+ var XoImageEditOutlineIcon = forwardRef((props, ref) => {
1046
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1047
+ ref,
1048
+ viewBox: "0 0 24 24",
1049
+ fill: "none",
1050
+ ...props,
1051
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1052
+ 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",
1053
+ fill: "currentColor"
1054
+ })
1055
+ });
907
1056
  });
908
1057
  XoImageEditOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageEditOutlineIcon";
909
- const XoImageOutlineIcon = forwardRef((props, ref) => {
910
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
911
- SvgIcon,
912
- {
913
- ref,
914
- viewBox: "0 0 24 24",
915
- fill: "none",
916
- ...props,
917
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
918
- }
919
- );
1058
+ //#endregion
1059
+ //#region src/icons/XoImageOutlineIcon.tsx
1060
+ var XoImageOutlineIcon = forwardRef((props, ref) => {
1061
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1062
+ ref,
1063
+ viewBox: "0 0 24 24",
1064
+ fill: "none",
1065
+ ...props,
1066
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1067
+ 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",
1068
+ fill: "currentColor"
1069
+ })
1070
+ });
920
1071
  });
921
1072
  XoImageOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoImageOutlineIcon";
922
- const XoInboxOutlineIcon = forwardRef((props, ref) => {
923
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
924
- SvgIcon,
925
- {
926
- ref,
927
- viewBox: "0 0 24 24",
928
- fill: "none",
929
- stroke: "currentColor",
930
- ...props,
931
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
932
- }
933
- );
1073
+ //#endregion
1074
+ //#region src/icons/XoInboxOutlineIcon.tsx
1075
+ var XoInboxOutlineIcon = forwardRef((props, ref) => {
1076
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1077
+ ref,
1078
+ viewBox: "0 0 24 24",
1079
+ fill: "none",
1080
+ stroke: "currentColor",
1081
+ ...props,
1082
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1083
+ 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",
1084
+ stroke: "currentColor",
1085
+ strokeWidth: "1.5",
1086
+ strokeLinecap: "round",
1087
+ strokeLinejoin: "round"
1088
+ })
1089
+ });
934
1090
  });
935
1091
  XoInboxOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInboxOutlineIcon";
936
- const XoInfoCircleFillIcon = forwardRef((props, ref) => {
937
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
938
- SvgIcon,
939
- {
940
- ref,
941
- viewBox: "0 0 24 24",
942
- fill: "none",
943
- stroke: "currentColor",
944
- ...props,
945
- children: [
946
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: "12", cy: "12", r: "8", stroke: "currentColor", strokeWidth: "1.5" }),
947
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" })
948
- ]
949
- }
950
- );
1092
+ //#endregion
1093
+ //#region src/icons/XoInfoCircleFillIcon.tsx
1094
+ var XoInfoCircleFillIcon = forwardRef((props, ref) => {
1095
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1096
+ ref,
1097
+ viewBox: "0 0 24 24",
1098
+ fill: "none",
1099
+ stroke: "currentColor",
1100
+ ...props,
1101
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
1102
+ cx: "12",
1103
+ cy: "12",
1104
+ r: "8",
1105
+ stroke: "currentColor",
1106
+ strokeWidth: "1.5"
1107
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1108
+ fillRule: "evenodd",
1109
+ clipRule: "evenodd",
1110
+ 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",
1111
+ fill: "currentColor"
1112
+ })]
1113
+ });
951
1114
  });
952
1115
  XoInfoCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleFillIcon";
953
- const XoInfoCircleOutlineIcon = forwardRef((props, ref) => {
954
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
955
- SvgIcon,
956
- {
957
- ref,
958
- viewBox: "0 0 24 24",
959
- fill: "none",
960
- stroke: "currentColor",
961
- ...props,
962
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
963
- }
964
- );
1116
+ //#endregion
1117
+ //#region src/icons/XoInfoCircleOutlineIcon.tsx
1118
+ var XoInfoCircleOutlineIcon = forwardRef((props, ref) => {
1119
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1120
+ ref,
1121
+ viewBox: "0 0 24 24",
1122
+ fill: "none",
1123
+ stroke: "currentColor",
1124
+ ...props,
1125
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1126
+ 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",
1127
+ stroke: "currentColor",
1128
+ strokeWidth: "1.5",
1129
+ strokeLinecap: "round",
1130
+ strokeLinejoin: "round"
1131
+ })
1132
+ });
965
1133
  });
966
1134
  XoInfoCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoInfoCircleOutlineIcon";
967
- const XoLaptopOutlineIcon = forwardRef((props, ref) => {
968
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
969
- SvgIcon,
970
- {
971
- ref,
972
- viewBox: "0 0 24 24",
973
- fill: "none",
974
- stroke: "currentColor",
975
- ...props,
976
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
977
- }
978
- );
1135
+ //#endregion
1136
+ //#region src/icons/XoLaptopOutlineIcon.tsx
1137
+ var XoLaptopOutlineIcon = forwardRef((props, ref) => {
1138
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1139
+ ref,
1140
+ viewBox: "0 0 24 24",
1141
+ fill: "none",
1142
+ stroke: "currentColor",
1143
+ ...props,
1144
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1145
+ 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",
1146
+ stroke: "currentColor",
1147
+ strokeWidth: "1.5",
1148
+ strokeLinecap: "round",
1149
+ strokeLinejoin: "round"
1150
+ })
1151
+ });
979
1152
  });
980
1153
  XoLaptopOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLaptopOutlineIcon";
981
- const XoLikeFillIcon = forwardRef((props, ref) => {
982
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
983
- SvgIcon,
984
- {
985
- ref,
986
- viewBox: "0 0 24 24",
987
- fill: "none",
988
- stroke: "currentColor",
989
- ...props,
990
- children: [
991
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" }),
992
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
993
- ]
994
- }
995
- );
1154
+ //#endregion
1155
+ //#region src/icons/XoLikeFillIcon.tsx
1156
+ var XoLikeFillIcon = forwardRef((props, ref) => {
1157
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1158
+ ref,
1159
+ viewBox: "0 0 24 24",
1160
+ fill: "none",
1161
+ stroke: "currentColor",
1162
+ ...props,
1163
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1164
+ 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",
1165
+ stroke: "currentColor",
1166
+ strokeWidth: "1.5",
1167
+ strokeLinejoin: "round"
1168
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1169
+ 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",
1170
+ fill: "currentColor"
1171
+ })]
1172
+ });
996
1173
  });
997
1174
  XoLikeFillIcon.displayName = "@xmart/xorder-ui-icons/XoLikeFillIcon";
998
- const XoLikeOutlineIcon = forwardRef((props, ref) => {
999
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1000
- SvgIcon,
1001
- {
1002
- ref,
1003
- viewBox: "0 0 24 24",
1004
- fill: "none",
1005
- stroke: "currentColor",
1006
- ...props,
1007
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" })
1008
- }
1009
- );
1175
+ //#endregion
1176
+ //#region src/icons/XoLikeOutlineIcon.tsx
1177
+ var XoLikeOutlineIcon = forwardRef((props, ref) => {
1178
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1179
+ ref,
1180
+ viewBox: "0 0 24 24",
1181
+ fill: "none",
1182
+ stroke: "currentColor",
1183
+ ...props,
1184
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1185
+ 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",
1186
+ stroke: "currentColor",
1187
+ strokeWidth: "1.5",
1188
+ strokeLinejoin: "round"
1189
+ })
1190
+ });
1010
1191
  });
1011
1192
  XoLikeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLikeOutlineIcon";
1012
- const XoListRightOutlineIcon = forwardRef((props, ref) => {
1013
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1014
- SvgIcon,
1015
- {
1016
- ref,
1017
- viewBox: "0 0 24 24",
1018
- fill: "none",
1019
- stroke: "currentColor",
1020
- ...props,
1021
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M7 8H17M7 12H17M7 16H13M4 4H20V20H4V4Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1022
- }
1023
- );
1193
+ //#endregion
1194
+ //#region src/icons/XoListRightOutlineIcon.tsx
1195
+ var XoListRightOutlineIcon = forwardRef((props, ref) => {
1196
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1197
+ ref,
1198
+ viewBox: "0 0 24 24",
1199
+ fill: "none",
1200
+ stroke: "currentColor",
1201
+ ...props,
1202
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1203
+ d: "M7 8H17M7 12H17M7 16H13M4 4H20V20H4V4Z",
1204
+ stroke: "currentColor",
1205
+ strokeWidth: "1.5",
1206
+ strokeLinecap: "round",
1207
+ strokeLinejoin: "round"
1208
+ })
1209
+ });
1024
1210
  });
1025
1211
  XoListRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoListRightOutlineIcon";
1026
- const XoLockOffOutlineIcon = forwardRef((props, ref) => {
1027
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1028
- SvgIcon,
1029
- {
1030
- ref,
1031
- viewBox: "0 0 24 24",
1032
- fill: "none",
1033
- stroke: "currentColor",
1034
- ...props,
1035
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M8 11V7C8 5.66667 8.8 3 12 3C13.9103 3 14.9653 3.95032 15.5054 5M8 11H5V21H19V11H8Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1036
- }
1037
- );
1212
+ //#endregion
1213
+ //#region src/icons/XoLockOffOutlineIcon.tsx
1214
+ var XoLockOffOutlineIcon = forwardRef((props, ref) => {
1215
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1216
+ ref,
1217
+ viewBox: "0 0 24 24",
1218
+ fill: "none",
1219
+ stroke: "currentColor",
1220
+ ...props,
1221
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1222
+ d: "M8 11V7C8 5.66667 8.8 3 12 3C13.9103 3 14.9653 3.95032 15.5054 5M8 11H5V21H19V11H8Z",
1223
+ stroke: "currentColor",
1224
+ strokeWidth: "1.5",
1225
+ strokeLinecap: "round",
1226
+ strokeLinejoin: "round"
1227
+ })
1228
+ });
1038
1229
  });
1039
1230
  XoLockOffOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOffOutlineIcon";
1040
- const XoLockOnOutlineIcon = forwardRef((props, ref) => {
1041
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1042
- SvgIcon,
1043
- {
1044
- ref,
1045
- viewBox: "0 0 24 24",
1046
- fill: "none",
1047
- stroke: "currentColor",
1048
- ...props,
1049
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M8 11V7C8 5.66667 8.8 3 12 3C15.2 3 16 5.66667 16 7V11M8 11H5V21H19V11H16M8 11H16", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1050
- }
1051
- );
1231
+ //#endregion
1232
+ //#region src/icons/XoLockOnOutlineIcon.tsx
1233
+ var XoLockOnOutlineIcon = forwardRef((props, ref) => {
1234
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1235
+ ref,
1236
+ viewBox: "0 0 24 24",
1237
+ fill: "none",
1238
+ stroke: "currentColor",
1239
+ ...props,
1240
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1241
+ d: "M8 11V7C8 5.66667 8.8 3 12 3C15.2 3 16 5.66667 16 7V11M8 11H5V21H19V11H16M8 11H16",
1242
+ stroke: "currentColor",
1243
+ strokeWidth: "1.5",
1244
+ strokeLinecap: "round",
1245
+ strokeLinejoin: "round"
1246
+ })
1247
+ });
1052
1248
  });
1053
1249
  XoLockOnOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoLockOnOutlineIcon";
1054
- const XoMailOutlineIcon = forwardRef((props, ref) => {
1055
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1056
- SvgIcon,
1057
- {
1058
- ref,
1059
- viewBox: "0 0 24 24",
1060
- fill: "none",
1061
- stroke: "currentColor",
1062
- ...props,
1063
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1064
- }
1065
- );
1250
+ //#endregion
1251
+ //#region src/icons/XoMailOutlineIcon.tsx
1252
+ var XoMailOutlineIcon = forwardRef((props, ref) => {
1253
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1254
+ ref,
1255
+ viewBox: "0 0 24 24",
1256
+ fill: "none",
1257
+ stroke: "currentColor",
1258
+ ...props,
1259
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1260
+ 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",
1261
+ stroke: "currentColor",
1262
+ strokeWidth: "1.5",
1263
+ strokeLinecap: "round",
1264
+ strokeLinejoin: "round"
1265
+ })
1266
+ });
1066
1267
  });
1067
1268
  XoMailOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMailOutlineIcon";
1068
- const XoMenuOutlineIcon = forwardRef((props, ref) => {
1069
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1070
- SvgIcon,
1071
- {
1072
- ref,
1073
- viewBox: "0 0 24 24",
1074
- fill: "none",
1075
- stroke: "currentColor",
1076
- ...props,
1077
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 18H20M4 12H20M4 6H20", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
1078
- }
1079
- );
1269
+ //#endregion
1270
+ //#region src/icons/XoMenuOutlineIcon.tsx
1271
+ var XoMenuOutlineIcon = forwardRef((props, ref) => {
1272
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1273
+ ref,
1274
+ viewBox: "0 0 24 24",
1275
+ fill: "none",
1276
+ stroke: "currentColor",
1277
+ ...props,
1278
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1279
+ d: "M4 18H20M4 12H20M4 6H20",
1280
+ stroke: "currentColor",
1281
+ strokeWidth: "2",
1282
+ strokeLinecap: "round",
1283
+ strokeLinejoin: "round"
1284
+ })
1285
+ });
1080
1286
  });
1081
1287
  XoMenuOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMenuOutlineIcon";
1082
- const XoMenuVerticalFillIcon = forwardRef((props, ref) => {
1083
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1084
- SvgIcon,
1085
- {
1086
- ref,
1087
- viewBox: "0 0 24 24",
1088
- fill: "none",
1089
- ...props,
1090
- children: [
1091
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1092
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1093
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1094
- ]
1095
- }
1096
- );
1288
+ //#endregion
1289
+ //#region src/icons/XoMenuVerticalFillIcon.tsx
1290
+ var XoMenuVerticalFillIcon = forwardRef((props, ref) => {
1291
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1292
+ ref,
1293
+ viewBox: "0 0 24 24",
1294
+ fill: "none",
1295
+ ...props,
1296
+ children: [
1297
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1298
+ 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",
1299
+ fill: "currentColor"
1300
+ }),
1301
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1302
+ 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",
1303
+ fill: "currentColor"
1304
+ }),
1305
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1306
+ 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",
1307
+ fill: "currentColor"
1308
+ })
1309
+ ]
1310
+ });
1097
1311
  });
1098
1312
  XoMenuVerticalFillIcon.displayName = "@xmart/xorder-ui-icons/XoMenuVerticalFillIcon";
1099
- const XoMessageCircleDotsOutlineIcon = forwardRef((props, ref) => {
1100
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1101
- SvgIcon,
1102
- {
1103
- ref,
1104
- viewBox: "0 0 24 24",
1105
- fill: "none",
1106
- stroke: "currentColor",
1107
- ...props,
1108
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1109
- }
1110
- );
1313
+ //#endregion
1314
+ //#region src/icons/XoMessageCircleDotsOutlineIcon.tsx
1315
+ var XoMessageCircleDotsOutlineIcon = forwardRef((props, ref) => {
1316
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1317
+ ref,
1318
+ viewBox: "0 0 24 24",
1319
+ fill: "none",
1320
+ stroke: "currentColor",
1321
+ ...props,
1322
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1323
+ 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",
1324
+ stroke: "currentColor",
1325
+ strokeWidth: "1.5",
1326
+ strokeLinecap: "round",
1327
+ strokeLinejoin: "round"
1328
+ })
1329
+ });
1111
1330
  });
1112
1331
  XoMessageCircleDotsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMessageCircleDotsOutlineIcon";
1113
- const XoMinusCircleFillIcon = forwardRef((props, ref) => {
1114
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1115
- SvgIcon,
1116
- {
1117
- ref,
1118
- viewBox: "0 0 24 24",
1119
- fill: "none",
1120
- stroke: "currentColor",
1121
- ...props,
1122
- children: [
1123
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
1124
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" })
1125
- ]
1126
- }
1127
- );
1332
+ //#endregion
1333
+ //#region src/icons/XoMinusCircleFillIcon.tsx
1334
+ var XoMinusCircleFillIcon = forwardRef((props, ref) => {
1335
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1336
+ ref,
1337
+ viewBox: "0 0 24 24",
1338
+ fill: "none",
1339
+ stroke: "currentColor",
1340
+ ...props,
1341
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1342
+ 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",
1343
+ stroke: "currentColor",
1344
+ strokeWidth: "1.5",
1345
+ strokeLinecap: "round",
1346
+ strokeLinejoin: "round"
1347
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1348
+ fillRule: "evenodd",
1349
+ clipRule: "evenodd",
1350
+ 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",
1351
+ fill: "currentColor"
1352
+ })]
1353
+ });
1128
1354
  });
1129
1355
  XoMinusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleFillIcon";
1130
- const XoMinusCircleOutlineIcon = forwardRef((props, ref) => {
1131
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1132
- SvgIcon,
1133
- {
1134
- ref,
1135
- viewBox: "0 0 24 24",
1136
- fill: "none",
1137
- stroke: "currentColor",
1138
- ...props,
1139
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1140
- }
1141
- );
1356
+ //#endregion
1357
+ //#region src/icons/XoMinusCircleOutlineIcon.tsx
1358
+ var XoMinusCircleOutlineIcon = forwardRef((props, ref) => {
1359
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1360
+ ref,
1361
+ viewBox: "0 0 24 24",
1362
+ fill: "none",
1363
+ stroke: "currentColor",
1364
+ ...props,
1365
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1366
+ 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",
1367
+ stroke: "currentColor",
1368
+ strokeWidth: "1.5",
1369
+ strokeLinecap: "round",
1370
+ strokeLinejoin: "round"
1371
+ })
1372
+ });
1142
1373
  });
1143
1374
  XoMinusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusCircleOutlineIcon";
1144
- const XoMinusOutlineIcon = forwardRef((props, ref) => {
1145
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1146
- SvgIcon,
1147
- {
1148
- ref,
1149
- viewBox: "0 0 24 24",
1150
- fill: "none",
1151
- stroke: "currentColor",
1152
- ...props,
1153
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 12H20", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1154
- }
1155
- );
1375
+ //#endregion
1376
+ //#region src/icons/XoMinusOutlineIcon.tsx
1377
+ var XoMinusOutlineIcon = forwardRef((props, ref) => {
1378
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1379
+ ref,
1380
+ viewBox: "0 0 24 24",
1381
+ fill: "none",
1382
+ stroke: "currentColor",
1383
+ ...props,
1384
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1385
+ d: "M4 12H20",
1386
+ stroke: "currentColor",
1387
+ strokeWidth: "1.5",
1388
+ strokeLinecap: "round",
1389
+ strokeLinejoin: "round"
1390
+ })
1391
+ });
1156
1392
  });
1157
1393
  XoMinusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusOutlineIcon";
1158
- const XoMinusSOutlineIcon = forwardRef((props, ref) => {
1159
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1160
- SvgIcon,
1161
- {
1162
- ref,
1163
- viewBox: "0 0 24 24",
1164
- fill: "none",
1165
- stroke: "currentColor",
1166
- ...props,
1167
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M6 12H18", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1168
- }
1169
- );
1394
+ //#endregion
1395
+ //#region src/icons/XoMinusSOutlineIcon.tsx
1396
+ var XoMinusSOutlineIcon = forwardRef((props, ref) => {
1397
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1398
+ ref,
1399
+ viewBox: "0 0 24 24",
1400
+ fill: "none",
1401
+ stroke: "currentColor",
1402
+ ...props,
1403
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1404
+ d: "M6 12H18",
1405
+ stroke: "currentColor",
1406
+ strokeWidth: "1.5",
1407
+ strokeLinecap: "round",
1408
+ strokeLinejoin: "round"
1409
+ })
1410
+ });
1170
1411
  });
1171
1412
  XoMinusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoMinusSOutlineIcon";
1172
- const XoNewscreenOutlineIcon = forwardRef((props, ref) => {
1173
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1174
- SvgIcon,
1175
- {
1176
- ref,
1177
- viewBox: "0 0 24 24",
1178
- fill: "none",
1179
- stroke: "currentColor",
1180
- ...props,
1181
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M19.9999 4.00001L9.99994 14M19.9999 4.00001L20 10M19.9999 4.00001L14 4M10 4.00001H4V20H20V14", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1182
- }
1183
- );
1413
+ //#endregion
1414
+ //#region src/icons/XoNewscreenOutlineIcon.tsx
1415
+ var XoNewscreenOutlineIcon = forwardRef((props, ref) => {
1416
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1417
+ ref,
1418
+ viewBox: "0 0 24 24",
1419
+ fill: "none",
1420
+ stroke: "currentColor",
1421
+ ...props,
1422
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1423
+ d: "M19.9999 4.00001L9.99994 14M19.9999 4.00001L20 10M19.9999 4.00001L14 4M10 4.00001H4V20H20V14",
1424
+ stroke: "currentColor",
1425
+ strokeWidth: "1.5",
1426
+ strokeLinecap: "round",
1427
+ strokeLinejoin: "round"
1428
+ })
1429
+ });
1184
1430
  });
1185
1431
  XoNewscreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoNewscreenOutlineIcon";
1186
- const XoPauseFillIcon = forwardRef((props, ref) => {
1187
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1188
- SvgIcon,
1189
- {
1190
- ref,
1191
- viewBox: "0 0 24 24",
1192
- fill: "none",
1193
- stroke: "currentColor",
1194
- ...props,
1195
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M15 6V18M9 6V18", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" })
1196
- }
1197
- );
1432
+ //#endregion
1433
+ //#region src/icons/XoPauseFillIcon.tsx
1434
+ var XoPauseFillIcon = forwardRef((props, ref) => {
1435
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1436
+ ref,
1437
+ viewBox: "0 0 24 24",
1438
+ fill: "none",
1439
+ stroke: "currentColor",
1440
+ ...props,
1441
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1442
+ d: "M15 6V18M9 6V18",
1443
+ stroke: "currentColor",
1444
+ strokeWidth: "2",
1445
+ strokeLinecap: "round",
1446
+ strokeLinejoin: "round"
1447
+ })
1448
+ });
1198
1449
  });
1199
1450
  XoPauseFillIcon.displayName = "@xmart/xorder-ui-icons/XoPauseFillIcon";
1200
- const XoPhoneOutlineIcon = forwardRef((props, ref) => {
1201
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1202
- SvgIcon,
1203
- {
1204
- ref,
1205
- viewBox: "0 0 24 24",
1206
- fill: "none",
1207
- stroke: "currentColor",
1208
- ...props,
1209
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1210
- }
1211
- );
1451
+ //#endregion
1452
+ //#region src/icons/XoPhoneOutlineIcon.tsx
1453
+ var XoPhoneOutlineIcon = forwardRef((props, ref) => {
1454
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1455
+ ref,
1456
+ viewBox: "0 0 24 24",
1457
+ fill: "none",
1458
+ stroke: "currentColor",
1459
+ ...props,
1460
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1461
+ 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",
1462
+ stroke: "currentColor",
1463
+ strokeWidth: "1.5",
1464
+ strokeLinecap: "round",
1465
+ strokeLinejoin: "round"
1466
+ })
1467
+ });
1212
1468
  });
1213
1469
  XoPhoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPhoneOutlineIcon";
1214
- const XoPlayFillIcon = forwardRef((props, ref) => {
1215
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1216
- SvgIcon,
1217
- {
1218
- ref,
1219
- viewBox: "0 0 24 24",
1220
- fill: "none",
1221
- stroke: "currentColor",
1222
- ...props,
1223
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M8 6V18L18 12L8 6Z", fill: "currentColor", stroke: "currentColor", strokeWidth: "1.5", strokeLinejoin: "round" })
1224
- }
1225
- );
1470
+ //#endregion
1471
+ //#region src/icons/XoPlayFillIcon.tsx
1472
+ var XoPlayFillIcon = forwardRef((props, ref) => {
1473
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1474
+ ref,
1475
+ viewBox: "0 0 24 24",
1476
+ fill: "none",
1477
+ stroke: "currentColor",
1478
+ ...props,
1479
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1480
+ d: "M8 6V18L18 12L8 6Z",
1481
+ fill: "currentColor",
1482
+ stroke: "currentColor",
1483
+ strokeWidth: "1.5",
1484
+ strokeLinejoin: "round"
1485
+ })
1486
+ });
1226
1487
  });
1227
1488
  XoPlayFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlayFillIcon";
1228
- const XoPlusCircleFillIcon = forwardRef((props, ref) => {
1229
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1230
- SvgIcon,
1231
- {
1232
- ref,
1233
- viewBox: "0 0 24 24",
1234
- fill: "none",
1235
- stroke: "currentColor",
1236
- ...props,
1237
- children: [
1238
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: "12", cy: "12", r: "8", stroke: "currentColor", strokeWidth: "1.5" }),
1239
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" })
1240
- ]
1241
- }
1242
- );
1489
+ //#endregion
1490
+ //#region src/icons/XoPlusCircleFillIcon.tsx
1491
+ var XoPlusCircleFillIcon = forwardRef((props, ref) => {
1492
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1493
+ ref,
1494
+ viewBox: "0 0 24 24",
1495
+ fill: "none",
1496
+ stroke: "currentColor",
1497
+ ...props,
1498
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
1499
+ cx: "12",
1500
+ cy: "12",
1501
+ r: "8",
1502
+ stroke: "currentColor",
1503
+ strokeWidth: "1.5"
1504
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1505
+ fillRule: "evenodd",
1506
+ clipRule: "evenodd",
1507
+ 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",
1508
+ fill: "currentColor"
1509
+ })]
1510
+ });
1243
1511
  });
1244
1512
  XoPlusCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleFillIcon";
1245
- const XoPlusCircleOutlineIcon = forwardRef((props, ref) => {
1246
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1247
- SvgIcon,
1248
- {
1249
- ref,
1250
- viewBox: "0 0 24 24",
1251
- fill: "none",
1252
- stroke: "currentColor",
1253
- ...props,
1254
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1255
- }
1256
- );
1513
+ //#endregion
1514
+ //#region src/icons/XoPlusCircleOutlineIcon.tsx
1515
+ var XoPlusCircleOutlineIcon = forwardRef((props, ref) => {
1516
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1517
+ ref,
1518
+ viewBox: "0 0 24 24",
1519
+ fill: "none",
1520
+ stroke: "currentColor",
1521
+ ...props,
1522
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1523
+ 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",
1524
+ stroke: "currentColor",
1525
+ strokeWidth: "1.5",
1526
+ strokeLinecap: "round",
1527
+ strokeLinejoin: "round"
1528
+ })
1529
+ });
1257
1530
  });
1258
1531
  XoPlusCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusCircleOutlineIcon";
1259
- const XoPlusOutlineIcon = forwardRef((props, ref) => {
1260
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1261
- SvgIcon,
1262
- {
1263
- ref,
1264
- viewBox: "0 0 24 24",
1265
- fill: "none",
1266
- stroke: "currentColor",
1267
- ...props,
1268
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 12H20M12 4V20", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1269
- }
1270
- );
1532
+ //#endregion
1533
+ //#region src/icons/XoPlusOutlineIcon.tsx
1534
+ var XoPlusOutlineIcon = forwardRef((props, ref) => {
1535
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1536
+ ref,
1537
+ viewBox: "0 0 24 24",
1538
+ fill: "none",
1539
+ stroke: "currentColor",
1540
+ ...props,
1541
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1542
+ d: "M4 12H20M12 4V20",
1543
+ stroke: "currentColor",
1544
+ strokeWidth: "1.5",
1545
+ strokeLinecap: "round",
1546
+ strokeLinejoin: "round"
1547
+ })
1548
+ });
1271
1549
  });
1272
1550
  XoPlusOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusOutlineIcon";
1273
- const XoPlusSOutlineIcon = forwardRef((props, ref) => {
1274
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1275
- SvgIcon,
1276
- {
1277
- ref,
1278
- viewBox: "0 0 24 24",
1279
- fill: "none",
1280
- stroke: "currentColor",
1281
- ...props,
1282
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M12 6V18M6 12H18", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1283
- }
1284
- );
1551
+ //#endregion
1552
+ //#region src/icons/XoPlusSOutlineIcon.tsx
1553
+ var XoPlusSOutlineIcon = forwardRef((props, ref) => {
1554
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1555
+ ref,
1556
+ viewBox: "0 0 24 24",
1557
+ fill: "none",
1558
+ stroke: "currentColor",
1559
+ ...props,
1560
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1561
+ d: "M12 6V18M6 12H18",
1562
+ stroke: "currentColor",
1563
+ strokeWidth: "1.5",
1564
+ strokeLinecap: "round",
1565
+ strokeLinejoin: "round"
1566
+ })
1567
+ });
1285
1568
  });
1286
1569
  XoPlusSOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPlusSOutlineIcon";
1287
- const XoPrintOutlineIcon = forwardRef((props, ref) => {
1288
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1289
- SvgIcon,
1290
- {
1291
- ref,
1292
- viewBox: "0 0 24 24",
1293
- fill: "none",
1294
- stroke: "currentColor",
1295
- ...props,
1296
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1297
- }
1298
- );
1570
+ //#endregion
1571
+ //#region src/icons/XoPrintOutlineIcon.tsx
1572
+ var XoPrintOutlineIcon = forwardRef((props, ref) => {
1573
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1574
+ ref,
1575
+ viewBox: "0 0 24 24",
1576
+ fill: "none",
1577
+ stroke: "currentColor",
1578
+ ...props,
1579
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1580
+ 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",
1581
+ stroke: "currentColor",
1582
+ strokeWidth: "1.5",
1583
+ strokeLinecap: "round",
1584
+ strokeLinejoin: "round"
1585
+ })
1586
+ });
1299
1587
  });
1300
1588
  XoPrintOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoPrintOutlineIcon";
1301
- const XoQuestionCircleFillIcon = forwardRef((props, ref) => {
1302
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1303
- SvgIcon,
1304
- {
1305
- ref,
1306
- viewBox: "0 0 24 24",
1307
- fill: "none",
1308
- stroke: "currentColor",
1309
- ...props,
1310
- children: [
1311
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: "12", cy: "12", r: "8", stroke: "currentColor", strokeWidth: "1.5" }),
1312
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" })
1313
- ]
1314
- }
1315
- );
1589
+ //#endregion
1590
+ //#region src/icons/XoQuestionCircleFillIcon.tsx
1591
+ var XoQuestionCircleFillIcon = forwardRef((props, ref) => {
1592
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1593
+ ref,
1594
+ viewBox: "0 0 24 24",
1595
+ fill: "none",
1596
+ stroke: "currentColor",
1597
+ ...props,
1598
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
1599
+ cx: "12",
1600
+ cy: "12",
1601
+ r: "8",
1602
+ stroke: "currentColor",
1603
+ strokeWidth: "1.5"
1604
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1605
+ fillRule: "evenodd",
1606
+ clipRule: "evenodd",
1607
+ 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",
1608
+ fill: "currentColor"
1609
+ })]
1610
+ });
1316
1611
  });
1317
1612
  XoQuestionCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCircleFillIcon";
1318
- const XoQuestionCircleOutlineIcon = forwardRef((props, ref) => {
1319
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1320
- SvgIcon,
1321
- {
1322
- ref,
1323
- viewBox: "0 0 24 24",
1324
- fill: "none",
1325
- stroke: "currentColor",
1326
- ...props,
1327
- children: [
1328
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }),
1329
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1330
- ]
1331
- }
1332
- );
1613
+ //#endregion
1614
+ //#region src/icons/XoQuestionCircleOutlineIcon.tsx
1615
+ var XoQuestionCircleOutlineIcon = forwardRef((props, ref) => {
1616
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1617
+ ref,
1618
+ viewBox: "0 0 24 24",
1619
+ fill: "none",
1620
+ stroke: "currentColor",
1621
+ ...props,
1622
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1623
+ 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",
1624
+ stroke: "currentColor",
1625
+ strokeWidth: "1.5",
1626
+ strokeLinecap: "round",
1627
+ strokeLinejoin: "round"
1628
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1629
+ 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",
1630
+ stroke: "currentColor",
1631
+ strokeWidth: "1.5",
1632
+ strokeLinecap: "round",
1633
+ strokeLinejoin: "round"
1634
+ })]
1635
+ });
1333
1636
  });
1334
1637
  XoQuestionCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoQuestionCircleOutlineIcon";
1335
- const XoRotateRightOutlineIcon = forwardRef((props, ref) => {
1336
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1337
- SvgIcon,
1338
- {
1339
- ref,
1340
- viewBox: "0 0 24 24",
1341
- fill: "none",
1342
- stroke: "currentColor",
1343
- ...props,
1344
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1345
- }
1346
- );
1638
+ //#endregion
1639
+ //#region src/icons/XoRotateRightOutlineIcon.tsx
1640
+ var XoRotateRightOutlineIcon = forwardRef((props, ref) => {
1641
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1642
+ ref,
1643
+ viewBox: "0 0 24 24",
1644
+ fill: "none",
1645
+ stroke: "currentColor",
1646
+ ...props,
1647
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1648
+ 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",
1649
+ stroke: "currentColor",
1650
+ strokeWidth: "1.5",
1651
+ strokeLinecap: "round",
1652
+ strokeLinejoin: "round"
1653
+ })
1654
+ });
1347
1655
  });
1348
1656
  XoRotateRightOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRotateRightOutlineIcon";
1349
- const XoRouteOutlineIcon = forwardRef((props, ref) => {
1350
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1351
- SvgIcon,
1352
- {
1353
- ref,
1354
- viewBox: "0 0 24 24",
1355
- fill: "none",
1356
- ...props,
1357
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1358
- }
1359
- );
1657
+ //#endregion
1658
+ //#region src/icons/XoRouteOutlineIcon.tsx
1659
+ var XoRouteOutlineIcon = forwardRef((props, ref) => {
1660
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1661
+ ref,
1662
+ viewBox: "0 0 24 24",
1663
+ fill: "none",
1664
+ ...props,
1665
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1666
+ 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",
1667
+ fill: "currentColor"
1668
+ })
1669
+ });
1360
1670
  });
1361
1671
  XoRouteOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoRouteOutlineIcon";
1362
- const XoScreenOutlineIcon = forwardRef((props, ref) => {
1363
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1364
- SvgIcon,
1365
- {
1366
- ref,
1367
- viewBox: "0 0 24 24",
1368
- fill: "none",
1369
- stroke: "currentColor",
1370
- ...props,
1371
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1372
- }
1373
- );
1672
+ //#endregion
1673
+ //#region src/icons/XoScreenOutlineIcon.tsx
1674
+ var XoScreenOutlineIcon = forwardRef((props, ref) => {
1675
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1676
+ ref,
1677
+ viewBox: "0 0 24 24",
1678
+ fill: "none",
1679
+ stroke: "currentColor",
1680
+ ...props,
1681
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1682
+ 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",
1683
+ stroke: "currentColor",
1684
+ strokeWidth: "1.5",
1685
+ strokeLinecap: "round",
1686
+ strokeLinejoin: "round"
1687
+ })
1688
+ });
1374
1689
  });
1375
1690
  XoScreenOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoScreenOutlineIcon";
1376
- const XoSearchFillIcon = forwardRef((props, ref) => {
1377
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1378
- SvgIcon,
1379
- {
1380
- ref,
1381
- viewBox: "0 0 24 24",
1382
- fill: "none",
1383
- ...props,
1384
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1385
- }
1386
- );
1691
+ //#endregion
1692
+ //#region src/icons/XoSearchFillIcon.tsx
1693
+ var XoSearchFillIcon = forwardRef((props, ref) => {
1694
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1695
+ ref,
1696
+ viewBox: "0 0 24 24",
1697
+ fill: "none",
1698
+ ...props,
1699
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1700
+ 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",
1701
+ fill: "currentColor"
1702
+ })
1703
+ });
1387
1704
  });
1388
1705
  XoSearchFillIcon.displayName = "@xmart/xorder-ui-icons/XoSearchFillIcon";
1389
- const XoSearchOutlineIcon = forwardRef((props, ref) => {
1390
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1391
- SvgIcon,
1392
- {
1393
- ref,
1394
- viewBox: "0 0 24 24",
1395
- fill: "none",
1396
- ...props,
1397
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1398
- }
1399
- );
1706
+ //#endregion
1707
+ //#region src/icons/XoSearchOutlineIcon.tsx
1708
+ var XoSearchOutlineIcon = forwardRef((props, ref) => {
1709
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1710
+ ref,
1711
+ viewBox: "0 0 24 24",
1712
+ fill: "none",
1713
+ ...props,
1714
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1715
+ 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",
1716
+ fill: "currentColor"
1717
+ })
1718
+ });
1400
1719
  });
1401
1720
  XoSearchOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSearchOutlineIcon";
1402
- const XoSendFillIcon = forwardRef((props, ref) => {
1403
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1404
- SvgIcon,
1405
- {
1406
- ref,
1407
- viewBox: "0 0 24 24",
1408
- fill: "none",
1409
- stroke: "currentColor",
1410
- ...props,
1411
- children: [
1412
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M20 4L4 10.5L10.5 13.5L13.5 20L20 4Z", fill: "currentColor" }),
1413
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1414
- ]
1415
- }
1416
- );
1721
+ //#endregion
1722
+ //#region src/icons/XoSendFillIcon.tsx
1723
+ var XoSendFillIcon = forwardRef((props, ref) => {
1724
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1725
+ ref,
1726
+ viewBox: "0 0 24 24",
1727
+ fill: "none",
1728
+ stroke: "currentColor",
1729
+ ...props,
1730
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1731
+ d: "M20 4L4 10.5L10.5 13.5L13.5 20L20 4Z",
1732
+ fill: "currentColor"
1733
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1734
+ d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
1735
+ stroke: "currentColor",
1736
+ strokeWidth: "1.5",
1737
+ strokeLinecap: "round",
1738
+ strokeLinejoin: "round"
1739
+ })]
1740
+ });
1417
1741
  });
1418
1742
  XoSendFillIcon.displayName = "@xmart/xorder-ui-icons/XoSendFillIcon";
1419
- const XoSendOutlineIcon = forwardRef((props, ref) => {
1420
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1421
- SvgIcon,
1422
- {
1423
- ref,
1424
- viewBox: "0 0 24 24",
1425
- fill: "none",
1426
- stroke: "currentColor",
1427
- ...props,
1428
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1429
- }
1430
- );
1743
+ //#endregion
1744
+ //#region src/icons/XoSendOutlineIcon.tsx
1745
+ var XoSendOutlineIcon = forwardRef((props, ref) => {
1746
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1747
+ ref,
1748
+ viewBox: "0 0 24 24",
1749
+ fill: "none",
1750
+ stroke: "currentColor",
1751
+ ...props,
1752
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1753
+ d: "M10.5 13.5L13.5 20L20 4L4 10.5L10.5 13.5ZM10.5 13.5L14.5 9.5",
1754
+ stroke: "currentColor",
1755
+ strokeWidth: "1.5",
1756
+ strokeLinecap: "round",
1757
+ strokeLinejoin: "round"
1758
+ })
1759
+ });
1431
1760
  });
1432
1761
  XoSendOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSendOutlineIcon";
1433
- const XoSettingsOutlineIcon = forwardRef((props, ref) => {
1434
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1435
- SvgIcon,
1436
- {
1437
- ref,
1438
- viewBox: "0 0 24 24",
1439
- fill: "none",
1440
- stroke: "currentColor",
1441
- ...props,
1442
- children: [
1443
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5" }),
1444
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5" })
1445
- ]
1446
- }
1447
- );
1762
+ //#endregion
1763
+ //#region src/icons/XoSettingsOutlineIcon.tsx
1764
+ var XoSettingsOutlineIcon = forwardRef((props, ref) => {
1765
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1766
+ ref,
1767
+ viewBox: "0 0 24 24",
1768
+ fill: "none",
1769
+ stroke: "currentColor",
1770
+ ...props,
1771
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1772
+ 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",
1773
+ stroke: "currentColor",
1774
+ strokeWidth: "1.5"
1775
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1776
+ 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",
1777
+ stroke: "currentColor",
1778
+ strokeWidth: "1.5"
1779
+ })]
1780
+ });
1448
1781
  });
1449
1782
  XoSettingsOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSettingsOutlineIcon";
1450
- const XoShareOutlineIcon = forwardRef((props, ref) => {
1451
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1452
- SvgIcon,
1453
- {
1454
- ref,
1455
- viewBox: "0 0 24 24",
1456
- fill: "none",
1457
- stroke: "currentColor",
1458
- ...props,
1459
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M20 13V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 13M16 8L12 4M12 4L8 8M12 4L12 16", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1460
- }
1461
- );
1783
+ //#endregion
1784
+ //#region src/icons/XoShareOutlineIcon.tsx
1785
+ var XoShareOutlineIcon = forwardRef((props, ref) => {
1786
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1787
+ ref,
1788
+ viewBox: "0 0 24 24",
1789
+ fill: "none",
1790
+ stroke: "currentColor",
1791
+ ...props,
1792
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1793
+ d: "M20 13V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18L4 13M16 8L12 4M12 4L8 8M12 4L12 16",
1794
+ stroke: "currentColor",
1795
+ strokeWidth: "1.5",
1796
+ strokeLinecap: "round",
1797
+ strokeLinejoin: "round"
1798
+ })
1799
+ });
1462
1800
  });
1463
1801
  XoShareOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoShareOutlineIcon";
1464
- const XoSmartphoneOutlineIcon = forwardRef((props, ref) => {
1465
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1466
- SvgIcon,
1467
- {
1468
- ref,
1469
- viewBox: "0 0 24 24",
1470
- fill: "none",
1471
- stroke: "currentColor",
1472
- ...props,
1473
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1474
- }
1475
- );
1802
+ //#endregion
1803
+ //#region src/icons/XoSmartphoneOutlineIcon.tsx
1804
+ var XoSmartphoneOutlineIcon = forwardRef((props, ref) => {
1805
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1806
+ ref,
1807
+ viewBox: "0 0 24 24",
1808
+ fill: "none",
1809
+ stroke: "currentColor",
1810
+ ...props,
1811
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1812
+ 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",
1813
+ stroke: "currentColor",
1814
+ strokeWidth: "1.5",
1815
+ strokeLinecap: "round",
1816
+ strokeLinejoin: "round"
1817
+ })
1818
+ });
1476
1819
  });
1477
1820
  XoSmartphoneOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSmartphoneOutlineIcon";
1478
- const XoSortDownFillIcon = forwardRef((props, ref) => {
1479
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1480
- SvgIcon,
1481
- {
1482
- ref,
1483
- viewBox: "0 0 24 24",
1484
- fill: "none",
1485
- stroke: "currentColor",
1486
- ...props,
1487
- children: [
1488
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round" }),
1489
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round", opacity: "0.3" })
1490
- ]
1491
- }
1492
- );
1821
+ //#endregion
1822
+ //#region src/icons/XoSortDownFillIcon.tsx
1823
+ var XoSortDownFillIcon = forwardRef((props, ref) => {
1824
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1825
+ ref,
1826
+ viewBox: "0 0 24 24",
1827
+ fill: "none",
1828
+ stroke: "currentColor",
1829
+ ...props,
1830
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1831
+ 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",
1832
+ fill: "currentColor",
1833
+ stroke: "currentColor",
1834
+ strokeLinejoin: "round"
1835
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1836
+ 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",
1837
+ fill: "currentColor",
1838
+ stroke: "currentColor",
1839
+ strokeLinejoin: "round",
1840
+ opacity: "0.3"
1841
+ })]
1842
+ });
1493
1843
  });
1494
1844
  XoSortDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortDownFillIcon";
1495
- const XoSortFillIcon = forwardRef((props, ref) => {
1496
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1497
- SvgIcon,
1498
- {
1499
- ref,
1500
- viewBox: "0 0 24 24",
1501
- fill: "none",
1502
- stroke: "currentColor",
1503
- ...props,
1504
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round" })
1505
- }
1506
- );
1845
+ //#endregion
1846
+ //#region src/icons/XoSortFillIcon.tsx
1847
+ var XoSortFillIcon = forwardRef((props, ref) => {
1848
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1849
+ ref,
1850
+ viewBox: "0 0 24 24",
1851
+ fill: "none",
1852
+ stroke: "currentColor",
1853
+ ...props,
1854
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1855
+ 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",
1856
+ fill: "currentColor",
1857
+ stroke: "currentColor",
1858
+ strokeLinejoin: "round"
1859
+ })
1860
+ });
1507
1861
  });
1508
1862
  XoSortFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortFillIcon";
1509
- const XoSortOrderOutlineIcon = forwardRef((props, ref) => {
1510
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1511
- SvgIcon,
1512
- {
1513
- ref,
1514
- viewBox: "0 0 24 24",
1515
- fill: "none",
1516
- stroke: "currentColor",
1517
- ...props,
1518
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M15.5 5V19M15.5 5L18 7.5M15.5 5L13 7.5M8.5 19V5M8.5 19L6 16.5M8.5 19L11 16.5", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1519
- }
1520
- );
1863
+ //#endregion
1864
+ //#region src/icons/XoSortOrderOutlineIcon.tsx
1865
+ var XoSortOrderOutlineIcon = forwardRef((props, ref) => {
1866
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1867
+ ref,
1868
+ viewBox: "0 0 24 24",
1869
+ fill: "none",
1870
+ stroke: "currentColor",
1871
+ ...props,
1872
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1873
+ d: "M15.5 5V19M15.5 5L18 7.5M15.5 5L13 7.5M8.5 19V5M8.5 19L6 16.5M8.5 19L11 16.5",
1874
+ stroke: "currentColor",
1875
+ strokeWidth: "1.5",
1876
+ strokeLinecap: "round",
1877
+ strokeLinejoin: "round"
1878
+ })
1879
+ });
1521
1880
  });
1522
1881
  XoSortOrderOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSortOrderOutlineIcon";
1523
- const XoSortUnselectedFillIcon = forwardRef((props, ref) => {
1524
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1525
- SvgIcon,
1526
- {
1527
- ref,
1528
- viewBox: "0 0 24 24",
1529
- fill: "none",
1530
- stroke: "currentColor",
1531
- ...props,
1532
- children: [
1533
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round" }),
1534
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round" })
1535
- ]
1536
- }
1537
- );
1882
+ //#endregion
1883
+ //#region src/icons/XoSortUnselectedFillIcon.tsx
1884
+ var XoSortUnselectedFillIcon = forwardRef((props, ref) => {
1885
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1886
+ ref,
1887
+ viewBox: "0 0 24 24",
1888
+ fill: "none",
1889
+ stroke: "currentColor",
1890
+ ...props,
1891
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1892
+ 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",
1893
+ fill: "currentColor",
1894
+ stroke: "currentColor",
1895
+ strokeLinejoin: "round"
1896
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1897
+ 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",
1898
+ fill: "currentColor",
1899
+ stroke: "currentColor",
1900
+ strokeLinejoin: "round"
1901
+ })]
1902
+ });
1538
1903
  });
1539
1904
  XoSortUnselectedFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUnselectedFillIcon";
1540
- const XoSortUpFillIcon = forwardRef((props, ref) => {
1541
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1542
- SvgIcon,
1543
- {
1544
- ref,
1545
- viewBox: "0 0 24 24",
1546
- fill: "none",
1547
- stroke: "currentColor",
1548
- ...props,
1549
- children: [
1550
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round", opacity: "0.3" }),
1551
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor", stroke: "currentColor", strokeLinejoin: "round" })
1552
- ]
1553
- }
1554
- );
1905
+ //#endregion
1906
+ //#region src/icons/XoSortUpFillIcon.tsx
1907
+ var XoSortUpFillIcon = forwardRef((props, ref) => {
1908
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1909
+ ref,
1910
+ viewBox: "0 0 24 24",
1911
+ fill: "none",
1912
+ stroke: "currentColor",
1913
+ ...props,
1914
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1915
+ 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",
1916
+ fill: "currentColor",
1917
+ stroke: "currentColor",
1918
+ strokeLinejoin: "round",
1919
+ opacity: "0.3"
1920
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1921
+ 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",
1922
+ fill: "currentColor",
1923
+ stroke: "currentColor",
1924
+ strokeLinejoin: "round"
1925
+ })]
1926
+ });
1555
1927
  });
1556
1928
  XoSortUpFillIcon.displayName = "@xmart/xorder-ui-icons/XoSortUpFillIcon";
1557
- const XoSpeakerOffFillIcon = forwardRef((props, ref) => {
1558
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1559
- SvgIcon,
1560
- {
1561
- ref,
1562
- viewBox: "0 0 24 24",
1563
- fill: "none",
1564
- stroke: "currentColor",
1565
- ...props,
1566
- children: [
1567
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1568
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1569
- ]
1570
- }
1571
- );
1929
+ //#endregion
1930
+ //#region src/icons/XoSpeakerOffFillIcon.tsx
1931
+ var XoSpeakerOffFillIcon = forwardRef((props, ref) => {
1932
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1933
+ ref,
1934
+ viewBox: "0 0 24 24",
1935
+ fill: "none",
1936
+ stroke: "currentColor",
1937
+ ...props,
1938
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1939
+ 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",
1940
+ fill: "currentColor"
1941
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1942
+ 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",
1943
+ stroke: "currentColor",
1944
+ strokeWidth: "1.5",
1945
+ strokeLinecap: "round",
1946
+ strokeLinejoin: "round"
1947
+ })]
1948
+ });
1572
1949
  });
1573
1950
  XoSpeakerOffFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOffFillIcon";
1574
- const XoSpeakerOnFillIcon = forwardRef((props, ref) => {
1575
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1576
- SvgIcon,
1577
- {
1578
- ref,
1579
- viewBox: "0 0 24 24",
1580
- fill: "none",
1581
- stroke: "currentColor",
1582
- ...props,
1583
- children: [
1584
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1585
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1586
- ]
1587
- }
1588
- );
1951
+ //#endregion
1952
+ //#region src/icons/XoSpeakerOnFillIcon.tsx
1953
+ var XoSpeakerOnFillIcon = forwardRef((props, ref) => {
1954
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
1955
+ ref,
1956
+ viewBox: "0 0 24 24",
1957
+ fill: "none",
1958
+ stroke: "currentColor",
1959
+ ...props,
1960
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1961
+ 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",
1962
+ fill: "currentColor"
1963
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1964
+ 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",
1965
+ stroke: "currentColor",
1966
+ strokeWidth: "1.5",
1967
+ strokeLinecap: "round",
1968
+ strokeLinejoin: "round"
1969
+ })]
1970
+ });
1589
1971
  });
1590
1972
  XoSpeakerOnFillIcon.displayName = "@xmart/xorder-ui-icons/XoSpeakerOnFillIcon";
1591
- const XoStarFillIcon = forwardRef((props, ref) => {
1592
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1593
- SvgIcon,
1594
- {
1595
- ref,
1596
- viewBox: "0 0 24 24",
1597
- fill: "none",
1598
- stroke: "currentColor",
1599
- ...props,
1600
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z", fill: "currentColor", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1601
- }
1602
- );
1973
+ //#endregion
1974
+ //#region src/icons/XoStarFillIcon.tsx
1975
+ var XoStarFillIcon = forwardRef((props, ref) => {
1976
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1977
+ ref,
1978
+ viewBox: "0 0 24 24",
1979
+ fill: "none",
1980
+ stroke: "currentColor",
1981
+ ...props,
1982
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
1983
+ d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
1984
+ fill: "currentColor",
1985
+ stroke: "currentColor",
1986
+ strokeWidth: "1.5",
1987
+ strokeLinecap: "round",
1988
+ strokeLinejoin: "round"
1989
+ })
1990
+ });
1603
1991
  });
1604
1992
  XoStarFillIcon.displayName = "@xmart/xorder-ui-icons/XoStarFillIcon";
1605
- const XoStarOutlineIcon = forwardRef((props, ref) => {
1606
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1607
- SvgIcon,
1608
- {
1609
- ref,
1610
- viewBox: "0 0 24 24",
1611
- fill: "none",
1612
- stroke: "currentColor",
1613
- ...props,
1614
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1615
- }
1616
- );
1993
+ //#endregion
1994
+ //#region src/icons/XoStarOutlineIcon.tsx
1995
+ var XoStarOutlineIcon = forwardRef((props, ref) => {
1996
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
1997
+ ref,
1998
+ viewBox: "0 0 24 24",
1999
+ fill: "none",
2000
+ stroke: "currentColor",
2001
+ ...props,
2002
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2003
+ d: "M12 17L6 20L7.5 14L3 9L9.5 8.5L12 3L14.5 8.5L21 9L16.5 14L18 20L12 17Z",
2004
+ stroke: "currentColor",
2005
+ strokeWidth: "1.5",
2006
+ strokeLinecap: "round",
2007
+ strokeLinejoin: "round"
2008
+ })
2009
+ });
1617
2010
  });
1618
2011
  XoStarOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoStarOutlineIcon";
1619
- const XoSwipeDownFillIcon = forwardRef((props, ref) => {
1620
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1621
- SvgIcon,
1622
- {
1623
- ref,
1624
- viewBox: "0 0 24 24",
1625
- fill: "none",
1626
- ...props,
1627
- children: [
1628
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" }),
1629
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1630
- ]
1631
- }
1632
- );
2012
+ //#endregion
2013
+ //#region src/icons/XoSwipeDownFillIcon.tsx
2014
+ var XoSwipeDownFillIcon = forwardRef((props, ref) => {
2015
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
2016
+ ref,
2017
+ viewBox: "0 0 24 24",
2018
+ fill: "none",
2019
+ ...props,
2020
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2021
+ fillRule: "evenodd",
2022
+ clipRule: "evenodd",
2023
+ 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",
2024
+ fill: "currentColor"
2025
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2026
+ 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",
2027
+ fill: "currentColor"
2028
+ })]
2029
+ });
1633
2030
  });
1634
2031
  XoSwipeDownFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeDownFillIcon";
1635
- const XoSwipeOutlineIcon = forwardRef((props, ref) => {
1636
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1637
- SvgIcon,
1638
- {
1639
- ref,
1640
- viewBox: "0 0 24 24",
1641
- fill: "none",
1642
- stroke: "currentColor",
1643
- ...props,
1644
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M4 18H20M4 12H20M4 6H20", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1645
- }
1646
- );
2032
+ //#endregion
2033
+ //#region src/icons/XoSwipeOutlineIcon.tsx
2034
+ var XoSwipeOutlineIcon = forwardRef((props, ref) => {
2035
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2036
+ ref,
2037
+ viewBox: "0 0 24 24",
2038
+ fill: "none",
2039
+ stroke: "currentColor",
2040
+ ...props,
2041
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2042
+ d: "M4 18H20M4 12H20M4 6H20",
2043
+ stroke: "currentColor",
2044
+ strokeWidth: "1.5",
2045
+ strokeLinecap: "round",
2046
+ strokeLinejoin: "round"
2047
+ })
2048
+ });
1647
2049
  });
1648
2050
  XoSwipeOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoSwipeOutlineIcon";
1649
- const XoSwipe_upFillIcon = forwardRef((props, ref) => {
1650
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1651
- SvgIcon,
1652
- {
1653
- ref,
1654
- viewBox: "0 0 24 24",
1655
- fill: "none",
1656
- ...props,
1657
- children: [
1658
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", 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", fill: "currentColor" }),
1659
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1660
- ]
1661
- }
1662
- );
2051
+ //#endregion
2052
+ //#region src/icons/XoSwipe_upFillIcon.tsx
2053
+ var XoSwipe_upFillIcon = forwardRef((props, ref) => {
2054
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
2055
+ ref,
2056
+ viewBox: "0 0 24 24",
2057
+ fill: "none",
2058
+ ...props,
2059
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2060
+ fillRule: "evenodd",
2061
+ clipRule: "evenodd",
2062
+ 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",
2063
+ fill: "currentColor"
2064
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2065
+ 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",
2066
+ fill: "currentColor"
2067
+ })]
2068
+ });
1663
2069
  });
1664
2070
  XoSwipe_upFillIcon.displayName = "@xmart/xorder-ui-icons/XoSwipe_upFillIcon";
1665
- const XoTranslateFillIcon = forwardRef((props, ref) => {
1666
- return /* @__PURE__ */ jsxRuntimeExports.jsxs(
1667
- SvgIcon,
1668
- {
1669
- ref,
1670
- viewBox: "0 0 24 24",
1671
- fill: "none",
1672
- ...props,
1673
- children: [
1674
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1675
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" }),
1676
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1677
- ]
1678
- }
1679
- );
2071
+ //#endregion
2072
+ //#region src/icons/XoTranslateFillIcon.tsx
2073
+ var XoTranslateFillIcon = forwardRef((props, ref) => {
2074
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(SvgIcon, {
2075
+ ref,
2076
+ viewBox: "0 0 24 24",
2077
+ fill: "none",
2078
+ ...props,
2079
+ children: [
2080
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2081
+ 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",
2082
+ fill: "currentColor"
2083
+ }),
2084
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2085
+ 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",
2086
+ fill: "currentColor"
2087
+ }),
2088
+ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2089
+ 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",
2090
+ fill: "currentColor"
2091
+ })
2092
+ ]
2093
+ });
1680
2094
  });
1681
2095
  XoTranslateFillIcon.displayName = "@xmart/xorder-ui-icons/XoTranslateFillIcon";
1682
- const XoTrashOutlineIcon = forwardRef((props, ref) => {
1683
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1684
- SvgIcon,
1685
- {
1686
- ref,
1687
- viewBox: "0 0 24 24",
1688
- fill: "none",
1689
- stroke: "currentColor",
1690
- ...props,
1691
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1692
- }
1693
- );
2096
+ //#endregion
2097
+ //#region src/icons/XoTrashOutlineIcon.tsx
2098
+ var XoTrashOutlineIcon = forwardRef((props, ref) => {
2099
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2100
+ ref,
2101
+ viewBox: "0 0 24 24",
2102
+ fill: "none",
2103
+ stroke: "currentColor",
2104
+ ...props,
2105
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2106
+ 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",
2107
+ stroke: "currentColor",
2108
+ strokeWidth: "1.5",
2109
+ strokeLinecap: "round",
2110
+ strokeLinejoin: "round"
2111
+ })
2112
+ });
1694
2113
  });
1695
2114
  XoTrashOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrashOutlineIcon";
1696
- const XoTrendingUpOutlineIcon = forwardRef((props, ref) => {
1697
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1698
- SvgIcon,
1699
- {
1700
- ref,
1701
- viewBox: "0 0 24 24",
1702
- fill: "none",
1703
- stroke: "currentColor",
1704
- ...props,
1705
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M22 7L13.5 16.5L9 12L2 19M22 7H15M22 7V14", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1706
- }
1707
- );
2115
+ //#endregion
2116
+ //#region src/icons/XoTrendingUpOutlineIcon.tsx
2117
+ var XoTrendingUpOutlineIcon = forwardRef((props, ref) => {
2118
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2119
+ ref,
2120
+ viewBox: "0 0 24 24",
2121
+ fill: "none",
2122
+ stroke: "currentColor",
2123
+ ...props,
2124
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2125
+ d: "M22 7L13.5 16.5L9 12L2 19M22 7H15M22 7V14",
2126
+ stroke: "currentColor",
2127
+ strokeWidth: "1.5",
2128
+ strokeLinecap: "round",
2129
+ strokeLinejoin: "round"
2130
+ })
2131
+ });
1708
2132
  });
1709
2133
  XoTrendingUpOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoTrendingUpOutlineIcon";
1710
- const XoUserOutlineIcon = forwardRef((props, ref) => {
1711
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1712
- SvgIcon,
1713
- {
1714
- ref,
1715
- viewBox: "0 0 24 24",
1716
- fill: "none",
1717
- stroke: "currentColor",
1718
- ...props,
1719
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5" })
1720
- }
1721
- );
2134
+ //#endregion
2135
+ //#region src/icons/XoUserOutlineIcon.tsx
2136
+ var XoUserOutlineIcon = forwardRef((props, ref) => {
2137
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2138
+ ref,
2139
+ viewBox: "0 0 24 24",
2140
+ fill: "none",
2141
+ stroke: "currentColor",
2142
+ ...props,
2143
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2144
+ 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",
2145
+ stroke: "currentColor",
2146
+ strokeWidth: "1.5"
2147
+ })
2148
+ });
1722
2149
  });
1723
2150
  XoUserOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoUserOutlineIcon";
1724
- const XoWalletOutlineIcon = forwardRef((props, ref) => {
1725
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1726
- SvgIcon,
1727
- {
1728
- ref,
1729
- viewBox: "0 0 24 24",
1730
- fill: "none",
1731
- stroke: "currentColor",
1732
- ...props,
1733
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })
1734
- }
1735
- );
2151
+ //#endregion
2152
+ //#region src/icons/XoWalletOutlineIcon.tsx
2153
+ var XoWalletOutlineIcon = forwardRef((props, ref) => {
2154
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2155
+ ref,
2156
+ viewBox: "0 0 24 24",
2157
+ fill: "none",
2158
+ stroke: "currentColor",
2159
+ ...props,
2160
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2161
+ 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",
2162
+ stroke: "currentColor",
2163
+ strokeWidth: "1.5",
2164
+ strokeLinecap: "round",
2165
+ strokeLinejoin: "round"
2166
+ })
2167
+ });
1736
2168
  });
1737
2169
  XoWalletOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWalletOutlineIcon";
1738
- const XoWarningCircleFillIcon = forwardRef((props, ref) => {
1739
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1740
- SvgIcon,
1741
- {
1742
- ref,
1743
- viewBox: "0 0 24 24",
1744
- fill: "none",
1745
- stroke: "currentColor",
1746
- ...props,
1747
- children: /* @__PURE__ */ jsxRuntimeExports.jsxs("g", { id: "warning-circle-fill", children: [
1748
- /* @__PURE__ */ jsxRuntimeExports.jsx("circle", { id: "Ellipse", cx: "12", cy: "12", r: "8", stroke: "currentColor", strokeWidth: "1.5" }),
1749
- /* @__PURE__ */ jsxRuntimeExports.jsx("path", { id: "Exclude", fillRule: "evenodd", clipRule: "evenodd", d: "M4 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 12ZM13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13L11 8C11 7.44771 11.4477 7 12 7C12.5523 7 13 7.44772 13 8L13 13ZM12 15.5C12.5523 15.5 13 15.9477 13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5Z", fill: "currentColor" })
1750
- ] })
1751
- }
1752
- );
2170
+ //#endregion
2171
+ //#region src/icons/XoWarningCircleFillIcon.tsx
2172
+ var XoWarningCircleFillIcon = forwardRef((props, ref) => {
2173
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2174
+ ref,
2175
+ viewBox: "0 0 24 24",
2176
+ fill: "none",
2177
+ stroke: "currentColor",
2178
+ ...props,
2179
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("g", {
2180
+ id: "warning-circle-fill",
2181
+ children: [/* @__PURE__ */ (0, import_jsx_runtime.jsx)("circle", {
2182
+ id: "Ellipse",
2183
+ cx: "12",
2184
+ cy: "12",
2185
+ r: "8",
2186
+ stroke: "currentColor",
2187
+ strokeWidth: "1.5"
2188
+ }), /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2189
+ id: "Exclude",
2190
+ fillRule: "evenodd",
2191
+ clipRule: "evenodd",
2192
+ d: "M4 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 12ZM13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13L11 8C11 7.44771 11.4477 7 12 7C12.5523 7 13 7.44772 13 8L13 13ZM12 15.5C12.5523 15.5 13 15.9477 13 16.5C13 17.0523 12.5523 17.5 12 17.5C11.4477 17.5 11 17.0523 11 16.5C11 15.9477 11.4477 15.5 12 15.5Z",
2193
+ fill: "currentColor"
2194
+ })]
2195
+ })
2196
+ });
1753
2197
  });
1754
2198
  XoWarningCircleFillIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircleFillIcon";
1755
- const XoWarningCircleOutlineIcon = forwardRef((props, ref) => {
1756
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1757
- SvgIcon,
1758
- {
1759
- ref,
1760
- viewBox: "0 0 24 24",
1761
- fill: "none",
1762
- stroke: "currentColor",
1763
- ...props,
1764
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("g", { id: "warning-circle-outline", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { id: "shape", 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", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) })
1765
- }
1766
- );
2199
+ //#endregion
2200
+ //#region src/icons/XoWarningCircleOutlineIcon.tsx
2201
+ var XoWarningCircleOutlineIcon = forwardRef((props, ref) => {
2202
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2203
+ ref,
2204
+ viewBox: "0 0 24 24",
2205
+ fill: "none",
2206
+ stroke: "currentColor",
2207
+ ...props,
2208
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("g", {
2209
+ id: "warning-circle-outline",
2210
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2211
+ id: "shape",
2212
+ 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",
2213
+ stroke: "currentColor",
2214
+ strokeWidth: "1.5",
2215
+ strokeLinecap: "round",
2216
+ strokeLinejoin: "round"
2217
+ })
2218
+ })
2219
+ });
1767
2220
  });
1768
2221
  XoWarningCircleOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoWarningCircleOutlineIcon";
1769
- const XoZoomInOutlineIcon = forwardRef((props, ref) => {
1770
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1771
- SvgIcon,
1772
- {
1773
- ref,
1774
- viewBox: "0 0 24 24",
1775
- fill: "none",
1776
- ...props,
1777
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1778
- }
1779
- );
2222
+ //#endregion
2223
+ //#region src/icons/XoZoomInOutlineIcon.tsx
2224
+ var XoZoomInOutlineIcon = forwardRef((props, ref) => {
2225
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2226
+ ref,
2227
+ viewBox: "0 0 24 24",
2228
+ fill: "none",
2229
+ ...props,
2230
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2231
+ 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",
2232
+ fill: "currentColor"
2233
+ })
2234
+ });
1780
2235
  });
1781
2236
  XoZoomInOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoZoomInOutlineIcon";
1782
- const XoZoomOutOutlineIcon = forwardRef((props, ref) => {
1783
- return /* @__PURE__ */ jsxRuntimeExports.jsx(
1784
- SvgIcon,
1785
- {
1786
- ref,
1787
- viewBox: "0 0 24 24",
1788
- fill: "none",
1789
- ...props,
1790
- children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { 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", fill: "currentColor" })
1791
- }
1792
- );
2237
+ //#endregion
2238
+ //#region src/icons/XoZoomOutOutlineIcon.tsx
2239
+ var XoZoomOutOutlineIcon = forwardRef((props, ref) => {
2240
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(SvgIcon, {
2241
+ ref,
2242
+ viewBox: "0 0 24 24",
2243
+ fill: "none",
2244
+ ...props,
2245
+ children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("path", {
2246
+ 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",
2247
+ fill: "currentColor"
2248
+ })
2249
+ });
1793
2250
  });
1794
2251
  XoZoomOutOutlineIcon.displayName = "@xmart/xorder-ui-icons/XoZoomOutOutlineIcon";
1795
- export {
1796
- SvgIcon,
1797
- XoAlarmOutlineIcon,
1798
- XoArrowLeftOutlineIcon,
1799
- XoAtEmailOutlineIcon,
1800
- XoAttachmentOutlineIcon,
1801
- XoBellFillIcon,
1802
- XoBellOutlineIcon,
1803
- XoCalendarOutlineIcon,
1804
- XoCartOutlineIcon,
1805
- XoCatalogFillIcon,
1806
- XoCatalogOutlineIcon,
1807
- XoCheckCircleFillIcon,
1808
- XoCheckCircleOutlineIcon,
1809
- XoCheckOutlineIcon,
1810
- XoCheckSOutlineIcon,
1811
- XoChevronCircleDownOutlineIcon,
1812
- XoChevronCircleLeftOutlineIcon,
1813
- XoChevronCircleRightOutlineIcon,
1814
- XoChevronCircleUpOutlineIcon,
1815
- XoChevronDownOutlineIcon,
1816
- XoChevronLeftOutlineIcon,
1817
- XoChevronRightOutlineIcon,
1818
- XoChevronUpOutlineIcon,
1819
- XoChevronWDownOutlineIcon,
1820
- XoClockFillIcon,
1821
- XoClockOutlineIcon,
1822
- XoCrossOutlineIcon,
1823
- XoCrossSOutlineIcon,
1824
- XoDownloadOutlineIcon,
1825
- XoEditOutlineIcon,
1826
- XoEyeClosedOutlineIcon,
1827
- XoEyeOpenOutlineIcon,
1828
- XoFiltersOutlineIcon,
1829
- XoGridOutlineIcon,
1830
- XoHomeFillIcon,
1831
- XoHomeOutlineIcon,
1832
- XoImageAddOutlineIcon,
1833
- XoImageEditOutlineIcon,
1834
- XoImageOutlineIcon,
1835
- XoInboxOutlineIcon,
1836
- XoInfoCircleFillIcon,
1837
- XoInfoCircleOutlineIcon,
1838
- XoLaptopOutlineIcon,
1839
- XoLikeFillIcon,
1840
- XoLikeOutlineIcon,
1841
- XoListRightOutlineIcon,
1842
- XoLockOffOutlineIcon,
1843
- XoLockOnOutlineIcon,
1844
- XoMailOutlineIcon,
1845
- XoMenuOutlineIcon,
1846
- XoMenuVerticalFillIcon,
1847
- XoMessageCircleDotsOutlineIcon,
1848
- XoMinusCircleFillIcon,
1849
- XoMinusCircleOutlineIcon,
1850
- XoMinusOutlineIcon,
1851
- XoMinusSOutlineIcon,
1852
- XoNewscreenOutlineIcon,
1853
- XoPauseFillIcon,
1854
- XoPhoneOutlineIcon,
1855
- XoPlayFillIcon,
1856
- XoPlusCircleFillIcon,
1857
- XoPlusCircleOutlineIcon,
1858
- XoPlusOutlineIcon,
1859
- XoPlusSOutlineIcon,
1860
- XoPrintOutlineIcon,
1861
- XoQuestionCircleFillIcon,
1862
- XoQuestionCircleOutlineIcon,
1863
- XoRotateRightOutlineIcon,
1864
- XoRouteOutlineIcon,
1865
- XoScreenOutlineIcon,
1866
- XoSearchFillIcon,
1867
- XoSearchOutlineIcon,
1868
- XoSendFillIcon,
1869
- XoSendOutlineIcon,
1870
- XoSettingsOutlineIcon,
1871
- XoShareOutlineIcon,
1872
- XoSmartphoneOutlineIcon,
1873
- XoSortDownFillIcon,
1874
- XoSortFillIcon,
1875
- XoSortOrderOutlineIcon,
1876
- XoSortUnselectedFillIcon,
1877
- XoSortUpFillIcon,
1878
- XoSpeakerOffFillIcon,
1879
- XoSpeakerOnFillIcon,
1880
- XoStarFillIcon,
1881
- XoStarOutlineIcon,
1882
- XoSwipeDownFillIcon,
1883
- XoSwipeOutlineIcon,
1884
- XoSwipe_upFillIcon,
1885
- XoTranslateFillIcon,
1886
- XoTrashOutlineIcon,
1887
- XoTrendingUpOutlineIcon,
1888
- XoUserOutlineIcon,
1889
- XoWalletOutlineIcon,
1890
- XoWarningCircleFillIcon,
1891
- XoWarningCircleOutlineIcon,
1892
- XoZoomInOutlineIcon,
1893
- XoZoomOutOutlineIcon
1894
- };
1895
- //# sourceMappingURL=index.esm.js.map
2252
+ //#endregion
2253
+ export { SvgIcon, XoAlarmOutlineIcon, XoArrowLeftOutlineIcon, XoAtEmailOutlineIcon, XoAttachmentOutlineIcon, XoBellFillIcon, XoBellOutlineIcon, XoCalendarOutlineIcon, XoCartOutlineIcon, XoCatalogFillIcon, XoCatalogOutlineIcon, XoCheckCircleFillIcon, XoCheckCircleOutlineIcon, XoCheckOutlineIcon, XoCheckSOutlineIcon, XoChevronCircleDownOutlineIcon, XoChevronCircleLeftOutlineIcon, XoChevronCircleRightOutlineIcon, XoChevronCircleUpOutlineIcon, XoChevronDownOutlineIcon, XoChevronLeftOutlineIcon, XoChevronRightOutlineIcon, XoChevronUpOutlineIcon, XoChevronWDownOutlineIcon, XoClockFillIcon, XoClockOutlineIcon, XoCrossOutlineIcon, XoCrossSOutlineIcon, XoDownloadOutlineIcon, XoEditOutlineIcon, XoEyeClosedOutlineIcon, XoEyeOpenOutlineIcon, XoFiltersOutlineIcon, XoGridOutlineIcon, XoHomeFillIcon, XoHomeOutlineIcon, XoImageAddOutlineIcon, XoImageEditOutlineIcon, XoImageOutlineIcon, XoInboxOutlineIcon, XoInfoCircleFillIcon, XoInfoCircleOutlineIcon, XoLaptopOutlineIcon, XoLikeFillIcon, XoLikeOutlineIcon, XoListRightOutlineIcon, XoLockOffOutlineIcon, XoLockOnOutlineIcon, XoMailOutlineIcon, XoMenuOutlineIcon, XoMenuVerticalFillIcon, XoMessageCircleDotsOutlineIcon, XoMinusCircleFillIcon, XoMinusCircleOutlineIcon, XoMinusOutlineIcon, XoMinusSOutlineIcon, XoNewscreenOutlineIcon, XoPauseFillIcon, XoPhoneOutlineIcon, XoPlayFillIcon, XoPlusCircleFillIcon, XoPlusCircleOutlineIcon, XoPlusOutlineIcon, XoPlusSOutlineIcon, XoPrintOutlineIcon, XoQuestionCircleFillIcon, XoQuestionCircleOutlineIcon, XoRotateRightOutlineIcon, XoRouteOutlineIcon, XoScreenOutlineIcon, XoSearchFillIcon, XoSearchOutlineIcon, XoSendFillIcon, XoSendOutlineIcon, XoSettingsOutlineIcon, XoShareOutlineIcon, XoSmartphoneOutlineIcon, XoSortDownFillIcon, XoSortFillIcon, XoSortOrderOutlineIcon, XoSortUnselectedFillIcon, XoSortUpFillIcon, XoSpeakerOffFillIcon, XoSpeakerOnFillIcon, XoStarFillIcon, XoStarOutlineIcon, XoSwipeDownFillIcon, XoSwipeOutlineIcon, XoSwipe_upFillIcon, XoTranslateFillIcon, XoTrashOutlineIcon, XoTrendingUpOutlineIcon, XoUserOutlineIcon, XoWalletOutlineIcon, XoWarningCircleFillIcon, XoWarningCircleOutlineIcon, XoZoomInOutlineIcon, XoZoomOutOutlineIcon };
2254
+
2255
+ //# sourceMappingURL=index.esm.js.map