UNPKG

@nutui/nutui-react

Version:

京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序

1,157 lines (1,155 loc) 1.7 MB
(function(global2, factory) { typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("react"), require("react-dom")) : typeof define === "function" && define.amd ? define(["exports", "react", "react-dom"], factory) : (global2 = typeof globalThis !== "undefined" ? globalThis : global2 || self, factory(global2.nutReact = {}, global2.React, global2.ReactDOM)); })(this, function(exports, React, ReactDOM) { "use strict"; function _interopNamespaceDefault(e) { const n2 = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } }); if (e) { for (const k in e) { if (k !== "default") { const d2 = Object.getOwnPropertyDescriptor(e, k); Object.defineProperty(n2, k, d2.get ? d2 : { enumerable: true, get: () => e[k] }); } } } n2.default = e; return Object.freeze(n2); } const React__namespace = /* @__PURE__ */ _interopNamespaceDefault(React); const ReactDOM__namespace = /* @__PURE__ */ _interopNamespaceDefault(ReactDOM); function _define_property(obj, key2, value2) { if (key2 in obj) { Object.defineProperty(obj, key2, { value: value2, enumerable: true, configurable: true, writable: true }); } else obj[key2] = value2; return obj; } function _object_spread(target) { for (var i2 = 1; i2 < arguments.length; i2++) { var source = arguments[i2] != null ? arguments[i2] : {}; var ownKeys2 = Object.keys(source); if (typeof Object.getOwnPropertySymbols === "function") { ownKeys2 = ownKeys2.concat( Object.getOwnPropertySymbols(source).filter(function(sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; }) ); } ownKeys2.forEach(function(key2) { _define_property(target, key2, source[key2]); }); } return target; } function ownKeys$2(object2, enumerableOnly) { var keys = Object.keys(object2); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object2); keys.push.apply(keys, symbols); } return keys; } function _object_spread_props(target, source) { source = source != null ? source : {}; if (Object.getOwnPropertyDescriptors) Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); else { ownKeys$2(Object(source)).forEach(function(key2) { Object.defineProperty(target, key2, Object.getOwnPropertyDescriptor(source, key2)); }); } return target; } function _object_without_properties_loose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key2, i2; for (i2 = 0; i2 < sourceKeys.length; i2++) { key2 = sourceKeys[i2]; if (excluded.indexOf(key2) >= 0) continue; target[key2] = source[key2]; } return target; } function _object_without_properties(source, excluded) { if (source == null) return {}; var target = _object_without_properties_loose(source, excluded); var key2, i2; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i2 = 0; i2 < sourceSymbolKeys.length; i2++) { key2 = sourceSymbolKeys[i2]; if (excluded.indexOf(key2) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key2)) continue; target[key2] = source[key2]; } } return target; } var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; function getDefaultExportFromCjs(x) { return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x; } var classnames = { exports: {} }; /*! Copyright (c) 2018 Jed Watson. Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames */ (function(module2) { (function() { var hasOwn = {}.hasOwnProperty; function classNames2() { var classes = ""; for (var i2 = 0; i2 < arguments.length; i2++) { var arg = arguments[i2]; if (arg) { classes = appendClass(classes, parseValue(arg)); } } return classes; } function parseValue(arg) { if (typeof arg === "string" || typeof arg === "number") { return arg; } if (typeof arg !== "object") { return ""; } if (Array.isArray(arg)) { return classNames2.apply(null, arg); } if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes("[native code]")) { return arg.toString(); } var classes = ""; for (var key2 in arg) { if (hasOwn.call(arg, key2) && arg[key2]) { classes = appendClass(classes, key2); } } return classes; } function appendClass(value2, newClass) { if (!newClass) { return value2; } if (value2) { return value2 + " " + newClass; } return value2 + newClass; } if (module2.exports) { classNames2.default = classNames2; module2.exports = classNames2; } else { window.classNames = classNames2; } })(); })(classnames); var classnamesExports = classnames.exports; const classNames = /* @__PURE__ */ getDefaultExportFromCjs(classnamesExports); const n$b = { classPrefix: "nut-icon", tag: "i", fontClassName: "nutui-iconfont" }; var re = { exports: {} }, Y = {}; /** * @license React * react-jsx-runtime.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var Oe; function vr() { if (Oe) return Y; Oe = 1; var D = React, E = Symbol.for("react.element"), A = Symbol.for("react.fragment"), R = Object.prototype.hasOwnProperty, P = D.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, C = { key: true, ref: true, __self: true, __source: true }; function _(m2, f, T) { var d2, h = {}, y = null, x = null; T !== void 0 && (y = "" + T), f.key !== void 0 && (y = "" + f.key), f.ref !== void 0 && (x = f.ref); for (d2 in f) R.call(f, d2) && !C.hasOwnProperty(d2) && (h[d2] = f[d2]); if (m2 && m2.defaultProps) for (d2 in f = m2.defaultProps, f) h[d2] === void 0 && (h[d2] = f[d2]); return { $$typeof: E, type: m2, key: y, ref: x, props: h, _owner: P.current }; } return Y.Fragment = A, Y.jsx = _, Y.jsxs = _, Y; } var N = {}; /** * @license React * react-jsx-runtime.development.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var Pe; function pr() { return Pe || (Pe = 1, process.env.NODE_ENV !== "production" && function() { var D = React, E = Symbol.for("react.element"), A = Symbol.for("react.portal"), R = Symbol.for("react.fragment"), P = Symbol.for("react.strict_mode"), C = Symbol.for("react.profiler"), _ = Symbol.for("react.provider"), m2 = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), T = Symbol.for("react.suspense"), d2 = Symbol.for("react.suspense_list"), h = Symbol.for("react.memo"), y = Symbol.for("react.lazy"), x = Symbol.for("react.offscreen"), j = Symbol.iterator, L = "@@iterator"; function V2(e) { if (e === null || typeof e != "object") return null; var r = j && e[j] || e[L]; return typeof r == "function" ? r : null; } var w = D.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; function u(e) { { for (var r = arguments.length, t = new Array(r > 1 ? r - 1 : 0), n2 = 1; n2 < r; n2++) t[n2 - 1] = arguments[n2]; ke("error", e, t); } } function ke(e, r, t) { { var n2 = w.ReactDebugCurrentFrame, o = n2.getStackAddendum(); o !== "" && (r += "%s", t = t.concat([o])); var s2 = t.map(function(i2) { return String(i2); }); s2.unshift("Warning: " + r), Function.prototype.apply.call(console[e], console, s2); } } var Fe = false, De = false, Ae = false, Ie = false, $e = false, ne; ne = Symbol.for("react.module.reference"); function We(e) { return !!(typeof e == "string" || typeof e == "function" || e === R || e === C || $e || e === P || e === T || e === d2 || Ie || e === x || Fe || De || Ae || typeof e == "object" && e !== null && (e.$$typeof === y || e.$$typeof === h || e.$$typeof === _ || e.$$typeof === m2 || e.$$typeof === f || // This needs to include all possible module reference object // types supported by any Flight configuration anywhere since // we don't know which Flight build this will end up being used // with. e.$$typeof === ne || e.getModuleId !== void 0)); } function Ye(e, r, t) { var n2 = e.displayName; if (n2) return n2; var o = r.displayName || r.name || ""; return o !== "" ? t + "(" + o + ")" : t; } function ae(e) { return e.displayName || "Context"; } function b(e) { if (e == null) return null; if (typeof e.tag == "number" && u("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof e == "function") return e.displayName || e.name || null; if (typeof e == "string") return e; switch (e) { case R: return "Fragment"; case A: return "Portal"; case C: return "Profiler"; case P: return "StrictMode"; case T: return "Suspense"; case d2: return "SuspenseList"; } if (typeof e == "object") switch (e.$$typeof) { case m2: var r = e; return ae(r) + ".Consumer"; case _: var t = e; return ae(t._context) + ".Provider"; case f: return Ye(e, e.render, "ForwardRef"); case h: var n2 = e.displayName || null; return n2 !== null ? n2 : b(e.type) || "Memo"; case y: { var o = e, s2 = o._payload, i2 = o._init; try { return b(i2(s2)); } catch { return null; } } } return null; } var S = Object.assign, I = 0, ie, oe, se, ue, le, ce, fe; function de() { } de.__reactDisabledLog = true; function Ne() { { if (I === 0) { ie = console.log, oe = console.info, se = console.warn, ue = console.error, le = console.group, ce = console.groupCollapsed, fe = console.groupEnd; var e = { configurable: true, enumerable: true, value: de, writable: true }; Object.defineProperties(console, { info: e, log: e, warn: e, error: e, group: e, groupCollapsed: e, groupEnd: e }); } I++; } } function Le() { { if (I--, I === 0) { var e = { configurable: true, enumerable: true, writable: true }; Object.defineProperties(console, { log: S({}, e, { value: ie }), info: S({}, e, { value: oe }), warn: S({}, e, { value: se }), error: S({}, e, { value: ue }), group: S({}, e, { value: le }), groupCollapsed: S({}, e, { value: ce }), groupEnd: S({}, e, { value: fe }) }); } I < 0 && u("disabledDepth fell below zero. This is a bug in React. Please file an issue."); } } var q = w.ReactCurrentDispatcher, K; function M(e, r, t) { { if (K === void 0) try { throw Error(); } catch (o) { var n2 = o.stack.trim().match(/\n( *(at )?)/); K = n2 && n2[1] || ""; } return ` ` + K + e; } } var G = false, U; { var Ve = typeof WeakMap == "function" ? WeakMap : Map; U = new Ve(); } function ve(e, r) { if (!e || G) return ""; { var t = U.get(e); if (t !== void 0) return t; } var n2; G = true; var o = Error.prepareStackTrace; Error.prepareStackTrace = void 0; var s2; s2 = q.current, q.current = null, Ne(); try { if (r) { var i2 = function() { throw Error(); }; if (Object.defineProperty(i2.prototype, "props", { set: function() { throw Error(); } }), typeof Reflect == "object" && Reflect.construct) { try { Reflect.construct(i2, []); } catch (p2) { n2 = p2; } Reflect.construct(e, [], i2); } else { try { i2.call(); } catch (p2) { n2 = p2; } e.call(i2.prototype); } } else { try { throw Error(); } catch (p2) { n2 = p2; } e(); } } catch (p2) { if (p2 && n2 && typeof p2.stack == "string") { for (var a = p2.stack.split(` `), v = n2.stack.split(` `), l2 = a.length - 1, c6 = v.length - 1; l2 >= 1 && c6 >= 0 && a[l2] !== v[c6]; ) c6--; for (; l2 >= 1 && c6 >= 0; l2--, c6--) if (a[l2] !== v[c6]) { if (l2 !== 1 || c6 !== 1) do if (l2--, c6--, c6 < 0 || a[l2] !== v[c6]) { var g = ` ` + a[l2].replace(" at new ", " at "); return e.displayName && g.includes("<anonymous>") && (g = g.replace("<anonymous>", e.displayName)), typeof e == "function" && U.set(e, g), g; } while (l2 >= 1 && c6 >= 0); break; } } } finally { G = false, q.current = s2, Le(), Error.prepareStackTrace = o; } var F = e ? e.displayName || e.name : "", O = F ? M(F) : ""; return typeof e == "function" && U.set(e, O), O; } function Me(e, r, t) { return ve(e, false); } function Ue(e) { var r = e.prototype; return !!(r && r.isReactComponent); } function B(e, r, t) { if (e == null) return ""; if (typeof e == "function") return ve(e, Ue(e)); if (typeof e == "string") return M(e); switch (e) { case T: return M("Suspense"); case d2: return M("SuspenseList"); } if (typeof e == "object") switch (e.$$typeof) { case f: return Me(e.render); case h: return B(e.type, r, t); case y: { var n2 = e, o = n2._payload, s2 = n2._init; try { return B(s2(o), r, t); } catch { } } } return ""; } var $ = Object.prototype.hasOwnProperty, pe = {}, ge = w.ReactDebugCurrentFrame; function J(e) { if (e) { var r = e._owner, t = B(e.type, e._source, r ? r.type : null); ge.setExtraStackFrame(t); } else ge.setExtraStackFrame(null); } function Be(e, r, t, n2, o) { { var s2 = Function.call.bind($); for (var i2 in e) if (s2(e, i2)) { var a = void 0; try { if (typeof e[i2] != "function") { var v = Error((n2 || "React class") + ": " + t + " type `" + i2 + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof e[i2] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."); throw v.name = "Invariant Violation", v; } a = e[i2](r, i2, n2, t, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"); } catch (l2) { a = l2; } a && !(a instanceof Error) && (J(o), u("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", n2 || "React class", t, i2, typeof a), J(null)), a instanceof Error && !(a.message in pe) && (pe[a.message] = true, J(o), u("Failed %s type: %s", t, a.message), J(null)); } } } var Je = Array.isArray; function z(e) { return Je(e); } function qe(e) { { var r = typeof Symbol == "function" && Symbol.toStringTag, t = r && e[Symbol.toStringTag] || e.constructor.name || "Object"; return t; } } function Ke(e) { try { return he(e), false; } catch { return true; } } function he(e) { return "" + e; } function ye(e) { if (Ke(e)) return u("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", qe(e)), he(e); } var W = w.ReactCurrentOwner, Ge = { key: true, ref: true, __self: true, __source: true }, be, me; function ze(e) { if ($.call(e, "ref")) { var r = Object.getOwnPropertyDescriptor(e, "ref").get; if (r && r.isReactWarning) return false; } return e.ref !== void 0; } function Xe(e) { if ($.call(e, "key")) { var r = Object.getOwnPropertyDescriptor(e, "key").get; if (r && r.isReactWarning) return false; } return e.key !== void 0; } function He(e, r) { if (typeof e.ref == "string" && W.current && r) ; } function Ze(e, r) { { var t = function() { be || (be = true, u("%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://reactjs.org/link/special-props)", r)); }; t.isReactWarning = true, Object.defineProperty(e, "key", { get: t, configurable: true }); } } function Qe(e, r) { { var t = function() { me || (me = true, u("%s: `ref` 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://reactjs.org/link/special-props)", r)); }; t.isReactWarning = true, Object.defineProperty(e, "ref", { get: t, configurable: true }); } } var er = function(e, r, t, n2, o, s2, i2) { var a = { // This tag allows us to uniquely identify this as a React Element $$typeof: E, // Built-in properties that belong on the element type: e, key: r, ref: t, props: i2, // Record the component responsible for creating this element. _owner: s2 }; return a._store = {}, Object.defineProperty(a._store, "validated", { configurable: false, enumerable: false, writable: true, value: false }), Object.defineProperty(a, "_self", { configurable: false, enumerable: false, writable: false, value: n2 }), Object.defineProperty(a, "_source", { configurable: false, enumerable: false, writable: false, value: o }), Object.freeze && (Object.freeze(a.props), Object.freeze(a)), a; }; function rr(e, r, t, n2, o) { { var s2, i2 = {}, a = null, v = null; t !== void 0 && (ye(t), a = "" + t), Xe(r) && (ye(r.key), a = "" + r.key), ze(r) && (v = r.ref, He(r, o)); for (s2 in r) $.call(r, s2) && !Ge.hasOwnProperty(s2) && (i2[s2] = r[s2]); if (e && e.defaultProps) { var l2 = e.defaultProps; for (s2 in l2) i2[s2] === void 0 && (i2[s2] = l2[s2]); } if (a || v) { var c6 = typeof e == "function" ? e.displayName || e.name || "Unknown" : e; a && Ze(i2, c6), v && Qe(i2, c6); } return er(e, a, v, o, n2, W.current, i2); } } var H = w.ReactCurrentOwner, Ee = w.ReactDebugCurrentFrame; function k(e) { if (e) { var r = e._owner, t = B(e.type, e._source, r ? r.type : null); Ee.setExtraStackFrame(t); } else Ee.setExtraStackFrame(null); } var Z; Z = false; function Q(e) { return typeof e == "object" && e !== null && e.$$typeof === E; } function Re() { { if (H.current) { var e = b(H.current.type); if (e) return ` Check the render method of \`` + e + "`."; } return ""; } } function tr(e) { { return ""; } } var _e = {}; function nr(e) { { var r = Re(); if (!r) { var t = typeof e == "string" ? e : e.displayName || e.name; t && (r = ` Check the top-level render call using <` + t + ">."); } return r; } } function Te(e, r) { { if (!e._store || e._store.validated || e.key != null) return; e._store.validated = true; var t = nr(r); if (_e[t]) return; _e[t] = true; var n2 = ""; e && e._owner && e._owner !== H.current && (n2 = " It was passed a child from " + b(e._owner.type) + "."), k(e), u('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', t, n2), k(null); } } function we(e, r) { { if (typeof e != "object") return; if (z(e)) for (var t = 0; t < e.length; t++) { var n2 = e[t]; Q(n2) && Te(n2, r); } else if (Q(e)) e._store && (e._store.validated = true); else if (e) { var o = V2(e); if (typeof o == "function" && o !== e.entries) for (var s2 = o.call(e), i2; !(i2 = s2.next()).done; ) Q(i2.value) && Te(i2.value, r); } } } function ar(e) { { var r = e.type; if (r == null || typeof r == "string") return; var t; if (typeof r == "function") t = r.propTypes; else if (typeof r == "object" && (r.$$typeof === f || // Note: Memo only checks outer props here. // Inner props are checked in the reconciler. r.$$typeof === h)) t = r.propTypes; else return; if (t) { var n2 = b(r); Be(t, e.props, "prop", n2, e); } else if (r.PropTypes !== void 0 && !Z) { Z = true; var o = b(r); u("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", o || "Unknown"); } typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved && u("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead."); } } function ir(e) { { for (var r = Object.keys(e.props), t = 0; t < r.length; t++) { var n2 = r[t]; if (n2 !== "children" && n2 !== "key") { k(e), u("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", n2), k(null); break; } } e.ref !== null && (k(e), u("Invalid attribute `ref` supplied to `React.Fragment`."), k(null)); } } var Ce = {}; function Se(e, r, t, n2, o, s2) { { var i2 = We(e); if (!i2) { var a = ""; (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (a += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."); var v = tr(); v ? a += v : a += Re(); var l2; e === null ? l2 = "null" : z(e) ? l2 = "array" : e !== void 0 && e.$$typeof === E ? (l2 = "<" + (b(e.type) || "Unknown") + " />", a = " Did you accidentally export a JSX literal instead of a component?") : l2 = typeof e, u("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", l2, a); } var c6 = rr(e, r, t, o, s2); if (c6 == null) return c6; if (i2) { var g = r.children; if (g !== void 0) if (n2) if (z(g)) { for (var F = 0; F < g.length; F++) we(g[F], e); Object.freeze && Object.freeze(g); } else u("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."); else we(g, e); } if ($.call(r, "key")) { var O = b(e), p2 = Object.keys(r).filter(function(fr) { return fr !== "key"; }), ee = p2.length > 0 ? "{key: someKey, " + p2.join(": ..., ") + ": ...}" : "{key: someKey}"; if (!Ce[O + ee]) { var cr = p2.length > 0 ? "{" + p2.join(": ..., ") + ": ...}" : "{}"; u(`A props object containing a "key" prop is being spread into JSX: let props = %s; <%s {...props} /> React keys must be passed directly to JSX without using spread: let props = %s; <%s key={someKey} {...props} />`, ee, O, cr, O), Ce[O + ee] = true; } } return e === R ? ir(c6) : ar(c6), c6; } } function or(e, r, t) { return Se(e, r, t, true); } function sr(e, r, t) { return Se(e, r, t, false); } var ur = sr, lr = or; N.Fragment = R, N.jsx = ur, N.jsxs = lr; }()), N; } process.env.NODE_ENV === "production" ? re.exports = vr() : re.exports = pr(); var te = re.exports; const gr = te.Fragment, xe = te.jsx, Er = te.jsxs, hr = { className: "", style: void 0, viewBox: " 0 0 1024 1024", name: "", width: "", height: "", onClick: () => { } }, yr = (D) => { const E = n$b.classPrefix, { viewBox: A, className: R, style: P, name: C, color: _, width: m2, height: f, children: T, onClick: d2 } = { ...hr, ...D }, h = (u) => { d2 && d2(u); }, y = (u) => u === "" ? "" : isNaN(Number(u)) ? String(u) : u + "px", x = () => `${E} ${E}-${C} ${R}`, j = {}, L = y(m2 || ""), V2 = y(f || ""); L && (j.width = L), V2 && (j.height = V2); const w = () => ({ color: _, ...P, ...j }); return /* @__PURE__ */ xe(gr, { children: /* @__PURE__ */ xe( "svg", { className: x(), style: w(), onClick: h, xmlns: "http://www.w3.org/2000/svg", color: _, viewBox: A, "aria-labelledby": C, role: "presentation", children: T } ) }); }, Rr = yr; const s$1 = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "ArrowDown", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M187.73 351.57a21.33 21.33 0 0 0 .43 29.66l307.63 307.62c8.32 8.32 21.76 8.32 30.08 0L835.2 379.73c8.53-8.53 8.32-22.19-.43-30.5l-15.36-14.72c-8.32-8.11-21.76-7.89-29.86.21L510.93 613.55 232.96 335.57c-8.53-8.53-22.4-8.32-30.72.43z", fill: "currentColor" } ) }); }; const n$a = (t) => { const r = { ...hr, ...t }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "ArrowLeft", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M651.09 188.8a21.33 21.33 0 0 0-29.65.43L313.81 496.85c-8.32 8.32-8.32 21.76 0 30.3l309.12 309.12c8.53 8.53 22.19 8.32 30.51-.22l14.72-15.57c8.11-8.32 7.89-21.76-.21-29.87L389.12 512l277.97-277.97c8.53-8.53 8.32-22.4-.42-30.51z", fill: "currentColor" } ) }); }; const i = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "ArrowRadius", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M416.38 43.01a128 128 0 0 1 191.24 0L1024 512H0z", fill: "currentColor" } ) }); }; const n$9 = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "ArrowUp", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M836.27 672.43a21.33 21.33 0 0 0-.43-29.66L528.21 335.15a21.25 21.25 0 0 0-30.08 0L188.8 644.27c-8.53 8.53-8.32 22.19.43 30.5l15.36 14.72c8.32 8.11 21.76 7.89 29.86-.21l278.62-278.83 277.97 277.98c8.53 8.53 22.4 8.32 30.72-.43z", fill: "currentColor" } ) }); }; const d$e = (s2) => { const c6 = { ...hr, ...s2 }; return /* @__PURE__ */ Er(Rr, { ...c6, name: c6.name || "Ask", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M418.35 394.88C415.79 406.4 406.4 416 394.67 416h-21.34c-11.73 0-21.55-9.6-19.84-21.33A160 160 0 0 1 512 256a160 160 0 0 1 32 316.8v3.2c0 11.73-9.6 21.33-21.33 21.33h-21.34c-11.73 0-21.33-9.6-21.33-21.33v-42.67c0-11.73 9.6-21.33 21.33-21.33H512c52.91 0 96-43.09 96-96s-43.09-96-96-96c-45.65 0-84.05 32-93.65 74.88m136.32 351.79c0 11.73-9.6 21.33-21.34 21.33h-42.66c-11.73 0-21.33-9.6-21.34-21.33V704c0-11.73 9.6-21.33 21.34-21.33h42.66c11.73 0 21.33 9.6 21.34 21.33z", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "M1024 512C1024 229.12 794.88 0 512 0S0 229.12 0 512s229.12 512 512 512 512-229.12 512-512m-64 0c0 247.47-200.53 448-448 448S64 759.47 64 512 264.53 64 512 64s448 200.53 448 448", fill: "currentColor" } ) ] }); }; const c$1 = (o) => { const r = { ...hr, ...o }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "CheckChecked", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 1024A512 512 0 1 0 512 0a512 512 0 0 0 0 1024m0-256a256 256 0 1 1 0-512 256 256 0 0 1 0 512", fill: "currentColor" } ) }); }; const n$8 = (o) => { const a = { ...hr, ...o }; return /* @__PURE__ */ xe(Rr, { ...a, name: a.name || "CheckDisabled", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 1024A512 512 0 1 0 512 0a512 512 0 0 0 0 1024m240-464H272a16 16 0 0 1-16-16v-64a16 16 0 0 1 16-16h480a16 16 0 0 1 16 16v64a16 16 0 0 1-16 16", fill: "currentColor" } ) }); }; const n$7 = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "CheckNormal", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 992a480 480 0 1 1 0-960 480 480 0 0 1 0 960m0 32A512 512 0 1 0 512 0a512 512 0 0 0 0 1024", fill: "currentColor" } ) }); }; const l = (e) => { const r = { ...hr, ...e }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "Check", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "m942.94 336.9 44.34-44.33-88.67-88.67-44.32 44.35-457.23 457.2-248.25-248.2-44.32-44.37-88.67 88.67 44.35 44.33 248.22 248.24 44.35 44.33 44.32 44.34 44.33-44.34 44.34-44.33L942.92 336.9z", fill: "currentColor" } ) }); }; const n$6 = (o) => { const a = { ...hr, ...o }; return /* @__PURE__ */ xe(Rr, { ...a, name: a.name || "Checked", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 1024A512 512 0 1 0 512 0a512 512 0 0 0 0 1024m276.8-647.49L448.45 719.68 235.2 504.64a16 16 0 0 1 0-22.46l44.86-45.25a16 16 0 0 1 22.72 0l145.67 146.75 272.77-275.01a16 16 0 0 1 22.72 0l44.86 45.25a16 16 0 0 1 0 22.53z", fill: "currentColor" } ) }); }; const n$5 = (c6) => { const o = { ...hr, ...c6 }; return /* @__PURE__ */ xe(Rr, { ...o, name: o.name || "Close", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 557.23 783.57 828.8c8.32 8.32 21.76 8.32 30.3 0l14.93-14.93c8.32-8.32 8.32-21.76 0-30.3L557.23 512 828.8 240.43c8.32-8.32 8.32-21.76 0-30.3l-14.93-14.93c-8.32-8.32-21.76-8.32-30.3 0L512 466.77 240.43 195.2c-8.32-8.32-21.76-8.32-30.3 0l-14.93 14.93c-8.32 8.32-8.32 21.76 0 30.3L466.77 512 195.2 783.57c-8.32 8.32-8.32 21.76 0 30.3l14.93 14.93c8.32 8.32 21.76 8.32 30.3 0z", fill: "currentColor" } ) }); }; const d$d = (a) => { const c6 = { ...hr, ...a }; return /* @__PURE__ */ Er(Rr, { ...c6, name: c6.name || "Del", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M320 64c0-11.73 9.6-21.33 21.33-21.33h341.34C694.4 42.67 704 52.27 704 64v21.33c0 11.73-9.6 21.33-21.33 21.34H341.33c-11.73 0-21.33-9.6-21.33-21.34zm42.67 405.33c0-11.73 9.6-21.33 21.33-21.33h21.33c11.73 0 21.33 9.6 21.34 21.33v213.34c0 11.73-9.6 21.33-21.34 21.33H384c-11.73 0-21.33-9.6-21.33-21.33zm256-21.33c-11.73 0-21.33 9.6-21.34 21.33v213.34c0 11.73 9.6 21.33 21.34 21.33H640c11.73 0 21.33-9.6 21.33-21.33V469.33c0-11.73-9.6-21.33-21.33-21.33z", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "M0 213.33C0 201.6 9.6 192 21.33 192h981.34c11.73 0 21.33 9.6 21.33 21.33v21.34c0 11.73-9.6 21.33-21.33 21.33h-67.42l-30.5 563.84a170.82 170.82 0 0 1-170.46 161.49H289.71a170.67 170.67 0 0 1-170.46-161.49L88.75 256H21.33C9.6 256 0 246.4 0 234.67zM152.96 256l30.29 560.43a106.71 106.71 0 0 0 106.46 100.9h444.58c56.75 0 103.47-44.37 106.46-100.9L871.04 256z", fill: "currentColor" } ) ] }); }; const d$c = (l2) => { const r = { ...hr, ...l2 }; return /* @__PURE__ */ Er(Rr, { ...r, name: r.name || "Failure", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M336.85 321.92c8.32-8.32 21.76-8.32 30.3 0L512 466.77l144.85-144.85c8.32-8.32 21.76-8.32 30.3 0l14.93 14.93c8.32 8.32 8.32 21.76 0 30.3L557.23 512l144.85 144.85c8.32 8.32 8.32 21.76 0 30.3l-14.93 14.93c-8.32 8.32-21.76 8.32-30.3 0L512 557.23 367.15 702.08c-8.32 8.32-21.76 8.32-30.3 0l-14.93-14.93c-8.32-8.32-8.32-21.76 0-30.3L466.77 512 321.92 367.15c-8.32-8.32-8.32-21.76 0-30.3z", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "M1024 512c0 282.88-229.12 512-512 512S0 794.88 0 512 229.12 0 512 0s512 229.12 512 512m-64 0c0-247.47-200.53-448-448-448S64 264.53 64 512s200.53 448 448 448 448-200.53 448-448", fill: "currentColor" } ) ] }); }; const d$b = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ Er(Rr, { ...r, name: r.name || "ImageError", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M696.43 465.25c40.61 0 73.53-32.72 73.53-73.09s-32.96-73.08-73.53-73.08-73.54 32.72-73.54 73.08 32.92 73.09 73.54 73.09M535.74 650.62l-273.61-259.4a56.2 56.2 0 0 0-15.36 11.58l-114 119.63-6-222.77c-.73-26.82 20.84-49.41 47.67-50.14l201.77-5.44 47.34-50-250.43 6.75C119 202.33 76.33 247.17 77.78 301l7.32 271.4 4.5 166.78C91.06 793 136.05 835.47 190.2 834l176-4.75 12-.32 47.34-50 116.18-122.64z", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "m861.71 214.8-242.83-33.86-55.09 41.46L855 263a49.05 49.05 0 0 1 41.79 55.13l-54.33 389.59-120.87-159.05A59.86 59.86 0 0 0 638.06 537l-44 33.08 65.07 86.15L603.84 698l-79.57 60.1-54.92 41.48 34.17 4.76 270.73 37.76a97.55 97.55 0 0 0 109.88-79.6 22.4 22.4 0 0 0 .65-3.44l60.53-434.16c7.44-53.32-29.95-102.62-83.6-110.1", fill: "currentColor" } ) ] }); }; const d$a = (r) => { const a = { ...hr, ...r }; return /* @__PURE__ */ Er(Rr, { ...a, name: a.name || "Image", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M255.78 255.78a42.48 42.48 0 0 0-42.63 42.63c0 23.66 18.97 42.63 42.63 42.63s42.63-18.97 42.63-42.63-18.97-42.63-42.63-42.63", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "M1023.13 809.98V444.42c1.07-4.9 1.07-10.02 0-14.92V213.15c0-94.21-76.31-170.52-170.52-170.52H170.52C76.31 42.63 0 118.94 0 213.15v596.83C0 904.19 76.31 980.5 170.52 980.5h682.09c94.21 0 170.52-76.31 170.52-170.52m-170.52-703.4c58.83 0 106.58 47.75 106.57 106.57v169.88a458.2 458.2 0 0 0-191.83-41.99c-187.79 0-348.93 112.76-419.91 274.33a350.2 350.2 0 0 0-198.23-61.18c-29.41 0-57.98 3.62-85.26 10.45V213.15c0-58.83 47.75-106.58 106.57-106.57zM63.95 809.98V630.93c26.86-8.31 55.63-12.79 85.26-12.79 73.75 0 140.89 27.71 191.83 73.32a32.02 32.02 0 0 0 53.08-19.61c53.07-155.39 200.15-266.87 373.23-266.86 69.7 0 135.14 18.12 191.83 49.66v355.33c0 58.83-47.75 106.58-106.57 106.57H170.52c-58.83 0-106.58-47.75-106.57-106.57", fill: "currentColor" } ) ] }); }; const c = (a) => { const o = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...o, name: o.name || "JoySmile", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M728.58 159.81a39.33 39.33 0 1 0-54.28-56.95c-94.92 90.4-244.1 90.4-339.03 0A39.35 39.35 0 0 0 281 159.81c125.33 119.35 322.24 119.35 447.58 0", fill: "currentColor" } ) }); }; const d$9 = (r) => { const a = { ...hr, ...r }; return /* @__PURE__ */ xe(Rr, { ...a, name: a.name || "Link", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M777.87 246.13a166.03 166.03 0 0 0-234.78 0l-74.39 74.24a43.89 43.89 0 0 1-62.03-62.1l74.24-74.24A253.81 253.81 0 0 1 839.9 543.01l-74.17 74.32a43.89 43.89 0 1 1-62.1-62.03l74.24-74.24a166.03 166.03 0 0 0 0-234.86zM637.44 386.56a43.89 43.89 0 0 1 0 62.03L448.66 637.51a43.89 43.89 0 1 1-62.1-62.1l188.93-188.92a43.89 43.89 0 0 1 62.1 0zm-317.07 20.11a43.89 43.89 0 0 1 0 62.03l-74.24 74.31a166.03 166.03 0 0 0 234.78 234.86l74.39-74.24a43.89 43.89 0 0 1 62.03 62.1l-74.24 74.17A253.81 253.81 0 1 1 184.1 480.99l74.17-74.32a43.89 43.89 0 0 1 62.1 0", fill: "currentColor" } ) }); }; const s = (o) => { const a = { ...hr, ...o }; return /* @__PURE__ */ xe(Rr, { ...a, name: a.name || "Loading", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 73.14a43.89 43.89 0 0 1 43.89 43.89v118.49a43.89 43.89 0 0 1-87.78 0V117.03A43.89 43.89 0 0 1 512 73.14M201.65 201.65a43.89 43.89 0 0 1 62.1 0l83.68 83.83a43.89 43.89 0 1 1-62.03 62.02l-83.75-83.75a43.89 43.89 0 0 1 0-62.1m620.7 0a43.89 43.89 0 0 1 0 62.1l-83.83 83.68a43.89 43.89 0 1 1-62.02-62.03l83.75-83.82a43.89 43.89 0 0 1 62.1 0zM73.14 512a43.89 43.89 0 0 1 43.89-43.89h118.49a43.89 43.89 0 0 1 0 87.78H117.03A43.89 43.89 0 0 1 73.14 512m671.45 0a43.89 43.89 0 0 1 43.89-43.89h118.49a43.89 43.89 0 1 1 0 87.78H788.48A43.89 43.89 0 0 1 744.59 512M347.5 676.5a43.89 43.89 0 0 1 0 62.02l-83.75 83.83a43.89 43.89 0 1 1-62.1-62.1l83.83-83.68a43.89 43.89 0 0 1 62.02 0zm329 0a43.89 43.89 0 0 1 62.02 0l83.83 83.75a43.89 43.89 0 1 1-62.1 62.1l-83.68-83.83a43.89 43.89 0 0 1 0-62.02zM512 744.59a43.89 43.89 0 0 1 43.89 43.89v118.49a43.89 43.89 0 1 1-87.78 0V788.48A43.89 43.89 0 0 1 512 744.59", fill: "currentColor" } ) }); }; const d$8 = (a) => { const o = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...o, name: o.name || "Loading1", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M520.66 64.56a29.2 29.2 0 0 0-7.07-.89c-16.21 0-29.35 13.14-29.35 29.35 0 15.83 12.54 28.7 28.23 29.29v.08c.38 0 .75-.01 1.12-.02 216.49 0 389.63 173.94 389.63 390.44S730.08 901.64 513.59 901.63 123.96 729.3 123.96 512.8c0-.27.01-.54.01-.8h-.01c0-16.21-13.14-29.35-29.35-29.35S65.26 495.79 65.26 512c0 .06.01.11.01.16 0 .21-.01.42-.01.64 0 247.61 200.72 448.33 448.33 448.33S961.92 760.41 961.92 512.8c0-245.24-196.92-444.46-441.25-448.24z", fill: "currentColor" } ) }); }; const m$1 = (o) => { const c6 = { ...hr, ...o }; return /* @__PURE__ */ Er(Rr, { ...c6, name: c6.name || "Location", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M442.03 982.4v-.21c-89.81-58.03-243.41-173.65-324.27-328.54C84.91 591.14 64 522.02 64 448 64 200.53 264.53 0 512 0s448 200.53 448 448c0 74.24-20.91 143.57-53.97 206.29-9.17 17.49-19.2 34.35-29.87 50.78-84.91 129.07-214.61 225.92-294.19 277.12C539.94 1009.28 512 1024 512 1024s-27.95-14.51-69.97-41.6m105.17-53.76c3.41-2.13 6.61-4.27 10.03-6.61 24.32-16 47.79-32.64 69.97-49.92 23.04-17.71 45.01-36.05 65.92-54.83 22.83-20.48 43.52-41.17 62.51-62.08l7.04-7.68c28.59-32.21 52.69-64.64 72.53-97.49 33.28-55.47 52.91-110.51 58.88-165.34 1.28-12.16 1.92-24.53 1.92-36.69a380.3 380.3 0 0 0-30.08-149.55c-19.41-45.87-46.93-86.61-82.35-122.02a381.6 381.6 0 0 0-122.02-82.35c-39.89-16.85-81.07-26.67-124.16-29.23-8.32-.43-16.85-.85-25.39-.85a379.2 379.2 0 0 0-149.33 30.08c-45.87 19.41-86.61 46.93-122.24 82.35a381.6 381.6 0 0 0-82.35 122.02c-16.85 39.89-26.67 81.28-29.23 124.38-.43 8.32-.85 16.64-.85 25.17 0 8.32.43 16.64 1.07 25.17 4.48 58.67 24.53 117.55 59.94 176.86 20.48 34.35 46.08 68.27 76.16 101.76 19.84 21.97 41.81 43.73 65.71 65.49 20.69 18.77 42.45 36.91 65.28 54.4a1169 1169 0 0 0 79.36 56.11c.43.21.85.64 1.28.85 10.88 7.04 20.69 13.23 29.87 18.77 1.71 1.07 3.63 2.13 5.33 3.2 1.71-1.07 3.41-1.92 5.12-2.98 9.17-5.55 19.2-11.95 30.08-18.99M512 640a192 192 0 1 1 .02-384.02A192 192 0 0 1 512 640m0-320c-4.48 0-8.75.21-13.01.64-23.89 2.13-45.23 10.45-64 24.96-4.69 3.63-9.17 7.68-13.44 11.95a122.82 122.82 0 0 0-36.91 77.22 134 134 0 0 0 0 26.24c2.77 29.87 14.93 55.68 36.91 77.44 4.27 4.48 8.96 8.32 13.44 11.95 18.77 14.51 39.89 22.61 63.78 24.96a134 134 0 0 0 26.24 0c23.89-2.13 45.01-10.45 63.79-24.75 4.69-3.63 9.39-7.68 13.65-12.16 4.48-4.48 8.53-8.96 12.16-13.65 14.29-18.77 22.61-39.89 24.75-63.57a134 134 0 0 0 0-26.24c-2.13-23.89-10.45-45.23-24.96-64-3.63-4.69-7.68-9.17-11.95-13.44a122.82 122.82 0 0 0-77.01-36.91c-4.48-.43-8.96-.64-13.44-.64", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "M960 448c0 343.47-448 576-448 576S64 791.47 64 448C64 200.53 264.53 0 512 0s448 200.53 448 448M476.8 928.64c12.8 8.32 24.53 15.57 35.2 21.97 10.67-6.4 22.4-13.65 35.2-21.97q79.68-51.525 145.92-111.36c60.59-54.61 107.95-110.51 142.08-167.25C875.73 582.19 896 514.99 896 448a381.6 381.6 0 0 0-112.43-271.57A381.6 381.6 0 0 0 512 64a381.6 381.6 0 0 0-271.57 112.43A381.6 381.6 0 0 0 128 448c0 66.99 20.27 134.19 60.8 202.03 34.13 56.75 81.28 112.64 142.08 167.25 44.16 39.89 92.8 76.8 145.92 111.36M512 256a192 192 0 1 1-.02 384.02A192 192 0 0 1 512 256m0 64c-35.41 0-65.49 12.59-90.45 37.55S384 412.8 384 448c0 35.41 12.59 65.49 37.55 90.45S476.8 576 512 576c35.41 0 65.49-12.59 90.45-37.55S640 483.2 640 448c0-35.41-12.59-65.49-37.55-90.45S547.2 320 512 320", fill: "currentColor" } ) ] }); }; const n$4 = (r) => { const s2 = { ...hr, ...r }; return /* @__PURE__ */ xe(Rr, { ...s2, name: s2.name || "MaskClose", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M512 14.9C238.59 14.9 14.9 238.6 14.9 512s223.7 497.1 497.1 497.1 497.1-223.7 497.1-497.1S785.4 14.9 512 14.9m207.13 646.23c16.57 16.57 16.57 41.42 0 58s-41.42 16.57-58 0L512 570 362.87 719.13c-16.57 16.57-41.43 16.57-58 0s-16.57-41.42 0-58L454 512 304.87 362.87c-16.57-16.57-16.57-41.43 0-58s41.42-16.57 58 0L512 454l149.13-149.13c16.57-16.57 41.43-16.57 58 0s16.57 41.42 0 58L570 512z", fill: "currentColor" } ) }); }; const d$7 = (t) => { const r = { ...hr, ...t }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "Minus", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M277.33 480c-11.73 0-21.33 9.6-21.33 21.33v21.34c0 11.73 9.6 21.33 21.33 21.33h469.34c11.73 0 21.33-9.6 21.33-21.33v-21.34c0-11.73-9.6-21.33-21.33-21.33z", fill: "currentColor" } ) }); }; const d$6 = (s2) => { const r = { ...hr, ...s2 }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "More", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M149.33 576c35.41 0 64-28.59 64-64s-28.59-64-64-64-64 28.59-64 64 28.59 64 64 64M576 512c0 35.41-28.59 64-64 64s-64-28.59-64-64 28.59-64 64-64 64 28.59 64 64m362.67 0c0 35.41-28.59 64-64 64s-64-28.59-64-64 28.59-64 64-64 64 28.59 64 64", fill: "currentColor" } ) }); }; const n$3 = (r) => { const c6 = { ...hr, ...r }; return /* @__PURE__ */ xe(Rr, { ...c6, name: c6.name || "Notice", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M544 21.33C544 9.6 534.4 0 522.67 0h-21.34C489.6 0 480 9.6 480 21.33v65.5c-179.41 16.21-320 167.04-320 350.5v226.35c0 26.45-6.19 52.69-17.92 76.37l-36.48 72.96c-14.29 28.37 6.4 61.65 38.19 61.66h736.42c31.79 0 52.27-33.28 38.19-61.66l-36.48-72.96A172.4 172.4 0 0 1 864 663.68V437.33c0-183.68-140.59-334.51-320-350.5zm-32 128c159.15 0 288 128.85 288 288v226.35c0 36.48 8.53 72.32 24.75 104.96l21.12 42.03H178.13l21.12-42.03C215.46 736 224 700.16 224 663.68V437.33c0-159.15 128.85-288 288-288M405.33 1024c-11.73 0-21.33-9.6-21.33-21.33v-21.34c0-11.73 9.6-21.33 21.33-21.33h213.34c11.73 0 21.33 9.6 21.33 21.33v21.34c0 11.73-9.6 21.33-21.33 21.33z", fill: "currentColor" } ) }); }; const m = (o) => { const c6 = { ...hr, ...o }; return /* @__PURE__ */ Er(Rr, { ...c6, name: c6.name || "Photograph", viewBox: "0 0 1024 1024", children: [ /* @__PURE__ */ xe( "path", { d: "M725.33 298.67c0-11.73 9.6-21.33 21.34-21.34H832c11.73 0 21.33 9.6 21.33 21.34V320c0 11.73-9.6 21.33-21.33 21.33h-85.33c-11.73 0-21.33-9.6-21.34-21.33zm10.67 256c0 123.73-100.27 224-224 224s-224-100.27-224-224 100.27-224 224-224 224 100.27 224 224m-64 0c0-88.32-71.68-160-160-160s-160 71.68-160 160 71.68 160 160 160 160-71.68 160-160", fill: "currentColor" } ), ",", /* @__PURE__ */ xe( "path", { d: "m274.77 149.33 5.98-18.13c17.07-52.91 66.35-88.53 121.6-88.53h219.3c55.47 0 104.75 35.84 121.6 88.53l5.98 18.13h104.1C947.62 149.33 1024 225.7 1024 320v490.67c0 94.29-76.37 170.67-170.67 170.66H170.67C76.38 981.33 0 904.96 0 810.67V320c0-94.29 76.37-170.67 170.67-170.67zm46.51 64H170.67C111.79 213.33 64 261.12 64 320v490.67c0 58.88 47.79 106.67 106.67 106.66h682.66c58.88 0 106.67-47.79 106.67-106.66V320c0-58.88-47.79-106.67-106.67-106.67H702.72l-20.27-62.29a63.91 63.91 0 0 0-60.8-44.37h-219.3c-27.73 0-52.27 17.92-60.8 44.37z", fill: "currentColor" } ) ] }); }; const d$5 = (o) => { const a = { ...hr, ...o }; return /* @__PURE__ */ xe(Rr, { ...a, name: a.name || "Plus", viewBox: "0 0 1024 1024", children: /* @__PURE__ */ xe( "path", { d: "M460.8 972.8a51.2 51.2 0 1 0 102.4 0V563.2h409.6a51.2 51.2 0 1 0 0-102.4H563.2V51.2a51.2 51.2 0 1 0-102.4 0v409.6H51.2a51.2 51.2 0 1 0 0 102.4h409.6z", fill: "currentColor" } ) }); }; const n$2 = (a) => { const r = { ...hr, ...a }; return /* @__PURE__ */ xe(Rr, { ...r, name: r.name || "Search", viewBox: "0 0 1024