@datacrest/dcuikit 0.0.4 → 0.0.7

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.
Files changed (52) hide show
  1. package/build/components/Atom/Button/Button.d.ts +1 -11
  2. package/build/components/Atom/Button/Button.stories.d.ts +1 -1
  3. package/build/components/Atom/Button/Button.types.d.ts +10 -0
  4. package/build/components/Atom/Button/index.d.ts +1 -2
  5. package/build/components/Atom/Checkbox/Checkbox.d.ts +12 -0
  6. package/build/components/Atom/Checkbox/Checkbox.stories.d.ts +4 -0
  7. package/build/components/Atom/Checkbox/Checkbox.test.d.ts +1 -0
  8. package/build/components/Atom/Checkbox/Checkbox.types.d.ts +2 -0
  9. package/build/components/Atom/Checkbox/index.d.ts +3 -0
  10. package/build/components/Atom/Icon/Custom/Icons/Success.d.ts +3 -0
  11. package/build/components/Atom/Icon/Custom/index.d.ts +1 -0
  12. package/build/components/Atom/Icon/Icon.d.ts +1 -8
  13. package/build/components/Atom/Icon/Icon.stories.d.ts +1 -1
  14. package/build/components/Atom/Icon/Icon.types.d.ts +8 -0
  15. package/build/components/Atom/Icon/index.d.ts +1 -1
  16. package/build/components/Atom/Input/Input.d.ts +21 -0
  17. package/build/components/Atom/Input/Input.stories.d.ts +8 -0
  18. package/build/components/Atom/Input/Input.test.d.ts +1 -0
  19. package/build/components/Atom/Input/Input.types.d.ts +6 -0
  20. package/build/components/Atom/Input/index.d.ts +3 -0
  21. package/build/components/Atom/Typography/Heading.stories.d.ts +5 -0
  22. package/build/components/Atom/Typography/Heading.test.d.ts +1 -0
  23. package/build/components/Atom/Typography/Text.stories.d.ts +5 -0
  24. package/build/components/Atom/Typography/Text.test.d.ts +1 -0
  25. package/build/components/Atom/Typography/Typography.d.ts +4 -0
  26. package/build/components/Atom/Typography/Typography.types.d.ts +20 -0
  27. package/build/components/Atom/Typography/index.d.ts +2 -0
  28. package/build/components/Molecule/Message/Message.d.ts +13 -0
  29. package/build/components/Molecule/Message/Message.stories.d.ts +4 -0
  30. package/build/components/Molecule/Message/Message.test.d.ts +1 -0
  31. package/build/components/Molecule/Message/Message.types.d.ts +6 -0
  32. package/build/components/Molecule/Message/MessageManager.d.ts +20 -0
  33. package/build/components/Molecule/Message/index.d.ts +3 -0
  34. package/build/components/Molecule/Table/Table.d.ts +3 -0
  35. package/build/components/Molecule/Table/Table.stories.d.ts +5 -0
  36. package/build/components/Molecule/Table/Table.test.d.ts +1 -0
  37. package/build/components/Molecule/Table/Table.types.d.ts +23 -0
  38. package/build/components/Molecule/Table/index.d.ts +2 -0
  39. package/build/components/Molecule/Tooltip/Tooltip.d.ts +13 -0
  40. package/build/components/Molecule/Tooltip/Tooltip.stories.d.ts +5 -0
  41. package/build/components/Molecule/Tooltip/Tooltip.test.d.ts +1 -0
  42. package/build/components/Molecule/Tooltip/index.d.ts +2 -0
  43. package/build/index.d.ts +8 -0
  44. package/build/index.esm.js +29 -0
  45. package/build/index.esm.js.map +1 -0
  46. package/build/index.js +28 -1
  47. package/build/index.js.map +1 -1
  48. package/build/tsconfig.prod.tsbuildinfo +1 -1
  49. package/build/tsconfig.tsbuildinfo +1 -1
  50. package/package.json +1 -2
  51. package/build/components/Atom/Button/Button.js +0 -2
  52. package/build/components/Atom/Button/Button.js.map +0 -1
@@ -0,0 +1,29 @@
1
+ import*as e from"react";import r,{forwardRef as t,memo as n,useState as o,useEffect as i,useMemo as l,version as a,isValidElement as c,useRef as s,useLayoutEffect as u,useImperativeHandle as p}from"react";import{createRoot as f}from"react-dom/client";import y,{createPortal as v}from"react-dom";const h=({loading:e,children:t,iconLeft:n,iconRight:o})=>r.createElement("div",{className:"flex justify-center items-center "+(e?"invisible":"visible")},n&&r.createElement("span",{className:"mr-2"},n),t,o&&r.createElement("span",{className:"ml-2"},o)),g=r.forwardRef((({iconLeft:e,iconRight:t,variant:n,size:o,loading:i,disabled:l,dataTestId:a,fluid:c,...s},u)=>{const p=c?"w-full justify-center":"";return r.createElement("button",{...s,ref:u,disabled:i||l,"data-test-id":a,className:`inline-flex items-center justify-center font-medium rounded focus:outline-none transition ease-in-out duration-150 ${{primary:"bg-blue-600 text-white border border-transparent hover:bg-blue-700",secondary:"bg-gray-800 text-white border border-transparent hover:bg-gray-700",tertiary:"bg-white text-gray-800 border border-gray-300 hover:bg-gray-100",danger:"bg-red-600 text-white border border-transparent hover:bg-red-700",link:"bg-transparent text-blue-600 hover:text-blue-800",critical:"bg-red-800 text-white border border-transparent hover:bg-red-900"}[n]} ${{small:"text-sm px-2.5 py-1.5",medium:"text-base px-4 py-2",large:"text-lg px-6 py-3"}[o]} ${p} ${l&&"opacity-50 cursor-not-allowed"}`},i&&r.createElement("div",{className:"absolute inset-0 flex items-center justify-center"},"Loading..."),r.createElement(h,{loading:i,iconLeft:e,iconRight:t},s.children))}));function d(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}g.displayName="Button";var m,O={exports:{}},b={exports:{}},w={};var x,j,E,k,P,z,S,L,C,T,N,M,I,B,W={};
2
+ /** @license React v16.13.1
3
+ * react-is.development.js
4
+ *
5
+ * Copyright (c) Facebook, Inc. and its affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */function A(){return j||(j=1,"production"===process.env.NODE_ENV?b.exports=function(){if(m)return w;m=1;var e="function"==typeof Symbol&&Symbol.for,r=e?Symbol.for("react.element"):60103,t=e?Symbol.for("react.portal"):60106,n=e?Symbol.for("react.fragment"):60107,o=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,l=e?Symbol.for("react.provider"):60109,a=e?Symbol.for("react.context"):60110,c=e?Symbol.for("react.async_mode"):60111,s=e?Symbol.for("react.concurrent_mode"):60111,u=e?Symbol.for("react.forward_ref"):60112,p=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,y=e?Symbol.for("react.memo"):60115,v=e?Symbol.for("react.lazy"):60116,h=e?Symbol.for("react.block"):60121,g=e?Symbol.for("react.fundamental"):60117,d=e?Symbol.for("react.responder"):60118,O=e?Symbol.for("react.scope"):60119;function b(e){if("object"==typeof e&&null!==e){var f=e.$$typeof;switch(f){case r:switch(e=e.type){case c:case s:case n:case i:case o:case p:return e;default:switch(e=e&&e.$$typeof){case a:case u:case v:case y:case l:return e;default:return f}}case t:return f}}}function x(e){return b(e)===s}return w.AsyncMode=c,w.ConcurrentMode=s,w.ContextConsumer=a,w.ContextProvider=l,w.Element=r,w.ForwardRef=u,w.Fragment=n,w.Lazy=v,w.Memo=y,w.Portal=t,w.Profiler=i,w.StrictMode=o,w.Suspense=p,w.isAsyncMode=function(e){return x(e)||b(e)===c},w.isConcurrentMode=x,w.isContextConsumer=function(e){return b(e)===a},w.isContextProvider=function(e){return b(e)===l},w.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},w.isForwardRef=function(e){return b(e)===u},w.isFragment=function(e){return b(e)===n},w.isLazy=function(e){return b(e)===v},w.isMemo=function(e){return b(e)===y},w.isPortal=function(e){return b(e)===t},w.isProfiler=function(e){return b(e)===i},w.isStrictMode=function(e){return b(e)===o},w.isSuspense=function(e){return b(e)===p},w.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===s||e===i||e===o||e===p||e===f||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===y||e.$$typeof===l||e.$$typeof===a||e.$$typeof===u||e.$$typeof===g||e.$$typeof===d||e.$$typeof===O||e.$$typeof===h)},w.typeOf=b,w}():b.exports=(x||(x=1,"production"!==process.env.NODE_ENV&&function(){var e="function"==typeof Symbol&&Symbol.for,r=e?Symbol.for("react.element"):60103,t=e?Symbol.for("react.portal"):60106,n=e?Symbol.for("react.fragment"):60107,o=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,l=e?Symbol.for("react.provider"):60109,a=e?Symbol.for("react.context"):60110,c=e?Symbol.for("react.async_mode"):60111,s=e?Symbol.for("react.concurrent_mode"):60111,u=e?Symbol.for("react.forward_ref"):60112,p=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,y=e?Symbol.for("react.memo"):60115,v=e?Symbol.for("react.lazy"):60116,h=e?Symbol.for("react.block"):60121,g=e?Symbol.for("react.fundamental"):60117,d=e?Symbol.for("react.responder"):60118,m=e?Symbol.for("react.scope"):60119;function O(e){if("object"==typeof e&&null!==e){var f=e.$$typeof;switch(f){case r:var h=e.type;switch(h){case c:case s:case n:case i:case o:case p:return h;default:var g=h&&h.$$typeof;switch(g){case a:case u:case v:case y:case l:return g;default:return f}}case t:return f}}}var b=c,w=s,x=a,j=l,E=r,k=u,P=n,z=v,S=y,L=t,C=i,T=o,N=p,M=!1;function I(e){return O(e)===s}W.AsyncMode=b,W.ConcurrentMode=w,W.ContextConsumer=x,W.ContextProvider=j,W.Element=E,W.ForwardRef=k,W.Fragment=P,W.Lazy=z,W.Memo=S,W.Portal=L,W.Profiler=C,W.StrictMode=T,W.Suspense=N,W.isAsyncMode=function(e){return M||(M=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),I(e)||O(e)===c},W.isConcurrentMode=I,W.isContextConsumer=function(e){return O(e)===a},W.isContextProvider=function(e){return O(e)===l},W.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},W.isForwardRef=function(e){return O(e)===u},W.isFragment=function(e){return O(e)===n},W.isLazy=function(e){return O(e)===v},W.isMemo=function(e){return O(e)===y},W.isPortal=function(e){return O(e)===t},W.isProfiler=function(e){return O(e)===i},W.isStrictMode=function(e){return O(e)===o},W.isSuspense=function(e){return O(e)===p},W.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===s||e===i||e===o||e===p||e===f||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===y||e.$$typeof===l||e.$$typeof===a||e.$$typeof===u||e.$$typeof===g||e.$$typeof===d||e.$$typeof===m||e.$$typeof===h)},W.typeOf=O}()),W)),b.exports}
10
+ /*
11
+ object-assign
12
+ (c) Sindre Sorhus
13
+ @license MIT
14
+ */function H(){if(k)return E;k=1;var e=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,t=Object.prototype.propertyIsEnumerable;return E=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var r={},t=0;t<10;t++)r["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(r).map((function(e){return r[e]})).join(""))return!1;var n={};return"abcdefghijklmnopqrst".split("").forEach((function(e){n[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},n)).join("")}catch(e){return!1}}()?Object.assign:function(n,o){for(var i,l,a=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(n),c=1;c<arguments.length;c++){for(var s in i=Object(arguments[c]))r.call(i,s)&&(a[s]=i[s]);if(e){l=e(i);for(var u=0;u<l.length;u++)t.call(i,l[u])&&(a[l[u]]=i[l[u]])}}return a},E}function _(){if(z)return P;z=1;return P="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"}function V(){return L?S:(L=1,S=Function.call.bind(Object.prototype.hasOwnProperty))}if("production"!==process.env.NODE_ENV){var R=A();O.exports=function(){if(M)return N;M=1;var e=A(),r=H(),t=_(),n=V(),o=function(){if(T)return C;T=1;var e=function(){};if("production"!==process.env.NODE_ENV){var r=_(),t={},n=V();e=function(e){var r="Warning: "+e;"undefined"!=typeof console&&console.error(r);try{throw new Error(r)}catch(e){}}}function o(o,i,l,a,c){if("production"!==process.env.NODE_ENV)for(var s in o)if(n(o,s)){var u;try{if("function"!=typeof o[s]){var p=Error((a||"React class")+": "+l+" type `"+s+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof o[s]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw p.name="Invariant Violation",p}u=o[s](i,s,a,l,null,r)}catch(e){u=e}if(!u||u instanceof Error||e((a||"React class")+": type specification of "+l+" `"+s+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+typeof u+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),u instanceof Error&&!(u.message in t)){t[u.message]=!0;var f=c?c():"";e("Failed "+l+" type: "+u.message+(null!=f?f:""))}}}return o.resetWarningCache=function(){"production"!==process.env.NODE_ENV&&(t={})},C=o}(),i=function(){};function l(){return null}return"production"!==process.env.NODE_ENV&&(i=function(e){var r="Warning: "+e;"undefined"!=typeof console&&console.error(r);try{throw new Error(r)}catch(e){}}),N=function(a,c){var s="function"==typeof Symbol&&Symbol.iterator,u="@@iterator",p="<<anonymous>>",f={array:g("array"),bigint:g("bigint"),bool:g("boolean"),func:g("function"),number:g("number"),object:g("object"),string:g("string"),symbol:g("symbol"),any:h(l),arrayOf:function(e){return h((function(r,n,o,i,l){if("function"!=typeof e)return new v("Property `"+l+"` of component `"+o+"` has invalid PropType notation inside arrayOf.");var a=r[n];if(!Array.isArray(a))return new v("Invalid "+i+" `"+l+"` of type `"+O(a)+"` supplied to `"+o+"`, expected an array.");for(var c=0;c<a.length;c++){var s=e(a,c,o,i,l+"["+c+"]",t);if(s instanceof Error)return s}return null}))},element:h((function(e,r,t,n,o){var i=e[r];return a(i)?null:new v("Invalid "+n+" `"+o+"` of type `"+O(i)+"` supplied to `"+t+"`, expected a single ReactElement.")})),elementType:h((function(r,t,n,o,i){var l=r[t];return e.isValidElementType(l)?null:new v("Invalid "+o+" `"+i+"` of type `"+O(l)+"` supplied to `"+n+"`, expected a single ReactElement type.")})),instanceOf:function(e){return h((function(r,t,n,o,i){if(!(r[t]instanceof e)){var l=e.name||p;return new v("Invalid "+o+" `"+i+"` of type `"+((a=r[t]).constructor&&a.constructor.name?a.constructor.name:p)+"` supplied to `"+n+"`, expected instance of `"+l+"`.")}var a;return null}))},node:h((function(e,r,t,n,o){return m(e[r])?null:new v("Invalid "+n+" `"+o+"` supplied to `"+t+"`, expected a ReactNode.")})),objectOf:function(e){return h((function(r,o,i,l,a){if("function"!=typeof e)return new v("Property `"+a+"` of component `"+i+"` has invalid PropType notation inside objectOf.");var c=r[o],s=O(c);if("object"!==s)return new v("Invalid "+l+" `"+a+"` of type `"+s+"` supplied to `"+i+"`, expected an object.");for(var u in c)if(n(c,u)){var p=e(c,u,i,l,a+"."+u,t);if(p instanceof Error)return p}return null}))},oneOf:function(e){return Array.isArray(e)?h((function(r,t,n,o,i){for(var l=r[t],a=0;a<e.length;a++)if(y(l,e[a]))return null;var c=JSON.stringify(e,(function(e,r){return"symbol"===b(r)?String(r):r}));return new v("Invalid "+o+" `"+i+"` of value `"+String(l)+"` supplied to `"+n+"`, expected one of "+c+".")})):("production"!==process.env.NODE_ENV&&i(arguments.length>1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),l)},oneOfType:function(e){if(!Array.isArray(e))return"production"!==process.env.NODE_ENV&&i("Invalid argument supplied to oneOfType, expected an instance of array."),l;for(var r=0;r<e.length;r++){var o=e[r];if("function"!=typeof o)return i("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+w(o)+" at index "+r+"."),l}return h((function(r,o,i,l,a){for(var c=[],s=0;s<e.length;s++){var u=(0,e[s])(r,o,i,l,a,t);if(null==u)return null;u.data&&n(u.data,"expectedType")&&c.push(u.data.expectedType)}return new v("Invalid "+l+" `"+a+"` supplied to `"+i+"`"+(c.length>0?", expected one of type ["+c.join(", ")+"]":"")+".")}))},shape:function(e){return h((function(r,n,o,i,l){var a=r[n],c=O(a);if("object"!==c)return new v("Invalid "+i+" `"+l+"` of type `"+c+"` supplied to `"+o+"`, expected `object`.");for(var s in e){var u=e[s];if("function"!=typeof u)return d(o,i,l,s,b(u));var p=u(a,s,o,i,l+"."+s,t);if(p)return p}return null}))},exact:function(e){return h((function(o,i,l,a,c){var s=o[i],u=O(s);if("object"!==u)return new v("Invalid "+a+" `"+c+"` of type `"+u+"` supplied to `"+l+"`, expected `object`.");var p=r({},o[i],e);for(var f in p){var y=e[f];if(n(e,f)&&"function"!=typeof y)return d(l,a,c,f,b(y));if(!y)return new v("Invalid "+a+" `"+c+"` key `"+f+"` supplied to `"+l+"`.\nBad object: "+JSON.stringify(o[i],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var h=y(s,f,l,a,c+"."+f,t);if(h)return h}return null}))}};function y(e,r){return e===r?0!==e||1/e==1/r:e!=e&&r!=r}function v(e,r){this.message=e,this.data=r&&"object"==typeof r?r:{},this.stack=""}function h(e){if("production"!==process.env.NODE_ENV)var r={},n=0;function o(o,l,a,s,u,f,y){if(s=s||p,f=f||a,y!==t){if(c){var h=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw h.name="Invariant Violation",h}if("production"!==process.env.NODE_ENV&&"undefined"!=typeof console){var g=s+":"+a;!r[g]&&n<3&&(i("You are manually calling a React.PropTypes validation function for the `"+f+"` prop on `"+s+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),r[g]=!0,n++)}}return null==l[a]?o?null===l[a]?new v("The "+u+" `"+f+"` is marked as required in `"+s+"`, but its value is `null`."):new v("The "+u+" `"+f+"` is marked as required in `"+s+"`, but its value is `undefined`."):null:e(l,a,s,u,f)}var l=o.bind(null,!1);return l.isRequired=o.bind(null,!0),l}function g(e){return h((function(r,t,n,o,i,l){var a=r[t];return O(a)!==e?new v("Invalid "+o+" `"+i+"` of type `"+b(a)+"` supplied to `"+n+"`, expected `"+e+"`.",{expectedType:e}):null}))}function d(e,r,t,n,o){return new v((e||"React class")+": "+r+" type `"+t+"."+n+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+o+"`.")}function m(e){switch(typeof e){case"number":case"string":case"undefined":return!0;case"boolean":return!e;case"object":if(Array.isArray(e))return e.every(m);if(null===e||a(e))return!0;var r=function(e){var r=e&&(s&&e[s]||e[u]);if("function"==typeof r)return r}(e);if(!r)return!1;var t,n=r.call(e);if(r!==e.entries){for(;!(t=n.next()).done;)if(!m(t.value))return!1}else for(;!(t=n.next()).done;){var o=t.value;if(o&&!m(o[1]))return!1}return!0;default:return!1}}function O(e){var r=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,r){return"symbol"===e||!!r&&("Symbol"===r["@@toStringTag"]||"function"==typeof Symbol&&r instanceof Symbol)}(r,e)?"symbol":r}function b(e){if(null==e)return""+e;var r=O(e);if("object"===r){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return r}function w(e){var r=b(e);switch(r){case"array":case"object":return"an "+r;case"boolean":case"date":case"regexp":return"a "+r;default:return r}}return v.prototype=Error.prototype,f.checkPropTypes=o,f.resetWarningCache=o.resetWarningCache,f.PropTypes=f,f},N}()(R.isElement,!0)}else O.exports=function(){if(B)return I;B=1;var e=_();function r(){}function t(){}return t.resetWarningCache=r,I=function(){function n(r,t,n,o,i,l){if(l!==e){var a=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw a.name="Invariant Violation",a}}function o(){return n}n.isRequired=n;var i={array:n,bigint:n,bool:n,func:n,number:n,object:n,string:n,symbol:n,any:n,arrayOf:o,element:n,elementType:n,instanceOf:o,node:n,objectOf:o,oneOf:o,oneOfType:o,shape:o,exact:o,checkPropTypes:t,resetWarningCache:r};return i.PropTypes=i,i}}()();var D=d(O.exports);function $(){return $=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$.apply(this,arguments)}function F(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var U=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=F(e,["color","size"]);return r.createElement("svg",$({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"22 12 18 12 15 21 9 3 6 12 2 12"}))}));U.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},U.displayName="Activity";var q=U;function Z(){return Z=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Z.apply(this,arguments)}function X(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var G=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=X(e,["color","size"]);return r.createElement("svg",Z({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}),r.createElement("polygon",{points:"12 15 17 21 7 21 12 15"}))}));G.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},G.displayName="Airplay";var Y=G;function J(){return J=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},J.apply(this,arguments)}function K(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Q=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=K(e,["color","size"]);return r.createElement("svg",J({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),r.createElement("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"}))}));Q.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Q.displayName="AlertCircle";var ee=Q;function re(){return re=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},re.apply(this,arguments)}function te(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ne=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=te(e,["color","size"]);return r.createElement("svg",re({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),r.createElement("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"}))}));ne.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ne.displayName="AlertOctagon";var oe=ne;function ie(){return ie=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ie.apply(this,arguments)}function le(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ae=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=le(e,["color","size"]);return r.createElement("svg",ie({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),r.createElement("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),r.createElement("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"}))}));ae.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ae.displayName="AlertTriangle";var ce=ae;function se(){return se=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},se.apply(this,arguments)}function ue(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var pe=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ue(e,["color","size"]);return r.createElement("svg",se({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"18",y1:"10",x2:"6",y2:"10"}),r.createElement("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),r.createElement("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),r.createElement("line",{x1:"18",y1:"18",x2:"6",y2:"18"}))}));pe.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},pe.displayName="AlignCenter";var fe=pe;function ye(){return ye=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ye.apply(this,arguments)}function ve(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var he=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ve(e,["color","size"]);return r.createElement("svg",ye({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"21",y1:"10",x2:"3",y2:"10"}),r.createElement("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),r.createElement("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),r.createElement("line",{x1:"21",y1:"18",x2:"3",y2:"18"}))}));he.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},he.displayName="AlignJustify";var ge=he;function de(){return de=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},de.apply(this,arguments)}function me(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Oe=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=me(e,["color","size"]);return r.createElement("svg",de({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"17",y1:"10",x2:"3",y2:"10"}),r.createElement("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),r.createElement("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),r.createElement("line",{x1:"17",y1:"18",x2:"3",y2:"18"}))}));Oe.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Oe.displayName="AlignLeft";var be=Oe;function we(){return we=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},we.apply(this,arguments)}function xe(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var je=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xe(e,["color","size"]);return r.createElement("svg",we({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"21",y1:"10",x2:"7",y2:"10"}),r.createElement("line",{x1:"21",y1:"6",x2:"3",y2:"6"}),r.createElement("line",{x1:"21",y1:"14",x2:"3",y2:"14"}),r.createElement("line",{x1:"21",y1:"18",x2:"7",y2:"18"}))}));je.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},je.displayName="AlignRight";var Ee=je;function ke(){return ke=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ke.apply(this,arguments)}function Pe(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ze=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Pe(e,["color","size"]);return r.createElement("svg",ke({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"5",r:"3"}),r.createElement("line",{x1:"12",y1:"22",x2:"12",y2:"8"}),r.createElement("path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}))}));ze.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ze.displayName="Anchor";var Se=ze;function Le(){return Le=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Le.apply(this,arguments)}function Ce(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Te=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ce(e,["color","size"]);return r.createElement("svg",Le({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"14.31",y1:"8",x2:"20.05",y2:"17.94"}),r.createElement("line",{x1:"9.69",y1:"8",x2:"21.17",y2:"8"}),r.createElement("line",{x1:"7.38",y1:"12",x2:"13.12",y2:"2.06"}),r.createElement("line",{x1:"9.69",y1:"16",x2:"3.95",y2:"6.06"}),r.createElement("line",{x1:"14.31",y1:"16",x2:"2.83",y2:"16"}),r.createElement("line",{x1:"16.62",y1:"12",x2:"10.88",y2:"21.94"}))}));Te.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Te.displayName="Aperture";var Ne=Te;function Me(){return Me=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Me.apply(this,arguments)}function Ie(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Be=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ie(e,["color","size"]);return r.createElement("svg",Me({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"21 8 21 21 3 21 3 8"}),r.createElement("rect",{x:"1",y:"3",width:"22",height:"5"}),r.createElement("line",{x1:"10",y1:"12",x2:"14",y2:"12"}))}));Be.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Be.displayName="Archive";var We=Be;function Ae(){return Ae=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ae.apply(this,arguments)}function He(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _e=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=He(e,["color","size"]);return r.createElement("svg",Ae({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polyline",{points:"8 12 12 16 16 12"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"16"}))}));_e.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_e.displayName="ArrowDownCircle";var Ve=_e;function Re(){return Re=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Re.apply(this,arguments)}function De(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $e=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=De(e,["color","size"]);return r.createElement("svg",Re({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"17",y1:"7",x2:"7",y2:"17"}),r.createElement("polyline",{points:"17 17 7 17 7 7"}))}));$e.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$e.displayName="ArrowDownLeft";var Fe=$e;function Ue(){return Ue=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ue.apply(this,arguments)}function qe(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ze=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qe(e,["color","size"]);return r.createElement("svg",Ue({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"7",y1:"7",x2:"17",y2:"17"}),r.createElement("polyline",{points:"17 7 17 17 7 17"}))}));Ze.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ze.displayName="ArrowDownRight";var Xe=Ze;function Ge(){return Ge=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ge.apply(this,arguments)}function Ye(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Je=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ye(e,["color","size"]);return r.createElement("svg",Ge({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),r.createElement("polyline",{points:"19 12 12 19 5 12"}))}));Je.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Je.displayName="ArrowDown";var Ke=Je;function Qe(){return Qe=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qe.apply(this,arguments)}function er(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var rr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=er(e,["color","size"]);return r.createElement("svg",Qe({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polyline",{points:"12 8 8 12 12 16"}),r.createElement("line",{x1:"16",y1:"12",x2:"8",y2:"12"}))}));rr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},rr.displayName="ArrowLeftCircle";var tr=rr;function nr(){return nr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nr.apply(this,arguments)}function or(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ir=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=or(e,["color","size"]);return r.createElement("svg",nr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"19",y1:"12",x2:"5",y2:"12"}),r.createElement("polyline",{points:"12 19 5 12 12 5"}))}));ir.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ir.displayName="ArrowLeft";var lr=ir;function ar(){return ar=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ar.apply(this,arguments)}function cr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var sr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=cr(e,["color","size"]);return r.createElement("svg",ar({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polyline",{points:"12 16 16 12 12 8"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));sr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},sr.displayName="ArrowRightCircle";var ur=sr;function pr(){return pr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pr.apply(this,arguments)}function fr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var yr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=fr(e,["color","size"]);return r.createElement("svg",pr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),r.createElement("polyline",{points:"12 5 19 12 12 19"}))}));yr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},yr.displayName="ArrowRight";var vr=yr;function hr(){return hr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},hr.apply(this,arguments)}function gr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var dr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=gr(e,["color","size"]);return r.createElement("svg",hr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polyline",{points:"16 12 12 8 8 12"}),r.createElement("line",{x1:"12",y1:"16",x2:"12",y2:"8"}))}));dr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},dr.displayName="ArrowUpCircle";var mr=dr;function Or(){return Or=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Or.apply(this,arguments)}function br(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var wr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=br(e,["color","size"]);return r.createElement("svg",Or({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"17",y1:"17",x2:"7",y2:"7"}),r.createElement("polyline",{points:"7 17 7 7 17 7"}))}));wr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},wr.displayName="ArrowUpLeft";var xr=wr;function jr(){return jr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jr.apply(this,arguments)}function Er(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var kr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Er(e,["color","size"]);return r.createElement("svg",jr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"7",y1:"17",x2:"17",y2:"7"}),r.createElement("polyline",{points:"7 7 17 7 17 17"}))}));kr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},kr.displayName="ArrowUpRight";var Pr=kr;function zr(){return zr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zr.apply(this,arguments)}function Sr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Lr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Sr(e,["color","size"]);return r.createElement("svg",zr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"19",x2:"12",y2:"5"}),r.createElement("polyline",{points:"5 12 12 5 19 12"}))}));Lr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Lr.displayName="ArrowUp";var Cr=Lr;function Tr(){return Tr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tr.apply(this,arguments)}function Nr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Mr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Nr(e,["color","size"]);return r.createElement("svg",Tr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"4"}),r.createElement("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"}))}));Mr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Mr.displayName="AtSign";var Ir=Mr;function Br(){return Br=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Br.apply(this,arguments)}function Wr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ar=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Wr(e,["color","size"]);return r.createElement("svg",Br({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"8",r:"7"}),r.createElement("polyline",{points:"8.21 13.89 7 23 12 20 17 23 15.79 13.88"}))}));Ar.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ar.displayName="Award";var Hr=Ar;function _r(){return _r=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_r.apply(this,arguments)}function Vr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Rr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Vr(e,["color","size"]);return r.createElement("svg",_r({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"18",y1:"20",x2:"18",y2:"10"}),r.createElement("line",{x1:"12",y1:"20",x2:"12",y2:"4"}),r.createElement("line",{x1:"6",y1:"20",x2:"6",y2:"14"}))}));Rr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Rr.displayName="BarChart2";var Dr=Rr;function $r(){return $r=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$r.apply(this,arguments)}function Fr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ur=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Fr(e,["color","size"]);return r.createElement("svg",$r({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"20",x2:"12",y2:"10"}),r.createElement("line",{x1:"18",y1:"20",x2:"18",y2:"4"}),r.createElement("line",{x1:"6",y1:"20",x2:"6",y2:"16"}))}));Ur.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ur.displayName="BarChart";var qr=Ur;function Zr(){return Zr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zr.apply(this,arguments)}function Xr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Gr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Xr(e,["color","size"]);return r.createElement("svg",Zr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"}),r.createElement("line",{x1:"23",y1:"13",x2:"23",y2:"11"}),r.createElement("polyline",{points:"11 6 7 12 13 12 9 18"}))}));Gr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Gr.displayName="BatteryCharging";var Yr=Gr;function Jr(){return Jr=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jr.apply(this,arguments)}function Kr(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Qr=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Kr(e,["color","size"]);return r.createElement("svg",Jr({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"1",y:"6",width:"18",height:"12",rx:"2",ry:"2"}),r.createElement("line",{x1:"23",y1:"13",x2:"23",y2:"11"}))}));Qr.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Qr.displayName="Battery";var et=Qr;function rt(){return rt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},rt.apply(this,arguments)}function tt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var nt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=tt(e,["color","size"]);return r.createElement("svg",rt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}),r.createElement("path",{d:"M18.63 13A17.89 17.89 0 0 1 18 8"}),r.createElement("path",{d:"M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"}),r.createElement("path",{d:"M18 8a6 6 0 0 0-9.33-5"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));nt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},nt.displayName="BellOff";var ot=nt;function it(){return it=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},it.apply(this,arguments)}function lt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var at=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=lt(e,["color","size"]);return r.createElement("svg",it({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),r.createElement("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}))}));at.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},at.displayName="Bell";var ct=at;function st(){return st=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},st.apply(this,arguments)}function ut(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var pt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ut(e,["color","size"]);return r.createElement("svg",st({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"}))}));pt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},pt.displayName="Bluetooth";var ft=pt;function yt(){return yt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yt.apply(this,arguments)}function vt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ht=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=vt(e,["color","size"]);return r.createElement("svg",yt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}),r.createElement("path",{d:"M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"}))}));ht.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ht.displayName="Bold";var gt=ht;function dt(){return dt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},dt.apply(this,arguments)}function mt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ot=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=mt(e,["color","size"]);return r.createElement("svg",dt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"}),r.createElement("path",{d:"M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"}))}));Ot.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ot.displayName="BookOpen";var bt=Ot;function wt(){return wt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wt.apply(this,arguments)}function xt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var jt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xt(e,["color","size"]);return r.createElement("svg",wt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 19.5A2.5 2.5 0 0 1 6.5 17H20"}),r.createElement("path",{d:"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"}))}));jt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},jt.displayName="Book";var Et=jt;function kt(){return kt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kt.apply(this,arguments)}function Pt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var zt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Pt(e,["color","size"]);return r.createElement("svg",kt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}))}));zt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},zt.displayName="Bookmark";var St=zt;function Lt(){return Lt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Lt.apply(this,arguments)}function Ct(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Tt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ct(e,["color","size"]);return r.createElement("svg",Lt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),r.createElement("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),r.createElement("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"}))}));Tt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Tt.displayName="Box";var Nt=Tt;function Mt(){return Mt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mt.apply(this,arguments)}function It(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Bt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=It(e,["color","size"]);return r.createElement("svg",Mt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}),r.createElement("path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}))}));Bt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Bt.displayName="Briefcase";var Wt=Bt;function At(){return At=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},At.apply(this,arguments)}function Ht(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _t=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ht(e,["color","size"]);return r.createElement("svg",At({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"4",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"16",y1:"2",x2:"16",y2:"6"}),r.createElement("line",{x1:"8",y1:"2",x2:"8",y2:"6"}),r.createElement("line",{x1:"3",y1:"10",x2:"21",y2:"10"}))}));_t.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_t.displayName="Calendar";var Vt=_t;function Rt(){return Rt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Rt.apply(this,arguments)}function Dt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $t=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Dt(e,["color","size"]);return r.createElement("svg",Rt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),r.createElement("path",{d:"M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"}))}));$t.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$t.displayName="CameraOff";var Ft=$t;function Ut(){return Ut=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ut.apply(this,arguments)}function qt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Zt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qt(e,["color","size"]);return r.createElement("svg",Ut({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"}),r.createElement("circle",{cx:"12",cy:"13",r:"4"}))}));Zt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Zt.displayName="Camera";var Xt=Zt;function Gt(){return Gt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Gt.apply(this,arguments)}function Yt(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Jt=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Yt(e,["color","size"]);return r.createElement("svg",Gt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}),r.createElement("line",{x1:"2",y1:"20",x2:"2.01",y2:"20"}))}));Jt.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Jt.displayName="Cast";var Kt=Jt;function Qt(){return Qt=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qt.apply(this,arguments)}function en(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var rn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=en(e,["color","size"]);return r.createElement("svg",Qt({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),r.createElement("polyline",{points:"22 4 12 14.01 9 11.01"}))}));rn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},rn.displayName="CheckCircle";var tn=rn;function nn(){return nn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nn.apply(this,arguments)}function on(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ln=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=on(e,["color","size"]);return r.createElement("svg",nn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"9 11 12 14 22 4"}),r.createElement("path",{d:"M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"}))}));ln.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ln.displayName="CheckSquare";var an=ln;function cn(){return cn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cn.apply(this,arguments)}function sn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var un=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sn(e,["color","size"]);return r.createElement("svg",cn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"20 6 9 17 4 12"}))}));un.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},un.displayName="Check";var pn=un;function fn(){return fn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fn.apply(this,arguments)}function yn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=yn(e,["color","size"]);return r.createElement("svg",fn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"6 9 12 15 18 9"}))}));function hn(){return hn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},hn.apply(this,arguments)}function gn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}vn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vn.displayName="ChevronDown";var dn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=gn(e,["color","size"]);return r.createElement("svg",hn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"15 18 9 12 15 6"}))}));function mn(){return mn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},mn.apply(this,arguments)}function On(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}dn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},dn.displayName="ChevronLeft";var bn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=On(e,["color","size"]);return r.createElement("svg",mn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"9 18 15 12 9 6"}))}));function wn(){return wn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wn.apply(this,arguments)}function xn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}bn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},bn.displayName="ChevronRight";var jn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xn(e,["color","size"]);return r.createElement("svg",wn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"18 15 12 9 6 15"}))}));function En(){return En=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},En.apply(this,arguments)}function kn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}jn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},jn.displayName="ChevronUp";var Pn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=kn(e,["color","size"]);return r.createElement("svg",En({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"7 13 12 18 17 13"}),r.createElement("polyline",{points:"7 6 12 11 17 6"}))}));Pn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pn.displayName="ChevronsDown";var zn=Pn;function Sn(){return Sn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sn.apply(this,arguments)}function Ln(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ln(e,["color","size"]);return r.createElement("svg",Sn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"11 17 6 12 11 7"}),r.createElement("polyline",{points:"18 17 13 12 18 7"}))}));Cn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cn.displayName="ChevronsLeft";var Tn=Cn;function Nn(){return Nn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nn.apply(this,arguments)}function Mn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var In=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mn(e,["color","size"]);return r.createElement("svg",Nn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"13 17 18 12 13 7"}),r.createElement("polyline",{points:"6 17 11 12 6 7"}))}));In.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},In.displayName="ChevronsRight";var Bn=In;function Wn(){return Wn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wn.apply(this,arguments)}function An(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=An(e,["color","size"]);return r.createElement("svg",Wn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"17 11 12 6 7 11"}),r.createElement("polyline",{points:"17 18 12 13 7 18"}))}));Hn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hn.displayName="ChevronsUp";var _n=Hn;function Vn(){return Vn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vn.apply(this,arguments)}function Rn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Dn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rn(e,["color","size"]);return r.createElement("svg",Vn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("circle",{cx:"12",cy:"12",r:"4"}),r.createElement("line",{x1:"21.17",y1:"8",x2:"12",y2:"8"}),r.createElement("line",{x1:"3.95",y1:"6.06",x2:"8.54",y2:"14"}),r.createElement("line",{x1:"10.88",y1:"21.94",x2:"15.46",y2:"14"}))}));Dn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Dn.displayName="Chrome";var $n=Dn;function Fn(){return Fn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Fn.apply(this,arguments)}function Un(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Un(e,["color","size"]);return r.createElement("svg",Fn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}))}));qn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qn.displayName="Circle";var Zn=qn;function Xn(){return Xn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xn.apply(this,arguments)}function Gn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Yn=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gn(e,["color","size"]);return r.createElement("svg",Xn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}),r.createElement("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"}))}));Yn.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Yn.displayName="Clipboard";var Jn=Yn;function Kn(){return Kn=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kn.apply(this,arguments)}function Qn(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var eo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qn(e,["color","size"]);return r.createElement("svg",Kn({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polyline",{points:"12 6 12 12 16 14"}))}));eo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},eo.displayName="Clock";var ro=eo;function to(){return to=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},to.apply(this,arguments)}function no(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var oo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=no(e,["color","size"]);return r.createElement("svg",to({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"8",y1:"19",x2:"8",y2:"21"}),r.createElement("line",{x1:"8",y1:"13",x2:"8",y2:"15"}),r.createElement("line",{x1:"16",y1:"19",x2:"16",y2:"21"}),r.createElement("line",{x1:"16",y1:"13",x2:"16",y2:"15"}),r.createElement("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),r.createElement("line",{x1:"12",y1:"15",x2:"12",y2:"17"}),r.createElement("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"}))}));oo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},oo.displayName="CloudDrizzle";var io=oo;function lo(){return lo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},lo.apply(this,arguments)}function ao(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var co=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ao(e,["color","size"]);return r.createElement("svg",lo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"}),r.createElement("polyline",{points:"13 11 9 17 15 17 11 23"}))}));co.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},co.displayName="CloudLightning";var so=co;function uo(){return uo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},uo.apply(this,arguments)}function po(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var fo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=po(e,["color","size"]);return r.createElement("svg",uo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));fo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},fo.displayName="CloudOff";var yo=fo;function vo(){return vo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},vo.apply(this,arguments)}function ho(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var go=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ho(e,["color","size"]);return r.createElement("svg",vo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"16",y1:"13",x2:"16",y2:"21"}),r.createElement("line",{x1:"8",y1:"13",x2:"8",y2:"21"}),r.createElement("line",{x1:"12",y1:"15",x2:"12",y2:"23"}),r.createElement("path",{d:"M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"}))}));go.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},go.displayName="CloudRain";var mo=go;function Oo(){return Oo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Oo.apply(this,arguments)}function bo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var wo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=bo(e,["color","size"]);return r.createElement("svg",Oo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"}),r.createElement("line",{x1:"8",y1:"16",x2:"8.01",y2:"16"}),r.createElement("line",{x1:"8",y1:"20",x2:"8.01",y2:"20"}),r.createElement("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}),r.createElement("line",{x1:"12",y1:"22",x2:"12.01",y2:"22"}),r.createElement("line",{x1:"16",y1:"16",x2:"16.01",y2:"16"}),r.createElement("line",{x1:"16",y1:"20",x2:"16.01",y2:"20"}))}));wo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},wo.displayName="CloudSnow";var xo=wo;function jo(){return jo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jo.apply(this,arguments)}function Eo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ko=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Eo(e,["color","size"]);return r.createElement("svg",jo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}))}));ko.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ko.displayName="Cloud";var Po=ko;function zo(){return zo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zo.apply(this,arguments)}function So(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Lo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=So(e,["color","size"]);return r.createElement("svg",zo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"16 18 22 12 16 6"}),r.createElement("polyline",{points:"8 6 2 12 8 18"}))}));Lo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Lo.displayName="Code";var Co=Lo;function To(){return To=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},To.apply(this,arguments)}function No(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Mo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=No(e,["color","size"]);return r.createElement("svg",To({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}),r.createElement("line",{x1:"12",y1:"22",x2:"12",y2:"15.5"}),r.createElement("polyline",{points:"22 8.5 12 15.5 2 8.5"}),r.createElement("polyline",{points:"2 15.5 12 8.5 22 15.5"}),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"8.5"}))}));Mo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Mo.displayName="Codepen";var Io=Mo;function Bo(){return Bo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Bo.apply(this,arguments)}function Wo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ao=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Wo(e,["color","size"]);return r.createElement("svg",Bo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),r.createElement("polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}),r.createElement("polyline",{points:"7.5 19.79 7.5 14.6 3 12"}),r.createElement("polyline",{points:"21 12 16.5 14.6 16.5 19.79"}),r.createElement("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),r.createElement("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"}))}));Ao.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ao.displayName="Codesandbox";var Ho=Ao;function _o(){return _o=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_o.apply(this,arguments)}function Vo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ro=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Vo(e,["color","size"]);return r.createElement("svg",_o({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 8h1a4 4 0 0 1 0 8h-1"}),r.createElement("path",{d:"M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"}),r.createElement("line",{x1:"6",y1:"1",x2:"6",y2:"4"}),r.createElement("line",{x1:"10",y1:"1",x2:"10",y2:"4"}),r.createElement("line",{x1:"14",y1:"1",x2:"14",y2:"4"}))}));Ro.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ro.displayName="Coffee";var Do=Ro;function $o(){return $o=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$o.apply(this,arguments)}function Fo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Uo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Fo(e,["color","size"]);return r.createElement("svg",$o({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"}))}));Uo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Uo.displayName="Columns";var qo=Uo;function Zo(){return Zo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zo.apply(this,arguments)}function Xo(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Go=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Xo(e,["color","size"]);return r.createElement("svg",Zo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"}))}));Go.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Go.displayName="Command";var Yo=Go;function Jo(){return Jo=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jo.apply(this,arguments)}function Ko(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Qo=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ko(e,["color","size"]);return r.createElement("svg",Jo({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polygon",{points:"16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"}))}));Qo.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Qo.displayName="Compass";var ei=Qo;function ri(){return ri=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ri.apply(this,arguments)}function ti(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ni=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ti(e,["color","size"]);return r.createElement("svg",ri({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),r.createElement("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"}))}));ni.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ni.displayName="Copy";var oi=ni;function ii(){return ii=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ii.apply(this,arguments)}function li(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ai=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=li(e,["color","size"]);return r.createElement("svg",ii({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"9 10 4 15 9 20"}),r.createElement("path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}))}));ai.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ai.displayName="CornerDownLeft";var ci=ai;function si(){return si=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},si.apply(this,arguments)}function ui(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var pi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ui(e,["color","size"]);return r.createElement("svg",si({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"15 10 20 15 15 20"}),r.createElement("path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}))}));pi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},pi.displayName="CornerDownRight";var fi=pi;function yi(){return yi=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yi.apply(this,arguments)}function vi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var hi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=vi(e,["color","size"]);return r.createElement("svg",yi({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"14 15 9 20 4 15"}),r.createElement("path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}))}));hi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},hi.displayName="CornerLeftDown";var gi=hi;function di(){return di=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},di.apply(this,arguments)}function mi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Oi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=mi(e,["color","size"]);return r.createElement("svg",di({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"14 9 9 4 4 9"}),r.createElement("path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}))}));Oi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Oi.displayName="CornerLeftUp";var bi=Oi;function wi(){return wi=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wi.apply(this,arguments)}function xi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ji=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xi(e,["color","size"]);return r.createElement("svg",wi({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"10 15 15 20 20 15"}),r.createElement("path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}))}));ji.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ji.displayName="CornerRightDown";var Ei=ji;function ki(){return ki=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ki.apply(this,arguments)}function Pi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var zi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Pi(e,["color","size"]);return r.createElement("svg",ki({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"10 9 15 4 20 9"}),r.createElement("path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}))}));zi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},zi.displayName="CornerRightUp";var Si=zi;function Li(){return Li=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Li.apply(this,arguments)}function Ci(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ti=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ci(e,["color","size"]);return r.createElement("svg",Li({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"9 14 4 9 9 4"}),r.createElement("path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}))}));Ti.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ti.displayName="CornerUpLeft";var Ni=Ti;function Mi(){return Mi=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mi.apply(this,arguments)}function Ii(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Bi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ii(e,["color","size"]);return r.createElement("svg",Mi({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"15 14 20 9 15 4"}),r.createElement("path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}))}));Bi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Bi.displayName="CornerUpRight";var Wi=Bi;function Ai(){return Ai=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ai.apply(this,arguments)}function Hi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _i=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Hi(e,["color","size"]);return r.createElement("svg",Ai({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",ry:"2"}),r.createElement("rect",{x:"9",y:"9",width:"6",height:"6"}),r.createElement("line",{x1:"9",y1:"1",x2:"9",y2:"4"}),r.createElement("line",{x1:"15",y1:"1",x2:"15",y2:"4"}),r.createElement("line",{x1:"9",y1:"20",x2:"9",y2:"23"}),r.createElement("line",{x1:"15",y1:"20",x2:"15",y2:"23"}),r.createElement("line",{x1:"20",y1:"9",x2:"23",y2:"9"}),r.createElement("line",{x1:"20",y1:"14",x2:"23",y2:"14"}),r.createElement("line",{x1:"1",y1:"9",x2:"4",y2:"9"}),r.createElement("line",{x1:"1",y1:"14",x2:"4",y2:"14"}))}));_i.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_i.displayName="Cpu";var Vi=_i;function Ri(){return Ri=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ri.apply(this,arguments)}function Di(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $i=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Di(e,["color","size"]);return r.createElement("svg",Ri({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}),r.createElement("line",{x1:"1",y1:"10",x2:"23",y2:"10"}))}));$i.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$i.displayName="CreditCard";var Fi=$i;function Ui(){return Ui=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ui.apply(this,arguments)}function qi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Zi=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qi(e,["color","size"]);return r.createElement("svg",Ui({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M6.13 1L6 16a2 2 0 0 0 2 2h15"}),r.createElement("path",{d:"M1 6.13L16 6a2 2 0 0 1 2 2v15"}))}));Zi.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Zi.displayName="Crop";var Xi=Zi;function Gi(){return Gi=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Gi.apply(this,arguments)}function Yi(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ji=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Yi(e,["color","size"]);return r.createElement("svg",Gi({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"22",y1:"12",x2:"18",y2:"12"}),r.createElement("line",{x1:"6",y1:"12",x2:"2",y2:"12"}),r.createElement("line",{x1:"12",y1:"6",x2:"12",y2:"2"}),r.createElement("line",{x1:"12",y1:"22",x2:"12",y2:"18"}))}));Ji.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ji.displayName="Crosshair";var Ki=Ji;function Qi(){return Qi=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qi.apply(this,arguments)}function el(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var rl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=el(e,["color","size"]);return r.createElement("svg",Qi({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}),r.createElement("path",{d:"M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"}),r.createElement("path",{d:"M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"}))}));rl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},rl.displayName="Database";var tl=rl;function nl(){return nl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nl.apply(this,arguments)}function ol(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var il=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ol(e,["color","size"]);return r.createElement("svg",nl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"}),r.createElement("line",{x1:"18",y1:"9",x2:"12",y2:"15"}),r.createElement("line",{x1:"12",y1:"9",x2:"18",y2:"15"}))}));il.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},il.displayName="Delete";var ll=il;function al(){return al=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},al.apply(this,arguments)}function cl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var sl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=cl(e,["color","size"]);return r.createElement("svg",al({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("circle",{cx:"12",cy:"12",r:"3"}))}));sl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},sl.displayName="Disc";var ul=sl;function pl(){return pl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pl.apply(this,arguments)}function fl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var yl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=fl(e,["color","size"]);return r.createElement("svg",pl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),r.createElement("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"8"}),r.createElement("circle",{cx:"12",cy:"12",r:"10"}))}));yl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},yl.displayName="DivideCircle";var vl=yl;function hl(){return hl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},hl.apply(this,arguments)}function gl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var dl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=gl(e,["color","size"]);return r.createElement("svg",hl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),r.createElement("line",{x1:"12",y1:"16",x2:"12",y2:"16"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"8"}))}));dl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},dl.displayName="DivideSquare";var ml=dl;function Ol(){return Ol=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ol.apply(this,arguments)}function bl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var wl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=bl(e,["color","size"]);return r.createElement("svg",Ol({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"6",r:"2"}),r.createElement("line",{x1:"5",y1:"12",x2:"19",y2:"12"}),r.createElement("circle",{cx:"12",cy:"18",r:"2"}))}));wl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},wl.displayName="Divide";var xl=wl;function jl(){return jl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jl.apply(this,arguments)}function El(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var kl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=El(e,["color","size"]);return r.createElement("svg",jl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"1",x2:"12",y2:"23"}),r.createElement("path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}))}));kl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},kl.displayName="DollarSign";var Pl=kl;function zl(){return zl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zl.apply(this,arguments)}function Sl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ll=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Sl(e,["color","size"]);return r.createElement("svg",zl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"8 17 12 21 16 17"}),r.createElement("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),r.createElement("path",{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"}))}));Ll.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ll.displayName="DownloadCloud";var Cl=Ll;function Tl(){return Tl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tl.apply(this,arguments)}function Nl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ml=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Nl(e,["color","size"]);return r.createElement("svg",Tl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),r.createElement("polyline",{points:"7 10 12 15 17 10"}),r.createElement("line",{x1:"12",y1:"15",x2:"12",y2:"3"}))}));Ml.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ml.displayName="Download";var Il=Ml;function Bl(){return Bl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Bl.apply(this,arguments)}function Wl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Al=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Wl(e,["color","size"]);return r.createElement("svg",Bl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("path",{d:"M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"}))}));Al.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Al.displayName="Dribbble";var Hl=Al;function _l(){return _l=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_l.apply(this,arguments)}function Vl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Rl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Vl(e,["color","size"]);return r.createElement("svg",_l({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"}))}));Rl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Rl.displayName="Droplet";var Dl=Rl;function $l(){return $l=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$l.apply(this,arguments)}function Fl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ul=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Fl(e,["color","size"]);return r.createElement("svg",$l({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"}))}));Ul.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ul.displayName="Edit2";var ql=Ul;function Zl(){return Zl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zl.apply(this,arguments)}function Xl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Gl=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Xl(e,["color","size"]);return r.createElement("svg",Zl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 20h9"}),r.createElement("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"}))}));Gl.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Gl.displayName="Edit3";var Yl=Gl;function Jl(){return Jl=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jl.apply(this,arguments)}function Kl(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ql=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Kl(e,["color","size"]);return r.createElement("svg",Jl({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),r.createElement("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"}))}));Ql.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ql.displayName="Edit";var ea=Ql;function ra(){return ra=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ra.apply(this,arguments)}function ta(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var na=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ta(e,["color","size"]);return r.createElement("svg",ra({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),r.createElement("polyline",{points:"15 3 21 3 21 9"}),r.createElement("line",{x1:"10",y1:"14",x2:"21",y2:"3"}))}));na.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},na.displayName="ExternalLink";var oa=na;function ia(){return ia=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ia.apply(this,arguments)}function la(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var aa=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=la(e,["color","size"]);return r.createElement("svg",ia({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));aa.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},aa.displayName="EyeOff";var ca=aa;function sa(){return sa=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},sa.apply(this,arguments)}function ua(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var pa=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ua(e,["color","size"]);return r.createElement("svg",sa({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),r.createElement("circle",{cx:"12",cy:"12",r:"3"}))}));pa.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},pa.displayName="Eye";var fa=pa;function ya(){return ya=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ya.apply(this,arguments)}function va(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ha=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=va(e,["color","size"]);return r.createElement("svg",ya({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}))}));ha.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ha.displayName="Facebook";var ga=ha;function da(){return da=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},da.apply(this,arguments)}function ma(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Oa=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ma(e,["color","size"]);return r.createElement("svg",da({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"13 19 22 12 13 5 13 19"}),r.createElement("polygon",{points:"2 19 11 12 2 5 2 19"}))}));Oa.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Oa.displayName="FastForward";var ba=Oa;function wa(){return wa=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wa.apply(this,arguments)}function xa(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ja=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xa(e,["color","size"]);return r.createElement("svg",wa({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"}),r.createElement("line",{x1:"16",y1:"8",x2:"2",y2:"22"}),r.createElement("line",{x1:"17.5",y1:"15",x2:"9",y2:"15"}))}));ja.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ja.displayName="Feather";var Ea=ja;function ka(){return ka=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ka.apply(this,arguments)}function Pa(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var za=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Pa(e,["color","size"]);return r.createElement("svg",ka({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}),r.createElement("path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}),r.createElement("path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}),r.createElement("path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}),r.createElement("path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}))}));za.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},za.displayName="Figma";var Sa=za;function La(){return La=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},La.apply(this,arguments)}function Ca(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ta=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ca(e,["color","size"]);return r.createElement("svg",La({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),r.createElement("polyline",{points:"14 2 14 8 20 8"}),r.createElement("line",{x1:"9",y1:"15",x2:"15",y2:"15"}))}));Ta.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ta.displayName="FileMinus";var Na=Ta;function Ma(){return Ma=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ma.apply(this,arguments)}function Ia(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ba=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ia(e,["color","size"]);return r.createElement("svg",Ma({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),r.createElement("polyline",{points:"14 2 14 8 20 8"}),r.createElement("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),r.createElement("line",{x1:"9",y1:"15",x2:"15",y2:"15"}))}));Ba.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ba.displayName="FilePlus";var Wa=Ba;function Aa(){return Aa=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Aa.apply(this,arguments)}function Ha(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _a=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ha(e,["color","size"]);return r.createElement("svg",Aa({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),r.createElement("polyline",{points:"14 2 14 8 20 8"}),r.createElement("line",{x1:"16",y1:"13",x2:"8",y2:"13"}),r.createElement("line",{x1:"16",y1:"17",x2:"8",y2:"17"}),r.createElement("polyline",{points:"10 9 9 9 8 9"}))}));_a.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_a.displayName="FileText";var Va=_a;function Ra(){return Ra=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ra.apply(this,arguments)}function Da(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $a=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Da(e,["color","size"]);return r.createElement("svg",Ra({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"}),r.createElement("polyline",{points:"13 2 13 9 20 9"}))}));$a.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$a.displayName="File";var Fa=$a;function Ua(){return Ua=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ua.apply(this,arguments)}function qa(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Za=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qa(e,["color","size"]);return r.createElement("svg",Ua({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"2",width:"20",height:"20",rx:"2.18",ry:"2.18"}),r.createElement("line",{x1:"7",y1:"2",x2:"7",y2:"22"}),r.createElement("line",{x1:"17",y1:"2",x2:"17",y2:"22"}),r.createElement("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),r.createElement("line",{x1:"2",y1:"7",x2:"7",y2:"7"}),r.createElement("line",{x1:"2",y1:"17",x2:"7",y2:"17"}),r.createElement("line",{x1:"17",y1:"17",x2:"22",y2:"17"}),r.createElement("line",{x1:"17",y1:"7",x2:"22",y2:"7"}))}));Za.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Za.displayName="Film";var Xa=Za;function Ga(){return Ga=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ga.apply(this,arguments)}function Ya(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ja=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ya(e,["color","size"]);return r.createElement("svg",Ga({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"}))}));Ja.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ja.displayName="Filter";var Ka=Ja;function Qa(){return Qa=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qa.apply(this,arguments)}function ec(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var rc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ec(e,["color","size"]);return r.createElement("svg",Qa({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}),r.createElement("line",{x1:"4",y1:"22",x2:"4",y2:"15"}))}));rc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},rc.displayName="Flag";var tc=rc;function nc(){return nc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nc.apply(this,arguments)}function oc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ic=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=oc(e,["color","size"]);return r.createElement("svg",nc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),r.createElement("line",{x1:"9",y1:"14",x2:"15",y2:"14"}))}));ic.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ic.displayName="FolderMinus";var lc=ic;function ac(){return ac=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ac.apply(this,arguments)}function cc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var sc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=cc(e,["color","size"]);return r.createElement("svg",ac({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}),r.createElement("line",{x1:"12",y1:"11",x2:"12",y2:"17"}),r.createElement("line",{x1:"9",y1:"14",x2:"15",y2:"14"}))}));sc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},sc.displayName="FolderPlus";var uc=sc;function pc(){return pc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pc.apply(this,arguments)}function fc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var yc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=fc(e,["color","size"]);return r.createElement("svg",pc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"}))}));yc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},yc.displayName="Folder";var vc=yc;function hc(){return hc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},hc.apply(this,arguments)}function gc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var dc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=gc(e,["color","size"]);return r.createElement("svg",hc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"}))}));dc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},dc.displayName="Framer";var mc=dc;function Oc(){return Oc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Oc.apply(this,arguments)}function bc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var wc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=bc(e,["color","size"]);return r.createElement("svg",Oc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}),r.createElement("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),r.createElement("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}))}));wc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},wc.displayName="Frown";var xc=wc;function jc(){return jc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},jc.apply(this,arguments)}function Ec(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var kc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ec(e,["color","size"]);return r.createElement("svg",jc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"20 12 20 22 4 22 4 12"}),r.createElement("rect",{x:"2",y:"7",width:"20",height:"5"}),r.createElement("line",{x1:"12",y1:"22",x2:"12",y2:"7"}),r.createElement("path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}),r.createElement("path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"}))}));kc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},kc.displayName="Gift";var Pc=kc;function zc(){return zc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zc.apply(this,arguments)}function Sc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Lc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Sc(e,["color","size"]);return r.createElement("svg",zc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"6",y1:"3",x2:"6",y2:"15"}),r.createElement("circle",{cx:"18",cy:"6",r:"3"}),r.createElement("circle",{cx:"6",cy:"18",r:"3"}),r.createElement("path",{d:"M18 9a9 9 0 0 1-9 9"}))}));Lc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Lc.displayName="GitBranch";var Cc=Lc;function Tc(){return Tc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tc.apply(this,arguments)}function Nc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Mc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Nc(e,["color","size"]);return r.createElement("svg",Tc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"4"}),r.createElement("line",{x1:"1.05",y1:"12",x2:"7",y2:"12"}),r.createElement("line",{x1:"17.01",y1:"12",x2:"22.96",y2:"12"}))}));Mc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Mc.displayName="GitCommit";var Ic=Mc;function Bc(){return Bc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Bc.apply(this,arguments)}function Wc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ac=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Wc(e,["color","size"]);return r.createElement("svg",Bc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"18",cy:"18",r:"3"}),r.createElement("circle",{cx:"6",cy:"6",r:"3"}),r.createElement("path",{d:"M6 21V9a9 9 0 0 0 9 9"}))}));Ac.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ac.displayName="GitMerge";var Hc=Ac;function _c(){return _c=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_c.apply(this,arguments)}function Vc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Rc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Vc(e,["color","size"]);return r.createElement("svg",_c({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"18",cy:"18",r:"3"}),r.createElement("circle",{cx:"6",cy:"6",r:"3"}),r.createElement("path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}),r.createElement("line",{x1:"6",y1:"9",x2:"6",y2:"21"}))}));Rc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Rc.displayName="GitPullRequest";var Dc=Rc;function $c(){return $c=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$c.apply(this,arguments)}function Fc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Uc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Fc(e,["color","size"]);return r.createElement("svg",$c({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"}))}));Uc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Uc.displayName="GitHub";var qc=Uc;function Zc(){return Zc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zc.apply(this,arguments)}function Xc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Gc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Xc(e,["color","size"]);return r.createElement("svg",Zc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"}))}));Gc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Gc.displayName="Gitlab";var Yc=Gc;function Jc(){return Jc=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Jc.apply(this,arguments)}function Kc(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Qc=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Kc(e,["color","size"]);return r.createElement("svg",Jc({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),r.createElement("path",{d:"M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"}))}));Qc.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Qc.displayName="Globe";var es=Qc;function rs(){return rs=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},rs.apply(this,arguments)}function ts(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ns=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ts(e,["color","size"]);return r.createElement("svg",rs({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"7",height:"7"}),r.createElement("rect",{x:"14",y:"3",width:"7",height:"7"}),r.createElement("rect",{x:"14",y:"14",width:"7",height:"7"}),r.createElement("rect",{x:"3",y:"14",width:"7",height:"7"}))}));ns.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ns.displayName="Grid";var os=ns;function is(){return is=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},is.apply(this,arguments)}function ls(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var as=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ls(e,["color","size"]);return r.createElement("svg",is({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"22",y1:"12",x2:"2",y2:"12"}),r.createElement("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}),r.createElement("line",{x1:"6",y1:"16",x2:"6.01",y2:"16"}),r.createElement("line",{x1:"10",y1:"16",x2:"10.01",y2:"16"}))}));as.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},as.displayName="HardDrive";var cs=as;function ss(){return ss=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ss.apply(this,arguments)}function us(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ps=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=us(e,["color","size"]);return r.createElement("svg",ss({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),r.createElement("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),r.createElement("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),r.createElement("line",{x1:"16",y1:"3",x2:"14",y2:"21"}))}));ps.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ps.displayName="Hash";var fs=ps;function ys(){return ys=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ys.apply(this,arguments)}function vs(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var hs=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=vs(e,["color","size"]);return r.createElement("svg",ys({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M3 18v-6a9 9 0 0 1 18 0v6"}),r.createElement("path",{d:"M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"}))}));hs.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},hs.displayName="Headphones";var gs=hs;function ds(){return ds=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ds.apply(this,arguments)}function ms(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Os=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ms(e,["color","size"]);return r.createElement("svg",ds({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"}))}));Os.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Os.displayName="Heart";var bs=Os;function ws(){return ws=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ws.apply(this,arguments)}function xs(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var js=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xs(e,["color","size"]);return r.createElement("svg",ws({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),r.createElement("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"}))}));js.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},js.displayName="HelpCircle";var Es=js;function ks(){return ks=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ks.apply(this,arguments)}function Ps(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var zs=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ps(e,["color","size"]);return r.createElement("svg",ks({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}))}));zs.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},zs.displayName="Hexagon";var Ss=zs;function Ls(){return Ls=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ls.apply(this,arguments)}function Cs(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ts=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Cs(e,["color","size"]);return r.createElement("svg",Ls({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}),r.createElement("polyline",{points:"9 22 9 12 15 12 15 22"}))}));Ts.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ts.displayName="Home";var Ns=Ts;function Ms(){return Ms=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ms.apply(this,arguments)}function Is(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Bs=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Is(e,["color","size"]);return r.createElement("svg",Ms({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("circle",{cx:"8.5",cy:"8.5",r:"1.5"}),r.createElement("polyline",{points:"21 15 16 10 5 21"}))}));Bs.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Bs.displayName="Image";var Ws=Bs;function As(){return As=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},As.apply(this,arguments)}function Hs(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _s=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Hs(e,["color","size"]);return r.createElement("svg",As({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}),r.createElement("path",{d:"M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"}))}));_s.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_s.displayName="Inbox";var Vs=_s;function Rs(){return Rs=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Rs.apply(this,arguments)}function Ds(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $s=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ds(e,["color","size"]);return r.createElement("svg",Rs({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"12",y1:"16",x2:"12",y2:"12"}),r.createElement("line",{x1:"12",y1:"8",x2:"12.01",y2:"8"}))}));$s.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$s.displayName="Info";var Fs=$s;function Us(){return Us=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Us.apply(this,arguments)}function qs(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Zs=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qs(e,["color","size"]);return r.createElement("svg",Us({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}),r.createElement("path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}),r.createElement("line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"}))}));Zs.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Zs.displayName="Instagram";var Xs=Zs;function Gs(){return Gs=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Gs.apply(this,arguments)}function Ys(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Js=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ys(e,["color","size"]);return r.createElement("svg",Gs({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"19",y1:"4",x2:"10",y2:"4"}),r.createElement("line",{x1:"14",y1:"20",x2:"5",y2:"20"}),r.createElement("line",{x1:"15",y1:"4",x2:"9",y2:"20"}))}));Js.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Js.displayName="Italic";var Ks=Js;function Qs(){return Qs=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qs.apply(this,arguments)}function eu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ru=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=eu(e,["color","size"]);return r.createElement("svg",Qs({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"}))}));ru.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ru.displayName="Key";var tu=ru;function nu(){return nu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nu.apply(this,arguments)}function ou(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var iu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ou(e,["color","size"]);return r.createElement("svg",nu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"12 2 2 7 12 12 22 7 12 2"}),r.createElement("polyline",{points:"2 17 12 22 22 17"}),r.createElement("polyline",{points:"2 12 12 17 22 12"}))}));iu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},iu.displayName="Layers";var lu=iu;function au(){return au=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},au.apply(this,arguments)}function cu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var su=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=cu(e,["color","size"]);return r.createElement("svg",au({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),r.createElement("line",{x1:"9",y1:"21",x2:"9",y2:"9"}))}));su.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},su.displayName="Layout";var uu=su;function pu(){return pu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},pu.apply(this,arguments)}function fu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var yu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=fu(e,["color","size"]);return r.createElement("svg",pu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("circle",{cx:"12",cy:"12",r:"4"}),r.createElement("line",{x1:"4.93",y1:"4.93",x2:"9.17",y2:"9.17"}),r.createElement("line",{x1:"14.83",y1:"14.83",x2:"19.07",y2:"19.07"}),r.createElement("line",{x1:"14.83",y1:"9.17",x2:"19.07",y2:"4.93"}),r.createElement("line",{x1:"14.83",y1:"9.17",x2:"18.36",y2:"5.64"}),r.createElement("line",{x1:"4.93",y1:"19.07",x2:"9.17",y2:"14.83"}))}));yu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},yu.displayName="LifeBuoy";var vu=yu;function hu(){return hu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},hu.apply(this,arguments)}function gu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var du=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=gu(e,["color","size"]);return r.createElement("svg",hu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));du.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},du.displayName="Link2";var mu=du;function Ou(){return Ou=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ou.apply(this,arguments)}function bu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var wu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=bu(e,["color","size"]);return r.createElement("svg",Ou({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),r.createElement("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}))}));wu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},wu.displayName="Link";var xu=wu;function ju(){return ju=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ju.apply(this,arguments)}function Eu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ku=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Eu(e,["color","size"]);return r.createElement("svg",ju({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}),r.createElement("rect",{x:"2",y:"9",width:"4",height:"12"}),r.createElement("circle",{cx:"4",cy:"4",r:"2"}))}));ku.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ku.displayName="Linkedin";var Pu=ku;function zu(){return zu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},zu.apply(this,arguments)}function Su(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Lu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Su(e,["color","size"]);return r.createElement("svg",zu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"8",y1:"6",x2:"21",y2:"6"}),r.createElement("line",{x1:"8",y1:"12",x2:"21",y2:"12"}),r.createElement("line",{x1:"8",y1:"18",x2:"21",y2:"18"}),r.createElement("line",{x1:"3",y1:"6",x2:"3.01",y2:"6"}),r.createElement("line",{x1:"3",y1:"12",x2:"3.01",y2:"12"}),r.createElement("line",{x1:"3",y1:"18",x2:"3.01",y2:"18"}))}));Lu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Lu.displayName="List";var Cu=Lu;function Tu(){return Tu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Tu.apply(this,arguments)}function Nu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Mu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Nu(e,["color","size"]);return r.createElement("svg",Tu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"6"}),r.createElement("line",{x1:"12",y1:"18",x2:"12",y2:"22"}),r.createElement("line",{x1:"4.93",y1:"4.93",x2:"7.76",y2:"7.76"}),r.createElement("line",{x1:"16.24",y1:"16.24",x2:"19.07",y2:"19.07"}),r.createElement("line",{x1:"2",y1:"12",x2:"6",y2:"12"}),r.createElement("line",{x1:"18",y1:"12",x2:"22",y2:"12"}),r.createElement("line",{x1:"4.93",y1:"19.07",x2:"7.76",y2:"16.24"}),r.createElement("line",{x1:"16.24",y1:"7.76",x2:"19.07",y2:"4.93"}))}));Mu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Mu.displayName="Loader";var Iu=Mu;function Bu(){return Bu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Bu.apply(this,arguments)}function Wu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Au=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Wu(e,["color","size"]);return r.createElement("svg",Bu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),r.createElement("path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}))}));Au.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Au.displayName="Lock";var Hu=Au;function _u(){return _u=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_u.apply(this,arguments)}function Vu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ru=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Vu(e,["color","size"]);return r.createElement("svg",_u({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}),r.createElement("polyline",{points:"10 17 15 12 10 7"}),r.createElement("line",{x1:"15",y1:"12",x2:"3",y2:"12"}))}));Ru.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ru.displayName="LogIn";var Du=Ru;function $u(){return $u=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$u.apply(this,arguments)}function Fu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Uu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Fu(e,["color","size"]);return r.createElement("svg",$u({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}),r.createElement("polyline",{points:"16 17 21 12 16 7"}),r.createElement("line",{x1:"21",y1:"12",x2:"9",y2:"12"}))}));Uu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Uu.displayName="LogOut";var qu=Uu;function Zu(){return Zu=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Zu.apply(this,arguments)}function Xu(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Gu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Xu(e,["color","size"]);return r.createElement("svg",Zu({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"}),r.createElement("polyline",{points:"22,6 12,13 2,6"}))}));Gu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Gu.displayName="Mail";var Yu=Gu;function Ju(){return Ju=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ju.apply(this,arguments)}function Ku(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Qu=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ku(e,["color","size"]);return r.createElement("svg",Ju({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"}),r.createElement("circle",{cx:"12",cy:"10",r:"3"}))}));Qu.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Qu.displayName="MapPin";var ep=Qu;function rp(){return rp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},rp.apply(this,arguments)}function tp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var np=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=tp(e,["color","size"]);return r.createElement("svg",rp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"}),r.createElement("line",{x1:"8",y1:"2",x2:"8",y2:"18"}),r.createElement("line",{x1:"16",y1:"6",x2:"16",y2:"22"}))}));np.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},np.displayName="Map";var op=np;function ip(){return ip=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ip.apply(this,arguments)}function lp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ap=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=lp(e,["color","size"]);return r.createElement("svg",ip({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"15 3 21 3 21 9"}),r.createElement("polyline",{points:"9 21 3 21 3 15"}),r.createElement("line",{x1:"21",y1:"3",x2:"14",y2:"10"}),r.createElement("line",{x1:"3",y1:"21",x2:"10",y2:"14"}))}));ap.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ap.displayName="Maximize2";var cp=ap;function sp(){return sp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},sp.apply(this,arguments)}function up(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var pp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=up(e,["color","size"]);return r.createElement("svg",sp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"}))}));pp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},pp.displayName="Maximize";var fp=pp;function yp(){return yp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},yp.apply(this,arguments)}function vp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var hp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=vp(e,["color","size"]);return r.createElement("svg",yp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"8",y1:"15",x2:"16",y2:"15"}),r.createElement("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),r.createElement("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}))}));hp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},hp.displayName="Meh";var gp=hp;function dp(){return dp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},dp.apply(this,arguments)}function mp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Op=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=mp(e,["color","size"]);return r.createElement("svg",dp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"3",y1:"12",x2:"21",y2:"12"}),r.createElement("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),r.createElement("line",{x1:"3",y1:"18",x2:"21",y2:"18"}))}));Op.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Op.displayName="Menu";var bp=Op;function wp(){return wp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},wp.apply(this,arguments)}function xp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var jp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=xp(e,["color","size"]);return r.createElement("svg",wp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"}))}));jp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},jp.displayName="MessageCircle";var Ep=jp;function kp(){return kp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},kp.apply(this,arguments)}function Pp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var zp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Pp(e,["color","size"]);return r.createElement("svg",kp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"}))}));zp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},zp.displayName="MessageSquare";var Sp=zp;function Lp(){return Lp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Lp.apply(this,arguments)}function Cp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Tp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Cp(e,["color","size"]);return r.createElement("svg",Lp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),r.createElement("path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"}),r.createElement("path",{d:"M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"}),r.createElement("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),r.createElement("line",{x1:"8",y1:"23",x2:"16",y2:"23"}))}));Tp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Tp.displayName="MicOff";var Np=Tp;function Mp(){return Mp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Mp.apply(this,arguments)}function Ip(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Bp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ip(e,["color","size"]);return r.createElement("svg",Mp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"}),r.createElement("path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}),r.createElement("line",{x1:"12",y1:"19",x2:"12",y2:"23"}),r.createElement("line",{x1:"8",y1:"23",x2:"16",y2:"23"}))}));Bp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Bp.displayName="Mic";var Wp=Bp;function Ap(){return Ap=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ap.apply(this,arguments)}function Hp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var _p=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Hp(e,["color","size"]);return r.createElement("svg",Ap({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"4 14 10 14 10 20"}),r.createElement("polyline",{points:"20 10 14 10 14 4"}),r.createElement("line",{x1:"14",y1:"10",x2:"21",y2:"3"}),r.createElement("line",{x1:"3",y1:"21",x2:"10",y2:"14"}))}));_p.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},_p.displayName="Minimize2";var Vp=_p;function Rp(){return Rp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Rp.apply(this,arguments)}function Dp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var $p=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Dp(e,["color","size"]);return r.createElement("svg",Rp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"}))}));$p.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},$p.displayName="Minimize";var Fp=$p;function Up(){return Up=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Up.apply(this,arguments)}function qp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Zp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=qp(e,["color","size"]);return r.createElement("svg",Up({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));Zp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Zp.displayName="MinusCircle";var Xp=Zp;function Gp(){return Gp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Gp.apply(this,arguments)}function Yp(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Jp=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Yp(e,["color","size"]);return r.createElement("svg",Gp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));Jp.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Jp.displayName="MinusSquare";var Kp=Jp;function Qp(){return Qp=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Qp.apply(this,arguments)}function ef(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var rf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ef(e,["color","size"]);return r.createElement("svg",Qp({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"5",y1:"12",x2:"19",y2:"12"}))}));rf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},rf.displayName="Minus";var tf=rf;function nf(){return nf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},nf.apply(this,arguments)}function of(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var lf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=of(e,["color","size"]);return r.createElement("svg",nf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2",ry:"2"}),r.createElement("line",{x1:"8",y1:"21",x2:"16",y2:"21"}),r.createElement("line",{x1:"12",y1:"17",x2:"12",y2:"21"}))}));lf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},lf.displayName="Monitor";var af=lf;function cf(){return cf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cf.apply(this,arguments)}function sf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var uf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sf(e,["color","size"]);return r.createElement("svg",cf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"}))}));uf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},uf.displayName="Moon";var pf=uf;function ff(){return ff=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ff.apply(this,arguments)}function yf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=yf(e,["color","size"]);return r.createElement("svg",ff({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"1"}),r.createElement("circle",{cx:"19",cy:"12",r:"1"}),r.createElement("circle",{cx:"5",cy:"12",r:"1"}))}));vf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vf.displayName="MoreHorizontal";var hf=vf;function gf(){return gf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gf.apply(this,arguments)}function df(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var mf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=df(e,["color","size"]);return r.createElement("svg",gf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"1"}),r.createElement("circle",{cx:"12",cy:"5",r:"1"}),r.createElement("circle",{cx:"12",cy:"19",r:"1"}))}));mf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},mf.displayName="MoreVertical";var Of=mf;function bf(){return bf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},bf.apply(this,arguments)}function wf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var xf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=wf(e,["color","size"]);return r.createElement("svg",bf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"}),r.createElement("path",{d:"M13 13l6 6"}))}));xf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},xf.displayName="MousePointer";var jf=xf;function Ef(){return Ef=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ef.apply(this,arguments)}function kf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Pf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=kf(e,["color","size"]);return r.createElement("svg",Ef({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"5 9 2 12 5 15"}),r.createElement("polyline",{points:"9 5 12 2 15 5"}),r.createElement("polyline",{points:"15 19 12 22 9 19"}),r.createElement("polyline",{points:"19 9 22 12 19 15"}),r.createElement("line",{x1:"2",y1:"12",x2:"22",y2:"12"}),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"22"}))}));Pf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pf.displayName="Move";var zf=Pf;function Sf(){return Sf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sf.apply(this,arguments)}function Lf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Lf(e,["color","size"]);return r.createElement("svg",Sf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M9 18V5l12-2v13"}),r.createElement("circle",{cx:"6",cy:"18",r:"3"}),r.createElement("circle",{cx:"18",cy:"16",r:"3"}))}));Cf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cf.displayName="Music";var Tf=Cf;function Nf(){return Nf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nf.apply(this,arguments)}function Mf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var If=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mf(e,["color","size"]);return r.createElement("svg",Nf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"12 2 19 21 12 17 5 21 12 2"}))}));If.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},If.displayName="Navigation2";var Bf=If;function Wf(){return Wf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wf.apply(this,arguments)}function Af(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Af(e,["color","size"]);return r.createElement("svg",Wf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"3 11 22 2 13 21 11 13 3 11"}))}));Hf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hf.displayName="Navigation";var _f=Hf;function Vf(){return Vf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vf.apply(this,arguments)}function Rf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Df=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rf(e,["color","size"]);return r.createElement("svg",Vf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}))}));Df.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Df.displayName="Octagon";var $f=Df;function Ff(){return Ff=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ff.apply(this,arguments)}function Uf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Uf(e,["color","size"]);return r.createElement("svg",Ff({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),r.createElement("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),r.createElement("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),r.createElement("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"}))}));qf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qf.displayName="Package";var Zf=qf;function Xf(){return Xf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xf.apply(this,arguments)}function Gf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Yf=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gf(e,["color","size"]);return r.createElement("svg",Xf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"}))}));Yf.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Yf.displayName="Paperclip";var Jf=Yf;function Kf(){return Kf=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kf.apply(this,arguments)}function Qf(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ey=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qf(e,["color","size"]);return r.createElement("svg",Kf({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"10",y1:"15",x2:"10",y2:"9"}),r.createElement("line",{x1:"14",y1:"15",x2:"14",y2:"9"}))}));ey.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ey.displayName="PauseCircle";var ry=ey;function ty(){return ty=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ty.apply(this,arguments)}function ny(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var oy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ny(e,["color","size"]);return r.createElement("svg",ty({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"6",y:"4",width:"4",height:"16"}),r.createElement("rect",{x:"14",y:"4",width:"4",height:"16"}))}));oy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},oy.displayName="Pause";var iy=oy;function ly(){return ly=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ly.apply(this,arguments)}function ay(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var cy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ay(e,["color","size"]);return r.createElement("svg",ly({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 19l7-7 3 3-7 7-3-3z"}),r.createElement("path",{d:"M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"}),r.createElement("path",{d:"M2 2l7.586 7.586"}),r.createElement("circle",{cx:"11",cy:"11",r:"2"}))}));cy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},cy.displayName="PenTool";var sy=cy;function uy(){return uy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},uy.apply(this,arguments)}function py(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var fy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=py(e,["color","size"]);return r.createElement("svg",uy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"19",y1:"5",x2:"5",y2:"19"}),r.createElement("circle",{cx:"6.5",cy:"6.5",r:"2.5"}),r.createElement("circle",{cx:"17.5",cy:"17.5",r:"2.5"}))}));fy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},fy.displayName="Percent";var yy=fy;function vy(){return vy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},vy.apply(this,arguments)}function hy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var gy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=hy(e,["color","size"]);return r.createElement("svg",vy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));gy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},gy.displayName="PhoneCall";var dy=gy;function my(){return my=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},my.apply(this,arguments)}function Oy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var by=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Oy(e,["color","size"]);return r.createElement("svg",my({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"19 1 23 5 19 9"}),r.createElement("line",{x1:"15",y1:"5",x2:"23",y2:"5"}),r.createElement("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));by.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},by.displayName="PhoneForwarded";var wy=by;function xy(){return xy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},xy.apply(this,arguments)}function jy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ey=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=jy(e,["color","size"]);return r.createElement("svg",xy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"16 2 16 8 22 8"}),r.createElement("line",{x1:"23",y1:"1",x2:"16",y2:"8"}),r.createElement("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));Ey.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ey.displayName="PhoneIncoming";var ky=Ey;function Py(){return Py=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Py.apply(this,arguments)}function zy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Sy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=zy(e,["color","size"]);return r.createElement("svg",Py({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"23",y1:"1",x2:"17",y2:"7"}),r.createElement("line",{x1:"17",y1:"1",x2:"23",y2:"7"}),r.createElement("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));Sy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Sy.displayName="PhoneMissed";var Ly=Sy;function Cy(){return Cy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Cy.apply(this,arguments)}function Ty(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ny=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ty(e,["color","size"]);return r.createElement("svg",Cy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"}),r.createElement("line",{x1:"23",y1:"1",x2:"1",y2:"23"}))}));Ny.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ny.displayName="PhoneOff";var My=Ny;function Iy(){return Iy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Iy.apply(this,arguments)}function By(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Wy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=By(e,["color","size"]);return r.createElement("svg",Iy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"23 7 23 1 17 1"}),r.createElement("line",{x1:"16",y1:"8",x2:"23",y2:"1"}),r.createElement("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));Wy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Wy.displayName="PhoneOutgoing";var Ay=Wy;function Hy(){return Hy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Hy.apply(this,arguments)}function _y(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Vy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=_y(e,["color","size"]);return r.createElement("svg",Hy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"}))}));Vy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Vy.displayName="Phone";var Ry=Vy;function Dy(){return Dy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Dy.apply(this,arguments)}function $y(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Fy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=$y(e,["color","size"]);return r.createElement("svg",Dy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}),r.createElement("path",{d:"M22 12A10 10 0 0 0 12 2v10z"}))}));Fy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Fy.displayName="PieChart";var Uy=Fy;function qy(){return qy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},qy.apply(this,arguments)}function Zy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Xy=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Zy(e,["color","size"]);return r.createElement("svg",qy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("polygon",{points:"10 8 16 12 10 16 10 8"}))}));Xy.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Xy.displayName="PlayCircle";var Gy=Xy;function Yy(){return Yy=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Yy.apply(this,arguments)}function Jy(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ky=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Jy(e,["color","size"]);return r.createElement("svg",Yy({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"5 3 19 12 5 21 5 3"}))}));Ky.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ky.displayName="Play";var Qy=Ky;function ev(){return ev=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ev.apply(this,arguments)}function rv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var tv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=rv(e,["color","size"]);return r.createElement("svg",ev({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));tv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},tv.displayName="PlusCircle";var nv=tv;function ov(){return ov=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ov.apply(this,arguments)}function iv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var lv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=iv(e,["color","size"]);return r.createElement("svg",ov({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),r.createElement("line",{x1:"8",y1:"12",x2:"16",y2:"12"}))}));lv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},lv.displayName="PlusSquare";var av=lv;function cv(){return cv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cv.apply(this,arguments)}function sv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var uv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sv(e,["color","size"]);return r.createElement("svg",cv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),r.createElement("line",{x1:"5",y1:"12",x2:"19",y2:"12"}))}));uv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},uv.displayName="Plus";var pv=uv;function fv(){return fv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fv.apply(this,arguments)}function yv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=yv(e,["color","size"]);return r.createElement("svg",fv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"}),r.createElement("polyline",{points:"8 10 12 14 16 10"}))}));vv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vv.displayName="Pocket";var hv=vv;function gv(){return gv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gv.apply(this,arguments)}function dv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var mv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=dv(e,["color","size"]);return r.createElement("svg",gv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"12"}))}));mv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},mv.displayName="Power";var Ov=mv;function bv(){return bv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},bv.apply(this,arguments)}function wv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var xv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=wv(e,["color","size"]);return r.createElement("svg",bv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"6 9 6 2 18 2 18 9"}),r.createElement("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),r.createElement("rect",{x:"6",y:"14",width:"12",height:"8"}))}));xv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},xv.displayName="Printer";var jv=xv;function Ev(){return Ev=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ev.apply(this,arguments)}function kv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Pv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=kv(e,["color","size"]);return r.createElement("svg",Ev({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"2"}),r.createElement("path",{d:"M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"}))}));Pv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pv.displayName="Radio";var zv=Pv;function Sv(){return Sv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sv.apply(this,arguments)}function Lv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Lv(e,["color","size"]);return r.createElement("svg",Sv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"1 4 1 10 7 10"}),r.createElement("polyline",{points:"23 20 23 14 17 14"}),r.createElement("path",{d:"M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"}))}));Cv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cv.displayName="RefreshCcw";var Tv=Cv;function Nv(){return Nv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nv.apply(this,arguments)}function Mv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Iv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mv(e,["color","size"]);return r.createElement("svg",Nv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"23 4 23 10 17 10"}),r.createElement("polyline",{points:"1 20 1 14 7 14"}),r.createElement("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"}))}));Iv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Iv.displayName="RefreshCw";var Bv=Iv;function Wv(){return Wv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wv.apply(this,arguments)}function Av(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Av(e,["color","size"]);return r.createElement("svg",Wv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"17 1 21 5 17 9"}),r.createElement("path",{d:"M3 11V9a4 4 0 0 1 4-4h14"}),r.createElement("polyline",{points:"7 23 3 19 7 15"}),r.createElement("path",{d:"M21 13v2a4 4 0 0 1-4 4H3"}))}));Hv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hv.displayName="Repeat";var _v=Hv;function Vv(){return Vv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vv.apply(this,arguments)}function Rv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Dv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rv(e,["color","size"]);return r.createElement("svg",Vv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"11 19 2 12 11 5 11 19"}),r.createElement("polygon",{points:"22 19 13 12 22 5 22 19"}))}));Dv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Dv.displayName="Rewind";var $v=Dv;function Fv(){return Fv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Fv.apply(this,arguments)}function Uv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Uv(e,["color","size"]);return r.createElement("svg",Fv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"1 4 1 10 7 10"}),r.createElement("path",{d:"M3.51 15a9 9 0 1 0 2.13-9.36L1 10"}))}));qv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qv.displayName="RotateCcw";var Zv=qv;function Xv(){return Xv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xv.apply(this,arguments)}function Gv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Yv=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gv(e,["color","size"]);return r.createElement("svg",Xv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"23 4 23 10 17 10"}),r.createElement("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"}))}));Yv.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Yv.displayName="RotateCw";var Jv=Yv;function Kv(){return Kv=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kv.apply(this,arguments)}function Qv(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var eh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qv(e,["color","size"]);return r.createElement("svg",Kv({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 11a9 9 0 0 1 9 9"}),r.createElement("path",{d:"M4 4a16 16 0 0 1 16 16"}),r.createElement("circle",{cx:"5",cy:"19",r:"1"}))}));eh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},eh.displayName="Rss";var rh=eh;function th(){return th=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},th.apply(this,arguments)}function nh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var oh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=nh(e,["color","size"]);return r.createElement("svg",th({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}),r.createElement("polyline",{points:"17 21 17 13 7 13 7 21"}),r.createElement("polyline",{points:"7 3 7 8 15 8"}))}));oh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},oh.displayName="Save";var ih=oh;function lh(){return lh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},lh.apply(this,arguments)}function ah(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ch=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ah(e,["color","size"]);return r.createElement("svg",lh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"6",cy:"6",r:"3"}),r.createElement("circle",{cx:"6",cy:"18",r:"3"}),r.createElement("line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}),r.createElement("line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}),r.createElement("line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"}))}));ch.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ch.displayName="Scissors";var sh=ch;function uh(){return uh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},uh.apply(this,arguments)}function ph(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var fh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ph(e,["color","size"]);return r.createElement("svg",uh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"11",cy:"11",r:"8"}),r.createElement("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}))}));fh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},fh.displayName="Search";var yh=fh;function vh(){return vh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},vh.apply(this,arguments)}function hh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var gh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=hh(e,["color","size"]);return r.createElement("svg",vh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"22",y1:"2",x2:"11",y2:"13"}),r.createElement("polygon",{points:"22 2 15 22 11 13 2 9 22 2"}))}));gh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},gh.displayName="Send";var dh=gh;function mh(){return mh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},mh.apply(this,arguments)}function Oh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var bh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Oh(e,["color","size"]);return r.createElement("svg",mh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"2",width:"20",height:"8",rx:"2",ry:"2"}),r.createElement("rect",{x:"2",y:"14",width:"20",height:"8",rx:"2",ry:"2"}),r.createElement("line",{x1:"6",y1:"6",x2:"6.01",y2:"6"}),r.createElement("line",{x1:"6",y1:"18",x2:"6.01",y2:"18"}))}));bh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},bh.displayName="Server";var wh=bh;function xh(){return xh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},xh.apply(this,arguments)}function jh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Eh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=jh(e,["color","size"]);return r.createElement("svg",xh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"3"}),r.createElement("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"}))}));Eh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Eh.displayName="Settings";var kh=Eh;function Ph(){return Ph=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ph.apply(this,arguments)}function zh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Sh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=zh(e,["color","size"]);return r.createElement("svg",Ph({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"18",cy:"5",r:"3"}),r.createElement("circle",{cx:"6",cy:"12",r:"3"}),r.createElement("circle",{cx:"18",cy:"19",r:"3"}),r.createElement("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),r.createElement("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"}))}));Sh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Sh.displayName="Share2";var Lh=Sh;function Ch(){return Ch=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ch.apply(this,arguments)}function Th(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Nh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Th(e,["color","size"]);return r.createElement("svg",Ch({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}),r.createElement("polyline",{points:"16 6 12 2 8 6"}),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"15"}))}));Nh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Nh.displayName="Share";var Mh=Nh;function Ih(){return Ih=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ih.apply(this,arguments)}function Bh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Wh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Bh(e,["color","size"]);return r.createElement("svg",Ih({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"}),r.createElement("path",{d:"M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));Wh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Wh.displayName="ShieldOff";var Ah=Wh;function Hh(){return Hh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Hh.apply(this,arguments)}function _h(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Vh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=_h(e,["color","size"]);return r.createElement("svg",Hh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}))}));Vh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Vh.displayName="Shield";var Rh=Vh;function Dh(){return Dh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Dh.apply(this,arguments)}function $h(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Fh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=$h(e,["color","size"]);return r.createElement("svg",Dh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),r.createElement("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),r.createElement("path",{d:"M16 10a4 4 0 0 1-8 0"}))}));Fh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Fh.displayName="ShoppingBag";var Uh=Fh;function qh(){return qh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},qh.apply(this,arguments)}function Zh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Xh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Zh(e,["color","size"]);return r.createElement("svg",qh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"9",cy:"21",r:"1"}),r.createElement("circle",{cx:"20",cy:"21",r:"1"}),r.createElement("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"}))}));Xh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Xh.displayName="ShoppingCart";var Gh=Xh;function Yh(){return Yh=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Yh.apply(this,arguments)}function Jh(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Kh=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Jh(e,["color","size"]);return r.createElement("svg",Yh({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"16 3 21 3 21 8"}),r.createElement("line",{x1:"4",y1:"20",x2:"21",y2:"3"}),r.createElement("polyline",{points:"21 16 21 21 16 21"}),r.createElement("line",{x1:"15",y1:"15",x2:"21",y2:"21"}),r.createElement("line",{x1:"4",y1:"4",x2:"9",y2:"9"}))}));Kh.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Kh.displayName="Shuffle";var Qh=Kh;function eg(){return eg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},eg.apply(this,arguments)}function rg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var tg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=rg(e,["color","size"]);return r.createElement("svg",eg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"9",y1:"3",x2:"9",y2:"21"}))}));tg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},tg.displayName="Sidebar";var ng=tg;function og(){return og=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},og.apply(this,arguments)}function ig(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var lg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ig(e,["color","size"]);return r.createElement("svg",og({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"19 20 9 12 19 4 19 20"}),r.createElement("line",{x1:"5",y1:"19",x2:"5",y2:"5"}))}));lg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},lg.displayName="SkipBack";var ag=lg;function cg(){return cg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cg.apply(this,arguments)}function sg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ug=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sg(e,["color","size"]);return r.createElement("svg",cg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"5 4 15 12 5 20 5 4"}),r.createElement("line",{x1:"19",y1:"5",x2:"19",y2:"19"}))}));ug.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ug.displayName="SkipForward";var pg=ug;function fg(){return fg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fg.apply(this,arguments)}function yg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=yg(e,["color","size"]);return r.createElement("svg",fg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"}),r.createElement("path",{d:"M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"}),r.createElement("path",{d:"M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"}),r.createElement("path",{d:"M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"}),r.createElement("path",{d:"M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"}),r.createElement("path",{d:"M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"}),r.createElement("path",{d:"M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"}),r.createElement("path",{d:"M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"}))}));vg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vg.displayName="Slack";var hg=vg;function gg(){return gg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gg.apply(this,arguments)}function dg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var mg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=dg(e,["color","size"]);return r.createElement("svg",gg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"}))}));mg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},mg.displayName="Slash";var Og=mg;function bg(){return bg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},bg.apply(this,arguments)}function wg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var xg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=wg(e,["color","size"]);return r.createElement("svg",bg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"4",y1:"21",x2:"4",y2:"14"}),r.createElement("line",{x1:"4",y1:"10",x2:"4",y2:"3"}),r.createElement("line",{x1:"12",y1:"21",x2:"12",y2:"12"}),r.createElement("line",{x1:"12",y1:"8",x2:"12",y2:"3"}),r.createElement("line",{x1:"20",y1:"21",x2:"20",y2:"16"}),r.createElement("line",{x1:"20",y1:"12",x2:"20",y2:"3"}),r.createElement("line",{x1:"1",y1:"14",x2:"7",y2:"14"}),r.createElement("line",{x1:"9",y1:"8",x2:"15",y2:"8"}),r.createElement("line",{x1:"17",y1:"16",x2:"23",y2:"16"}))}));xg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},xg.displayName="Sliders";var jg=xg;function Eg(){return Eg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Eg.apply(this,arguments)}function kg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Pg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=kg(e,["color","size"]);return r.createElement("svg",Eg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2",ry:"2"}),r.createElement("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}))}));Pg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pg.displayName="Smartphone";var zg=Pg;function Sg(){return Sg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sg.apply(this,arguments)}function Lg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Lg(e,["color","size"]);return r.createElement("svg",Sg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}),r.createElement("line",{x1:"9",y1:"9",x2:"9.01",y2:"9"}),r.createElement("line",{x1:"15",y1:"9",x2:"15.01",y2:"9"}))}));Cg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cg.displayName="Smile";var Tg=Cg;function Ng(){return Ng=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Ng.apply(this,arguments)}function Mg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ig=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mg(e,["color","size"]);return r.createElement("svg",Ng({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),r.createElement("circle",{cx:"12",cy:"14",r:"4"}),r.createElement("line",{x1:"12",y1:"6",x2:"12.01",y2:"6"}))}));Ig.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ig.displayName="Speaker";var Bg=Ig;function Wg(){return Wg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wg.apply(this,arguments)}function Ag(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ag(e,["color","size"]);return r.createElement("svg",Wg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}))}));Hg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hg.displayName="Square";var _g=Hg;function Vg(){return Vg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vg.apply(this,arguments)}function Rg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Dg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rg(e,["color","size"]);return r.createElement("svg",Vg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"}))}));Dg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Dg.displayName="Star";var $g=Dg;function Fg(){return Fg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Fg.apply(this,arguments)}function Ug(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ug(e,["color","size"]);return r.createElement("svg",Fg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("rect",{x:"9",y:"9",width:"6",height:"6"}))}));qg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qg.displayName="StopCircle";var Zg=qg;function Xg(){return Xg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xg.apply(this,arguments)}function Gg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Yg=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gg(e,["color","size"]);return r.createElement("svg",Xg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"5"}),r.createElement("line",{x1:"12",y1:"1",x2:"12",y2:"3"}),r.createElement("line",{x1:"12",y1:"21",x2:"12",y2:"23"}),r.createElement("line",{x1:"4.22",y1:"4.22",x2:"5.64",y2:"5.64"}),r.createElement("line",{x1:"18.36",y1:"18.36",x2:"19.78",y2:"19.78"}),r.createElement("line",{x1:"1",y1:"12",x2:"3",y2:"12"}),r.createElement("line",{x1:"21",y1:"12",x2:"23",y2:"12"}),r.createElement("line",{x1:"4.22",y1:"19.78",x2:"5.64",y2:"18.36"}),r.createElement("line",{x1:"18.36",y1:"5.64",x2:"19.78",y2:"4.22"}))}));Yg.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Yg.displayName="Sun";var Jg=Yg;function Kg(){return Kg=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kg.apply(this,arguments)}function Qg(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ed=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qg(e,["color","size"]);return r.createElement("svg",Kg({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M17 18a5 5 0 0 0-10 0"}),r.createElement("line",{x1:"12",y1:"2",x2:"12",y2:"9"}),r.createElement("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),r.createElement("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),r.createElement("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),r.createElement("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),r.createElement("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),r.createElement("polyline",{points:"8 6 12 2 16 6"}))}));ed.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ed.displayName="Sunrise";var rd=ed;function td(){return td=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},td.apply(this,arguments)}function nd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var od=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=nd(e,["color","size"]);return r.createElement("svg",td({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M17 18a5 5 0 0 0-10 0"}),r.createElement("line",{x1:"12",y1:"9",x2:"12",y2:"2"}),r.createElement("line",{x1:"4.22",y1:"10.22",x2:"5.64",y2:"11.64"}),r.createElement("line",{x1:"1",y1:"18",x2:"3",y2:"18"}),r.createElement("line",{x1:"21",y1:"18",x2:"23",y2:"18"}),r.createElement("line",{x1:"18.36",y1:"11.64",x2:"19.78",y2:"10.22"}),r.createElement("line",{x1:"23",y1:"22",x2:"1",y2:"22"}),r.createElement("polyline",{points:"16 5 12 9 8 5"}))}));od.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},od.displayName="Sunset";var id=od;function ld(){return ld=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ld.apply(this,arguments)}function ad(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var cd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ad(e,["color","size"]);return r.createElement("svg",ld({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}))}));cd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},cd.displayName="Table";var sd=cd;function ud(){return ud=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ud.apply(this,arguments)}function pd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var fd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=pd(e,["color","size"]);return r.createElement("svg",ud({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"4",y:"2",width:"16",height:"20",rx:"2",ry:"2"}),r.createElement("line",{x1:"12",y1:"18",x2:"12.01",y2:"18"}))}));fd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},fd.displayName="Tablet";var yd=fd;function vd(){return vd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},vd.apply(this,arguments)}function hd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var gd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=hd(e,["color","size"]);return r.createElement("svg",vd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"}),r.createElement("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"}))}));gd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},gd.displayName="Tag";var dd=gd;function md(){return md=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},md.apply(this,arguments)}function Od(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var bd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Od(e,["color","size"]);return r.createElement("svg",md({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("circle",{cx:"12",cy:"12",r:"6"}),r.createElement("circle",{cx:"12",cy:"12",r:"2"}))}));bd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},bd.displayName="Target";var wd=bd;function xd(){return xd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},xd.apply(this,arguments)}function jd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ed=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=jd(e,["color","size"]);return r.createElement("svg",xd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"4 17 10 11 4 5"}),r.createElement("line",{x1:"12",y1:"19",x2:"20",y2:"19"}))}));Ed.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ed.displayName="Terminal";var kd=Ed;function Pd(){return Pd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Pd.apply(this,arguments)}function zd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Sd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=zd(e,["color","size"]);return r.createElement("svg",Pd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"}))}));Sd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Sd.displayName="Thermometer";var Ld=Sd;function Cd(){return Cd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Cd.apply(this,arguments)}function Td(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Nd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Td(e,["color","size"]);return r.createElement("svg",Cd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"}))}));Nd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Nd.displayName="ThumbsDown";var Md=Nd;function Id(){return Id=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Id.apply(this,arguments)}function Bd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Wd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Bd(e,["color","size"]);return r.createElement("svg",Id({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"}))}));Wd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Wd.displayName="ThumbsUp";var Ad=Wd;function Hd(){return Hd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Hd.apply(this,arguments)}function _d(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Vd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=_d(e,["color","size"]);return r.createElement("svg",Hd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),r.createElement("circle",{cx:"8",cy:"12",r:"3"}))}));Vd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Vd.displayName="ToggleLeft";var Rd=Vd;function Dd(){return Dd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Dd.apply(this,arguments)}function $d(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Fd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=$d(e,["color","size"]);return r.createElement("svg",Dd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"1",y:"5",width:"22",height:"14",rx:"7",ry:"7"}),r.createElement("circle",{cx:"16",cy:"12",r:"3"}))}));Fd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Fd.displayName="ToggleRight";var Ud=Fd;function qd(){return qd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},qd.apply(this,arguments)}function Zd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Xd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Zd(e,["color","size"]);return r.createElement("svg",qd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"}))}));Xd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Xd.displayName="Tool";var Gd=Xd;function Yd(){return Yd=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Yd.apply(this,arguments)}function Jd(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Kd=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Jd(e,["color","size"]);return r.createElement("svg",Yd({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"3 6 5 6 21 6"}),r.createElement("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}),r.createElement("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),r.createElement("line",{x1:"14",y1:"11",x2:"14",y2:"17"}))}));Kd.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Kd.displayName="Trash2";var Qd=Kd;function em(){return em=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},em.apply(this,arguments)}function rm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var tm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=rm(e,["color","size"]);return r.createElement("svg",em({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"3 6 5 6 21 6"}),r.createElement("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}))}));tm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},tm.displayName="Trash";var nm=tm;function om(){return om=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},om.apply(this,arguments)}function im(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var lm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=im(e,["color","size"]);return r.createElement("svg",om({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("rect",{x:"7",y:"7",width:"3",height:"9"}),r.createElement("rect",{x:"14",y:"7",width:"3",height:"5"}))}));lm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},lm.displayName="Trello";var am=lm;function cm(){return cm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cm.apply(this,arguments)}function sm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var um=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sm(e,["color","size"]);return r.createElement("svg",cm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"23 18 13.5 8.5 8.5 13.5 1 6"}),r.createElement("polyline",{points:"17 18 23 18 23 12"}))}));um.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},um.displayName="TrendingDown";var pm=um;function fm(){return fm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fm.apply(this,arguments)}function ym(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ym(e,["color","size"]);return r.createElement("svg",fm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"23 6 13.5 15.5 8.5 10.5 1 18"}),r.createElement("polyline",{points:"17 6 23 6 23 12"}))}));vm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vm.displayName="TrendingUp";var hm=vm;function gm(){return gm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gm.apply(this,arguments)}function dm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var mm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=dm(e,["color","size"]);return r.createElement("svg",gm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}))}));mm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},mm.displayName="Triangle";var Om=mm;function bm(){return bm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},bm.apply(this,arguments)}function wm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var xm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=wm(e,["color","size"]);return r.createElement("svg",bm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"1",y:"3",width:"15",height:"13"}),r.createElement("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),r.createElement("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),r.createElement("circle",{cx:"18.5",cy:"18.5",r:"2.5"}))}));xm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},xm.displayName="Truck";var jm=xm;function Em(){return Em=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Em.apply(this,arguments)}function km(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Pm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=km(e,["color","size"]);return r.createElement("svg",Em({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"2",y:"7",width:"20",height:"15",rx:"2",ry:"2"}),r.createElement("polyline",{points:"17 2 12 7 7 2"}))}));Pm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pm.displayName="Tv";var zm=Pm;function Sm(){return Sm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sm.apply(this,arguments)}function Lm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Lm(e,["color","size"]);return r.createElement("svg",Sm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}))}));Cm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cm.displayName="Twitch";var Tm=Cm;function Nm(){return Nm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nm.apply(this,arguments)}function Mm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Im=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mm(e,["color","size"]);return r.createElement("svg",Nm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"}))}));Im.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Im.displayName="Twitter";var Bm=Im;function Wm(){return Wm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wm.apply(this,arguments)}function Am(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Am(e,["color","size"]);return r.createElement("svg",Wm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"4 7 4 4 20 4 20 7"}),r.createElement("line",{x1:"9",y1:"20",x2:"15",y2:"20"}),r.createElement("line",{x1:"12",y1:"4",x2:"12",y2:"20"}))}));Hm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hm.displayName="Type";var _m=Hm;function Vm(){return Vm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vm.apply(this,arguments)}function Rm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Dm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rm(e,["color","size"]);return r.createElement("svg",Vm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"}))}));Dm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Dm.displayName="Umbrella";var $m=Dm;function Fm(){return Fm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Fm.apply(this,arguments)}function Um(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qm=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Um(e,["color","size"]);return r.createElement("svg",Fm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"}),r.createElement("line",{x1:"4",y1:"21",x2:"20",y2:"21"}))}));qm.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qm.displayName="Underline";var Zm=qm;function Xm(){return Xm=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xm.apply(this,arguments)}function Gm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ym=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gm(e,["color","size"]);return r.createElement("svg",Xm({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),r.createElement("path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}))}));Ym.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ym.displayName="Unlock";var Jm=Ym;function Km(){return Km=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Km.apply(this,arguments)}function Qm(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var eO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qm(e,["color","size"]);return r.createElement("svg",Km({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"16 16 12 12 8 16"}),r.createElement("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),r.createElement("path",{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"}),r.createElement("polyline",{points:"16 16 12 12 8 16"}))}));eO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},eO.displayName="UploadCloud";var rO=eO;function tO(){return tO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},tO.apply(this,arguments)}function nO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var oO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=nO(e,["color","size"]);return r.createElement("svg",tO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),r.createElement("polyline",{points:"17 8 12 3 7 8"}),r.createElement("line",{x1:"12",y1:"3",x2:"12",y2:"15"}))}));oO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},oO.displayName="Upload";var iO=oO;function lO(){return lO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},lO.apply(this,arguments)}function aO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var cO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=aO(e,["color","size"]);return r.createElement("svg",lO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"8.5",cy:"7",r:"4"}),r.createElement("polyline",{points:"17 11 19 13 23 9"}))}));cO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},cO.displayName="UserCheck";var sO=cO;function uO(){return uO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},uO.apply(this,arguments)}function pO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var fO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=pO(e,["color","size"]);return r.createElement("svg",uO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"8.5",cy:"7",r:"4"}),r.createElement("line",{x1:"23",y1:"11",x2:"17",y2:"11"}))}));fO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},fO.displayName="UserMinus";var yO=fO;function vO(){return vO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},vO.apply(this,arguments)}function hO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var gO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=hO(e,["color","size"]);return r.createElement("svg",vO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"8.5",cy:"7",r:"4"}),r.createElement("line",{x1:"20",y1:"8",x2:"20",y2:"14"}),r.createElement("line",{x1:"23",y1:"11",x2:"17",y2:"11"}))}));gO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},gO.displayName="UserPlus";var dO=gO;function mO(){return mO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},mO.apply(this,arguments)}function OO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var bO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=OO(e,["color","size"]);return r.createElement("svg",mO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"8.5",cy:"7",r:"4"}),r.createElement("line",{x1:"18",y1:"8",x2:"23",y2:"13"}),r.createElement("line",{x1:"23",y1:"8",x2:"18",y2:"13"}))}));bO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},bO.displayName="UserX";var wO=bO;function xO(){return xO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},xO.apply(this,arguments)}function jO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var EO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=jO(e,["color","size"]);return r.createElement("svg",xO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"12",cy:"7",r:"4"}))}));EO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},EO.displayName="User";var kO=EO;function PO(){return PO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},PO.apply(this,arguments)}function zO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var SO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=zO(e,["color","size"]);return r.createElement("svg",PO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),r.createElement("circle",{cx:"9",cy:"7",r:"4"}),r.createElement("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),r.createElement("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"}))}));SO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},SO.displayName="Users";var LO=SO;function CO(){return CO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},CO.apply(this,arguments)}function TO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var NO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=TO(e,["color","size"]);return r.createElement("svg",CO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));NO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},NO.displayName="VideoOff";var MO=NO;function IO(){return IO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},IO.apply(this,arguments)}function BO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var WO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=BO(e,["color","size"]);return r.createElement("svg",IO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"23 7 16 12 23 17 23 7"}),r.createElement("rect",{x:"1",y:"5",width:"15",height:"14",rx:"2",ry:"2"}))}));WO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},WO.displayName="Video";var AO=WO;function HO(){return HO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},HO.apply(this,arguments)}function _O(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var VO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=_O(e,["color","size"]);return r.createElement("svg",HO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"5.5",cy:"11.5",r:"4.5"}),r.createElement("circle",{cx:"18.5",cy:"11.5",r:"4.5"}),r.createElement("line",{x1:"5.5",y1:"16",x2:"18.5",y2:"16"}))}));VO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},VO.displayName="Voicemail";var RO=VO;function DO(){return DO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},DO.apply(this,arguments)}function $O(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var FO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=$O(e,["color","size"]);return r.createElement("svg",DO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),r.createElement("path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"}))}));FO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},FO.displayName="Volume1";var UO=FO;function qO(){return qO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},qO.apply(this,arguments)}function ZO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var XO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ZO(e,["color","size"]);return r.createElement("svg",qO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),r.createElement("path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"}))}));XO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},XO.displayName="Volume2";var GO=XO;function YO(){return YO=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},YO.apply(this,arguments)}function JO(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var KO=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=JO(e,["color","size"]);return r.createElement("svg",YO({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),r.createElement("line",{x1:"23",y1:"9",x2:"17",y2:"15"}),r.createElement("line",{x1:"17",y1:"9",x2:"23",y2:"15"}))}));KO.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},KO.displayName="VolumeX";var QO=KO;function eb(){return eb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},eb.apply(this,arguments)}function rb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var tb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=rb(e,["color","size"]);return r.createElement("svg",eb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}))}));tb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},tb.displayName="Volume";var nb=tb;function ob(){return ob=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},ob.apply(this,arguments)}function ib(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var lb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=ib(e,["color","size"]);return r.createElement("svg",ob({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"7"}),r.createElement("polyline",{points:"12 9 12 12 13.5 13.5"}),r.createElement("path",{d:"M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"}))}));lb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},lb.displayName="Watch";var ab=lb;function cb(){return cb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},cb.apply(this,arguments)}function sb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ub=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=sb(e,["color","size"]);return r.createElement("svg",cb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),r.createElement("path",{d:"M16.72 11.06A10.94 10.94 0 0 1 19 12.55"}),r.createElement("path",{d:"M5 12.55a10.94 10.94 0 0 1 5.17-2.39"}),r.createElement("path",{d:"M10.71 5.05A16 16 0 0 1 22.58 9"}),r.createElement("path",{d:"M1.42 9a15.91 15.91 0 0 1 4.7-2.88"}),r.createElement("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),r.createElement("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"}))}));ub.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ub.displayName="WifiOff";var pb=ub;function fb(){return fb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},fb.apply(this,arguments)}function yb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var vb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=yb(e,["color","size"]);return r.createElement("svg",fb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M5 12.55a11 11 0 0 1 14.08 0"}),r.createElement("path",{d:"M1.42 9a16 16 0 0 1 21.16 0"}),r.createElement("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),r.createElement("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"}))}));vb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},vb.displayName="Wifi";var hb=vb;function gb(){return gb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},gb.apply(this,arguments)}function db(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var mb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=db(e,["color","size"]);return r.createElement("svg",gb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"}))}));mb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},mb.displayName="Wind";var Ob=mb;function bb(){return bb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},bb.apply(this,arguments)}function wb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var xb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=wb(e,["color","size"]);return r.createElement("svg",bb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"12",cy:"12",r:"10"}),r.createElement("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),r.createElement("line",{x1:"9",y1:"9",x2:"15",y2:"15"}))}));xb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},xb.displayName="XCircle";var jb=xb;function Eb(){return Eb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Eb.apply(this,arguments)}function kb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Pb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=kb(e,["color","size"]);return r.createElement("svg",Eb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),r.createElement("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),r.createElement("line",{x1:"9",y1:"9",x2:"15",y2:"15"}))}));Pb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Pb.displayName="XOctagon";var zb=Pb;function Sb(){return Sb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Sb.apply(this,arguments)}function Lb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Cb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Lb(e,["color","size"]);return r.createElement("svg",Sb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2",ry:"2"}),r.createElement("line",{x1:"9",y1:"9",x2:"15",y2:"15"}),r.createElement("line",{x1:"15",y1:"9",x2:"9",y2:"15"}))}));Cb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Cb.displayName="XSquare";var Tb=Cb;function Nb(){return Nb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Nb.apply(this,arguments)}function Mb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Ib=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Mb(e,["color","size"]);return r.createElement("svg",Nb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),r.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"}))}));Ib.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Ib.displayName="X";var Bb=Ib;function Wb(){return Wb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Wb.apply(this,arguments)}function Ab(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Hb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ab(e,["color","size"]);return r.createElement("svg",Wb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("path",{d:"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"}),r.createElement("polygon",{points:"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"}))}));Hb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Hb.displayName="Youtube";var _b=Hb;function Vb(){return Vb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Vb.apply(this,arguments)}function Rb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Db=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Rb(e,["color","size"]);return r.createElement("svg",Vb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polyline",{points:"12.41 6.75 13 2 10.57 4.92"}),r.createElement("polyline",{points:"18.57 12.91 21 10 15.66 10"}),r.createElement("polyline",{points:"8 8 3 14 12 14 11 22 16 16"}),r.createElement("line",{x1:"1",y1:"1",x2:"23",y2:"23"}))}));Db.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Db.displayName="ZapOff";var $b=Db;function Fb(){return Fb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Fb.apply(this,arguments)}function Ub(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var qb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Ub(e,["color","size"]);return r.createElement("svg",Fb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"}))}));qb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},qb.displayName="Zap";var Zb=qb;function Xb(){return Xb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Xb.apply(this,arguments)}function Gb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var Yb=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Gb(e,["color","size"]);return r.createElement("svg",Xb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"11",cy:"11",r:"8"}),r.createElement("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),r.createElement("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),r.createElement("line",{x1:"8",y1:"11",x2:"14",y2:"11"}))}));Yb.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},Yb.displayName="ZoomIn";var Jb=Yb;function Kb(){return Kb=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},Kb.apply(this,arguments)}function Qb(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||(o[t]=e[t]);return o}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.indexOf(t)>=0||Object.prototype.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}var ew=t((function(e,t){var n=e.color,o=void 0===n?"currentColor":n,i=e.size,l=void 0===i?24:i,a=Qb(e,["color","size"]);return r.createElement("svg",Kb({ref:t,xmlns:"http://www.w3.org/2000/svg",width:l,height:l,viewBox:"0 0 24 24",fill:"none",stroke:o,strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},a),r.createElement("circle",{cx:"11",cy:"11",r:"8"}),r.createElement("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),r.createElement("line",{x1:"8",y1:"11",x2:"14",y2:"11"}))}));ew.propTypes={color:D.string,size:D.oneOfType([D.string,D.number])},ew.displayName="ZoomOut";var rw=ew,tw=Object.freeze({__proto__:null,Activity:q,Airplay:Y,AlertCircle:ee,AlertOctagon:oe,AlertTriangle:ce,AlignCenter:fe,AlignJustify:ge,AlignLeft:be,AlignRight:Ee,Anchor:Se,Aperture:Ne,Archive:We,ArrowDown:Ke,ArrowDownCircle:Ve,ArrowDownLeft:Fe,ArrowDownRight:Xe,ArrowLeft:lr,ArrowLeftCircle:tr,ArrowRight:vr,ArrowRightCircle:ur,ArrowUp:Cr,ArrowUpCircle:mr,ArrowUpLeft:xr,ArrowUpRight:Pr,AtSign:Ir,Award:Hr,BarChart:qr,BarChart2:Dr,Battery:et,BatteryCharging:Yr,Bell:ct,BellOff:ot,Bluetooth:ft,Bold:gt,Book:Et,BookOpen:bt,Bookmark:St,Box:Nt,Briefcase:Wt,Calendar:Vt,Camera:Xt,CameraOff:Ft,Cast:Kt,Check:pn,CheckCircle:tn,CheckSquare:an,ChevronDown:vn,ChevronLeft:dn,ChevronRight:bn,ChevronUp:jn,ChevronsDown:zn,ChevronsLeft:Tn,ChevronsRight:Bn,ChevronsUp:_n,Chrome:$n,Circle:Zn,Clipboard:Jn,Clock:ro,Cloud:Po,CloudDrizzle:io,CloudLightning:so,CloudOff:yo,CloudRain:mo,CloudSnow:xo,Code:Co,Codepen:Io,Codesandbox:Ho,Coffee:Do,Columns:qo,Command:Yo,Compass:ei,Copy:oi,CornerDownLeft:ci,CornerDownRight:fi,CornerLeftDown:gi,CornerLeftUp:bi,CornerRightDown:Ei,CornerRightUp:Si,CornerUpLeft:Ni,CornerUpRight:Wi,Cpu:Vi,CreditCard:Fi,Crop:Xi,Crosshair:Ki,Database:tl,Delete:ll,Disc:ul,Divide:xl,DivideCircle:vl,DivideSquare:ml,DollarSign:Pl,Download:Il,DownloadCloud:Cl,Dribbble:Hl,Droplet:Dl,Edit:ea,Edit2:ql,Edit3:Yl,ExternalLink:oa,Eye:fa,EyeOff:ca,Facebook:ga,FastForward:ba,Feather:Ea,Figma:Sa,File:Fa,FileMinus:Na,FilePlus:Wa,FileText:Va,Film:Xa,Filter:Ka,Flag:tc,Folder:vc,FolderMinus:lc,FolderPlus:uc,Framer:mc,Frown:xc,Gift:Pc,GitBranch:Cc,GitCommit:Ic,GitHub:qc,GitMerge:Hc,GitPullRequest:Dc,Gitlab:Yc,Globe:es,Grid:os,HardDrive:cs,Hash:fs,Headphones:gs,Heart:bs,HelpCircle:Es,Hexagon:Ss,Home:Ns,Image:Ws,Inbox:Vs,Info:Fs,Instagram:Xs,Italic:Ks,Key:tu,Layers:lu,Layout:uu,LifeBuoy:vu,Link:xu,Link2:mu,Linkedin:Pu,List:Cu,Loader:Iu,Lock:Hu,LogIn:Du,LogOut:qu,Mail:Yu,Map:op,MapPin:ep,Maximize:fp,Maximize2:cp,Meh:gp,Menu:bp,MessageCircle:Ep,MessageSquare:Sp,Mic:Wp,MicOff:Np,Minimize:Fp,Minimize2:Vp,Minus:tf,MinusCircle:Xp,MinusSquare:Kp,Monitor:af,Moon:pf,MoreHorizontal:hf,MoreVertical:Of,MousePointer:jf,Move:zf,Music:Tf,Navigation:_f,Navigation2:Bf,Octagon:$f,Package:Zf,Paperclip:Jf,Pause:iy,PauseCircle:ry,PenTool:sy,Percent:yy,Phone:Ry,PhoneCall:dy,PhoneForwarded:wy,PhoneIncoming:ky,PhoneMissed:Ly,PhoneOff:My,PhoneOutgoing:Ay,PieChart:Uy,Play:Qy,PlayCircle:Gy,Plus:pv,PlusCircle:nv,PlusSquare:av,Pocket:hv,Power:Ov,Printer:jv,Radio:zv,RefreshCcw:Tv,RefreshCw:Bv,Repeat:_v,Rewind:$v,RotateCcw:Zv,RotateCw:Jv,Rss:rh,Save:ih,Scissors:sh,Search:yh,Send:dh,Server:wh,Settings:kh,Share:Mh,Share2:Lh,Shield:Rh,ShieldOff:Ah,ShoppingBag:Uh,ShoppingCart:Gh,Shuffle:Qh,Sidebar:ng,SkipBack:ag,SkipForward:pg,Slack:hg,Slash:Og,Sliders:jg,Smartphone:zg,Smile:Tg,Speaker:Bg,Square:_g,Star:$g,StopCircle:Zg,Sun:Jg,Sunrise:rd,Sunset:id,Table:sd,Tablet:yd,Tag:dd,Target:wd,Terminal:kd,Thermometer:Ld,ThumbsDown:Md,ThumbsUp:Ad,ToggleLeft:Rd,ToggleRight:Ud,Tool:Gd,Trash:nm,Trash2:Qd,Trello:am,TrendingDown:pm,TrendingUp:hm,Triangle:Om,Truck:jm,Tv:zm,Twitch:Tm,Twitter:Bm,Type:_m,Umbrella:$m,Underline:Zm,Unlock:Jm,Upload:iO,UploadCloud:rO,User:kO,UserCheck:sO,UserMinus:yO,UserPlus:dO,UserX:wO,Users:LO,Video:AO,VideoOff:MO,Voicemail:RO,Volume:nb,Volume1:UO,Volume2:GO,VolumeX:QO,Watch:ab,Wifi:hb,WifiOff:pb,Wind:Ob,X:Bb,XCircle:jb,XOctagon:zb,XSquare:Tb,Youtube:_b,Zap:Zb,ZapOff:$b,ZoomIn:Jb,ZoomOut:rw});const nw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{d:"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10zM5 19L19 5",stroke:t,strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"}))));nw.displayName="DisableIcon";const ow=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{d:"M14.12 14.12a2.998 2.998 0 01-5.194-2.098A3 3 0 019.88 9.88m8.06 8.06A10.07 10.07 0 0112 20c-7 0-11-8-11-8a18.45 18.45 0 015.06-5.94l11.88 11.88zM9.9 4.24A9.12 9.12 0 0112 4c7 0 11 8 11 8a18.494 18.494 0 01-2.16 3.19L9.9 4.24zM1 1l22 22",stroke:t,strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"}))));ow.displayName="HideIcon";const iw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22.5 12c0 5.799-4.701 10.5-10.5 10.5S1.5 17.799 1.5 12 6.201 1.5 12 1.5 22.5 6.201 22.5 12zm-10.75-2a.75.75 0 01.75.75v6.5a.75.75 0 01-1.5 0v-6.5a.75.75 0 01.75-.75zm.75-2.25a.75.75 0 00-1.5 0v.5a.75.75 0 001.5 0v-.5z",fill:t}))));iw.displayName="InfoIcon";const lw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22.5 12c0 5.799-4.701 10.5-10.5 10.5S1.5 17.799 1.5 12 6.201 1.5 12 1.5 22.5 6.201 22.5 12zM11.75 7a.75.75 0 01.75.75v6.5a.75.75 0 01-1.5 0v-6.5a.75.75 0 01.75-.75zm.75 9.75a.75.75 0 00-1.5 0v.5a.75.75 0 001.5 0v-.5z",fill:t}))));lw.displayName="WarningIcon";const aw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22.5 12c0 5.799-4.701 10.5-10.5 10.5S1.5 17.799 1.5 12 6.201 1.5 12 1.5 22.5 6.201 22.5 12zm-7.97-2.53a.75.75 0 010 1.06L13.06 12l1.47 1.47a.75.75 0 11-1.06 1.06L12 13.06l-1.47 1.47a.75.75 0 11-1.06-1.06L10.94 12l-1.47-1.47a.75.75 0 111.06-1.06L12 10.94l1.47-1.47a.75.75 0 011.06 0z",fill:t}))));aw.displayName="ErrorIcon";const cw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{d:"M8 22H6a2 2 0 01-2-2V4a2 2 0 012-2h8l6 6v12a2 2 0 01-2 2h-2",stroke:t,strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14 2v6h6M12 13v9M16 17l-4-4-4 4",stroke:t,strokeWidth:1.5,strokeLinecap:"round",strokeLinejoin:"round"}))));cw.displayName="UploadIcon";const sw=n((({size:e=24,color:t="#474747",className:n})=>r.createElement("svg",{width:e,height:e,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("g",null,r.createElement("path",{d:"M17.1875 16.3281H2.8125C2.4668 16.3281 2.1875 16.6074 2.1875 16.9531V17.6562C2.1875 17.7422 2.25781 17.8125 2.34375 17.8125H17.6562C17.7422 17.8125 17.8125 17.7422 17.8125 17.6562V16.9531C17.8125 16.6074 17.5332 16.3281 17.1875 16.3281ZM5.0332 14.6875C5.07227 14.6875 5.11133 14.6836 5.15039 14.6777L8.43555 14.1016C8.47461 14.0938 8.51172 14.0762 8.53906 14.0469L16.8184 5.76758C16.8365 5.74951 16.8508 5.72805 16.8606 5.70442C16.8704 5.68079 16.8755 5.65546 16.8755 5.62988C16.8755 5.6043 16.8704 5.57897 16.8606 5.55535C16.8508 5.53172 16.8365 5.51026 16.8184 5.49219L13.5723 2.24414C13.5352 2.20703 13.4863 2.1875 13.4336 2.1875C13.3809 2.1875 13.332 2.20703 13.2949 2.24414L5.01562 10.5234C4.98633 10.5527 4.96875 10.5879 4.96094 10.627L4.38477 13.9121C4.36577 14.0167 4.37255 14.1244 4.40454 14.2258C4.43654 14.3273 4.49276 14.4193 4.56836 14.4941C4.69727 14.6191 4.85938 14.6875 5.0332 14.6875Z",fill:t})))));sw.displayName="EditFilledIcon";const uw=n((({size:e=24,color:t="#525252",className:n})=>r.createElement("svg",{width:e,height:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{d:"M8 22H6C5.46957 22 4.96086 21.7893 4.58579 21.4142C4.21071 21.0391 4 20.5304 4 20V4C4 3.46957 4.21071 2.96086 4.58579 2.58579C4.96086 2.21071 5.46957 2 6 2H14L20 8V20C20 20.5304 19.7893 21.0391 19.4142 21.4142C19.0391 21.7893 18.5304 22 18 22H16",stroke:t,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14 2V8H20",stroke:t,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M12 13V22",stroke:t,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M16 17L12 13L8 17",stroke:t,strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))));uw.displayName="FileUploadIcon";const pw=n((({size:e=24,className:t})=>r.createElement("svg",{width:e,height:e,viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t},r.createElement("path",{d:"M22.3905 2.33398H8.99992C8.63172 2.33398 8.33325 2.63245 8.33325 3.00065V29.0006C8.33325 29.3688 8.63172 29.6673 8.99992 29.6673H28.3333C28.7015 29.6673 28.9999 29.3688 28.9999 29.0006V8.94345C28.9999 8.76665 28.9297 8.59708 28.8047 8.47205L22.8619 2.52925C22.7368 2.40422 22.5673 2.33398 22.3905 2.33398Z",fill:"white",stroke:"#979593",strokeWidth:"1.27869",strokeMiterlimit:"10"}),r.createElement("path",{d:"M22.3333 2.33398V8.33398C22.3333 8.70218 22.6317 9.00065 22.9999 9.00065H28.9999",stroke:"#979593",strokeWidth:"1.27869",strokeMiterlimit:"10"}),r.createElement("path",{d:"M17.0001 20.3327H13.6667V19.666H17.0001C17.1842 19.666 17.3334 19.8152 17.3334 19.9993C17.3334 20.1834 17.1842 20.3327 17.0001 20.3327ZM17.0001 18.3327H13.6667V17.666H17.0001C17.1842 17.666 17.3334 17.8152 17.3334 17.9993C17.3334 18.1834 17.1842 18.3327 17.0001 18.3327ZM17.0001 16.3327H13.6667V15.666H17.0001C17.1842 15.666 17.3334 15.8152 17.3334 15.9993C17.3334 16.1834 17.1842 16.3327 17.0001 16.3327ZM17.0001 14.3327H13.6667V13.666H17.0001C17.1842 13.666 17.3334 13.8152 17.3334 13.9993C17.3334 14.1834 17.1842 14.3327 17.0001 14.3327ZM17.0001 22.3327H13.6667V21.666H17.0001C17.1842 21.666 17.3334 21.8152 17.3334 21.9993C17.3334 22.1834 17.1842 22.3327 17.0001 22.3327ZM26.3334 20.3327H23.0001C22.816 20.3327 22.6667 20.1834 22.6667 19.9993C22.6667 19.8152 22.816 19.666 23.0001 19.666H26.3334C26.5175 19.666 26.6667 19.8152 26.6667 19.9993C26.6667 20.1834 26.5175 20.3327 26.3334 20.3327ZM26.3334 22.3327H23.0001C22.816 22.3327 22.6667 22.1834 22.6667 21.9993C22.6667 21.8152 22.816 21.666 23.0001 21.666H26.3334C26.5175 21.666 26.6667 21.8152 26.6667 21.9993C26.6667 22.1834 26.5175 22.3327 26.3334 22.3327ZM26.3334 18.3327H23.0001C22.816 18.3327 22.6667 18.1834 22.6667 17.9993C22.6667 17.8152 22.816 17.666 23.0001 17.666H26.3334C26.5175 17.666 26.6667 17.8152 26.6667 17.9993C26.6667 18.1834 26.5175 18.3327 26.3334 18.3327ZM26.3334 16.3327H23.0001C22.816 16.3327 22.6667 16.1834 22.6667 15.9993C22.6667 15.8152 22.816 15.666 23.0001 15.666H26.3334C26.5175 15.666 26.6667 15.8152 26.6667 15.9993C26.6667 16.1834 26.5175 16.3327 26.3334 16.3327ZM26.3334 14.3327H23.0001C22.816 14.3327 22.6667 14.1834 22.6667 13.9993C22.6667 13.8152 22.816 13.666 23.0001 13.666H26.3334C26.5175 13.666 26.6667 13.8152 26.6667 13.9993C26.6667 14.1834 26.5175 14.3327 26.3334 14.3327ZM21.6667 20.3327H18.3334C18.1493 20.3327 18.0001 20.1834 18.0001 19.9993C18.0001 19.8152 18.1493 19.666 18.3334 19.666H21.6667C21.8508 19.666 22.0001 19.8152 22.0001 19.9993C22.0001 20.1834 21.8508 20.3327 21.6667 20.3327ZM21.6667 22.3327H18.3334C18.1493 22.3327 18.0001 22.1834 18.0001 21.9993C18.0001 21.8152 18.1493 21.666 18.3334 21.666H21.6667C21.8508 21.666 22.0001 21.8152 22.0001 21.9993C22.0001 22.1834 21.8508 22.3327 21.6667 22.3327ZM21.6667 18.3327H18.3334C18.1493 18.3327 18.0001 18.1834 18.0001 17.9993C18.0001 17.8152 18.1493 17.666 18.3334 17.666H21.6667C21.8508 17.666 22.0001 17.8152 22.0001 17.9993C22.0001 18.1834 21.8508 18.3327 21.6667 18.3327ZM21.6667 16.3327H18.3334C18.1493 16.3327 18.0001 16.1834 18.0001 15.9993C18.0001 15.8152 18.1493 15.666 18.3334 15.666H21.6667C21.8508 15.666 22.0001 15.8152 22.0001 15.9993C22.0001 16.1834 21.8508 16.3327 21.6667 16.3327ZM21.6667 14.3327H18.3334C18.1493 14.3327 18.0001 14.1834 18.0001 13.9993C18.0001 13.8152 18.1493 13.666 18.3334 13.666H21.6667C21.8508 13.666 22.0001 13.8152 22.0001 13.9993C22.0001 14.1834 21.8508 14.3327 21.6667 14.3327Z",fill:"#C8C6C4"}),r.createElement("path",{d:"M4.00008 24.6673H14.6667C15.4031 24.6673 16.0001 24.0704 16.0001 23.334V12.6673C16.0001 11.931 15.4031 11.334 14.6667 11.334H4.00008C3.26371 11.334 2.66675 11.931 2.66675 12.6673V23.334C2.66675 24.0704 3.26371 24.6673 4.00008 24.6673Z",fill:"#107C41"}),r.createElement("path",{d:"M5.64966 22L8.27792 17.9888L5.87069 14H7.80786L9.12199 16.5495C9.24276 16.7913 9.32576 16.9718 9.37102 17.0907H9.38796C9.47519 16.8974 9.56569 16.7095 9.66009 16.5274L11.0647 14H12.843L10.3736 17.9667L12.9055 22H11.0136L9.49569 19.1994C9.43156 19.0956 9.37102 18.9708 9.31439 18.8256H9.29192C9.26556 18.9151 9.20696 19.0359 9.11646 19.1882L7.55299 22H5.64966Z",fill:"white"}))));pw.displayName="ExcelFileIcon";const fw=n((({size:e=24,color:t="#6E6CC4",className:n})=>r.createElement("svg",{viewBox:"0 0 24 24",width:e,height:e,fill:"none",xmlns:"http://www.w3.org/2000/svg",className:n},r.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 22.5c5.799 0 10.5-4.701 10.5-10.5S17.799 1.5 12 1.5 1.5 6.201 1.5 12 6.201 22.5 12 22.5zm3.522-11.962a.75.75 0 10-1.044-1.076l-3.603 3.493-1.353-1.312a.75.75 0 10-1.044 1.077l1.875 1.818a.75.75 0 001.044 0l4.125-4z",fill:t}))));fw.displayName="SuccessIcon";const yw=n((({size:e=24,className:t})=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:e,height:e,fill:"none",viewBox:"0 0 16 16",className:t},r.createElement("path",{fill:"url(#likepaint0_linear)",d:"M8 0C5.87827 0 3.84344 0.842855 2.34315 2.34315C0.842855 3.84344 0 5.87827 0 8C0 10.1217 0.842855 12.1566 2.34315 13.6569C3.84344 15.1571 5.87827 16 8 16C10.1217 16 12.1566 15.1571 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0V0Z"}),r.createElement("path",{fill:"#fff",d:"M12.162 7.338C12.338 7.461 12.5 7.583 12.5 8.012C12.5 8.442 12.271 8.616 12.026 8.737C12.1261 8.90028 12.1581 9.09637 12.115 9.283C12.038 9.627 11.723 9.894 11.443 9.973C11.564 10.167 11.602 10.358 11.458 10.593C11.273 10.888 11.112 11 10.4 11H7.5C6.512 11 6 10.454 6 10V7.665C6 6.435 7.467 5.39 7.467 4.535L7.361 3.47C7.356 3.405 7.369 3.246 7.419 3.2C7.499 3.121 7.72 3 8.054 3C8.272 3 8.417 3.041 8.588 3.123C9.169 3.4 9.32 4.101 9.32 4.665C9.32 4.936 8.906 5.748 8.85 6.029C8.85 6.029 9.717 5.837 10.729 5.83C11.79 5.824 12.478 6.02 12.478 6.672C12.478 6.933 12.259 7.195 12.162 7.338V7.338ZM3.6 7H4.4C4.55913 7 4.71174 7.06321 4.82426 7.17574C4.93679 7.28826 5 7.44087 5 7.6V11.4C5 11.5591 4.93679 11.7117 4.82426 11.8243C4.71174 11.9368 4.55913 12 4.4 12H3.6C3.44087 12 3.28826 11.9368 3.17574 11.8243C3.06321 11.7117 3 11.5591 3 11.4V7.6C3 7.44087 3.06321 7.28826 3.17574 7.17574C3.28826 7.06321 3.44087 7 3.6 7V7Z"}),r.createElement("defs",null,r.createElement("linearGradient",{id:"likepaint0_linear",x1:"8",x2:"8",y2:"16",gradientUnits:"userSpaceOnUse"},r.createElement("stop",{stopColor:"#18AFFF"}),r.createElement("stop",{offset:"1",stopColor:"#0062DF"}))))));yw.displayName="FBLikeIcon";const vw=n((({size:e=24,className:t})=>r.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:e,height:e,fill:"none",viewBox:"0 0 16 16",className:t},r.createElement("path",{fill:"url(#lovepaint0_linear)",d:"M8 0C5.87827 0 3.84344 0.842855 2.34315 2.34315C0.842855 3.84344 0 5.87827 0 8C0 10.1217 0.842855 12.1566 2.34315 13.6569C3.84344 15.1571 5.87827 16 8 16C10.1217 16 12.1566 15.1571 13.6569 13.6569C15.1571 12.1566 16 10.1217 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0V0Z"}),r.createElement("path",{fill:"#fff",d:"M10.4732 4C8.27523 4 8.00023 5.824 8.00023 5.824C8.00023 5.824 7.72623 4 5.52823 4C3.41423 4 2.79823 6.222 3.05623 7.41C3.73623 10.55 8.00023 12.75 8.00023 12.75C8.00023 12.75 12.2652 10.55 12.9452 7.41C13.2022 6.222 12.5852 4 10.4732 4Z"}),r.createElement("defs",null,r.createElement("linearGradient",{id:"lovepaint0_linear",x1:"8",x2:"8",y2:"16",gradientUnits:"userSpaceOnUse"},r.createElement("stop",{stopColor:"#FF6680"}),r.createElement("stop",{offset:"1",stopColor:"#E61739"}))))));vw.displayName="FBLoveIcon";var hw=Object.freeze({__proto__:null,Disable:nw,EditFilled:sw,Error:aw,ExcelFile:pw,FBLike:yw,FBLove:vw,FileUpload:uw,Hide:ow,Info:iw,Success:fw,Upload:cw,Warning:lw});const gw=({name:e="Umbrella",color:t="#858585",size:n=20,strokeWidth:o=1.5,className:i,...l})=>{const a=tw[e]??hw[e];return r.createElement(a,{color:t,size:n,strokeWidth:o,className:i,...l})},dw=r.forwardRef((({id:e,disabled:t,dataTestId:n,checked:o,...i},l)=>r.createElement("input",{type:"checkbox",id:e,ref:l,disabled:t,"data-testid":n,checked:o,...i,className:"absolute h-0 w-0 opacity-0"})));dw.displayName="CheckboxInput";const mw=({size:e,state:t,disabled:n})=>{const o="small"===e?"h-2.5 w-2.5":"h-4 w-4",i=n?"cursor-not-allowed opacity-50":"cursor-pointer group-hover:border-blue-500 group-hover:bg-blue-100";return r.createElement("span",{className:`absolute ${o} rounded ${{unChecked:"border-gray-400 bg-white border",hover:"border-blue-500 bg-blue-100 border",checked:"border-blue-500 border",indeterminate:"border-gray-400 bg-gray-200 border"}[t]} ${i} flex items-center justify-center`})},Ow=({size:e,state:t,disabled:n})=>{const o="small"===e?"h-2 w-2":"h-3 w-3",i="small"===e?2:3;return r.createElement(gw,{name:"Check",className:`absolute ${o} ${"checked"===t?"text-white":"hidden"} ${n?"opacity-50":""}`,style:{strokeWidth:i}})},bw=r.forwardRef((({checkboxSize:e="normal",className:t,dataTestId:n,disabled:l,checked:a,marginRight:c,marginLeft:s,onChange:u,...p},f)=>{const y=`checkbox-${n||Math.random().toString(36).substr(2,9)}`,[v,h]=o(a);i((()=>{h(a)}),[a]);return r.createElement("label",{htmlFor:y,className:`inline-flex relative items-center justify-center ${l?"cursor-not-allowed":"cursor-pointer group"} ${t} ${c?{small:"mr-2",medium:"mr-4",large:"mr-6"}[c]:""} ${s?{small:"ml-2",medium:"ml-4",large:"ml-6"}[s]:""}`},r.createElement(dw,{...p,ref:f,id:y,dataTestId:n,disabled:l,checked:v,onChange:e=>{l||(h(!v),u&&u(e))}}),r.createElement(mw,{size:e,state:v?"checked":"unChecked",disabled:l}),r.createElement(Ow,{size:e,state:v?"checked":"unChecked",disabled:l}))}));bw.displayName="Checkbox";var ww,xw={exports:{}};
15
+ /*!
16
+ Copyright (c) 2018 Jed Watson.
17
+ Licensed under the MIT License (MIT), see
18
+ http://jedwatson.github.io/classnames
19
+ */ww=xw,function(){var e={}.hasOwnProperty;function r(){for(var e="",r=0;r<arguments.length;r++){var o=arguments[r];o&&(e=n(e,t(o)))}return e}function t(t){if("string"==typeof t||"number"==typeof t)return t;if("object"!=typeof t)return"";if(Array.isArray(t))return r.apply(null,t);if(t.toString!==Object.prototype.toString&&!t.toString.toString().includes("[native code]"))return t.toString();var o="";for(var i in t)e.call(t,i)&&t[i]&&(o=n(o,i));return o}function n(e,r){return r?e?e+" "+r:e+r:e}ww.exports?(r.default=r,ww.exports=r):window.classNames=r}();var jw=d(xw.exports);const Ew={extraSmall:"mt-1 mb-1",small:"mt-2 mb-2",medium:"mt-4 mb-4",large:"mt-6 mb-6",extraLarge:"mt-8 mb-8"},kw={tight:"tracking-tight",normal:"tracking-normal",wide:"tracking-wide",wider:"tracking-wider",widest:"tracking-widest"},Pw={h1:"text-4xl",h2:"text-3xl",h3:"text-2xl",h4:"text-xl",h5:"text-lg",h6:"text-base"},zw={primary:"text-blue-500",secondary:"text-green-500",tertiary:"text-red-500",quaternary:"text-yellow-500",quinary:"text-gray-500",white:"text-white"},Sw={normal:"font-normal",bold:"font-bold",semibold:"font-semibold",light:"font-light"},Lw=({variant:e="h1",color:t="primary",marginTop:n,marginBottom:o,letterSpacing:i,textAlign:l="text-left",fontWeight:a="normal",children:c,...s})=>{const u=jw(Pw[e],zw[t],Sw[a],n?Ew[n]:"",o?Ew[o]:"",i?kw[i]:"",l);return r.createElement(e,{className:u,...s},c)},Cw={body:"text-base",paragraph:"text-lg",caption:"text-sm",small:"text-xs",regular:"text-base",paragraphSm:"text-md",captionSm:"text-xs"},Tw=({variant:e,color:t="primary",marginTop:n,marginBottom:o,letterSpacing:i,textAlign:l="text-left",fontWeight:a="normal",children:c,...s})=>{const u=jw(Cw[e],zw[t],Sw[a],n?Ew[n]:"",o?Ew[o]:"",i?kw[i]:"",l);return r.createElement("p",{className:u,...s},c)},Nw=({value:e,fluid:t,label:n,leftIcon:i,rightIcon:a,togglePassword:c,error:s,success:u,hint:p,disabled:f,type:y="text",hintTextProps:v={variant:"small"},className:h="",dataTestId:g,inputSize:d,...m})=>{const[O,b]=o(!1),w=l((()=>O?r.createElement(gw,{name:"EyeOff",size:16}):r.createElement(gw,{name:"Eye",size:16})),[O]),x=l((()=>{let r="relative flex items-center p-1 rounded border";return r+=f?" bg-gray-100 text-gray-500":s?" border-red-500 text-red-500":u?" border-green-500 text-green-500":e?" border-primary-500":" border-gray-300",t&&(r+=" w-full"),`${r} ${h}`}),[f,s,u,e,t,h]),j=`peer w-full outline-none bg-transparent placeholder-transparent ${f?"text-gray-500":"text-gray-700"} ${"password"===y?"pr-10":""}`,E=l((()=>"password"===y&&O?"text":y),[y,O]),k="absolute left-2 bg-white px-1 "+(e?"-top-4 text-sm text-gray-400":"transform transition-all duration-200 ease-in-out peer-placeholder-shown:top-1/2 peer-placeholder-shown:-translate-y-1/2 peer-placeholder-shown:left-2 peer-placeholder-shown:text-base peer-placeholder-shown:text-gray-400 peer-focus:-top-custom-top peer-focus:left-2 peer-focus:text-sm peer-focus:text-primary-500");return r.createElement("div",{className:x},i&&r.createElement("div",{className:"flex items-center mr-2"},i),r.createElement("div",{className:"relative w-full"},r.createElement("input",{...m,"data-test-id":g,id:m.id,value:e,disabled:f,type:E,className:j,placeholder:" "}),r.createElement("label",{htmlFor:m.id,className:k},n)),"password"===y&&c&&r.createElement("button",{type:"button",className:"absolute right-3",onClick:()=>{!f&&e&&b(!O)},disabled:f},w),a&&r.createElement("div",{className:"flex items-center ml-2"},a),(s||u||p)&&r.createElement("div",{className:"mt-1 text-sm"},r.createElement(Tw,{...v},s?.message&&s.message,u?.message&&!s?.message&&u.message,!(s?.message||u?.message)&&p?.message)))},Mw=({id:e,destroy:t,title:n,variant:l,duration:a=5e3,animationDuration:c=300,icon:s,dataTestId:u})=>{const[p,f]=o(!1);i((()=>{const e=setTimeout((()=>{f(!0),setTimeout((()=>{t()}),c)}),a);return()=>clearTimeout(e)}),[t,a,c]);return r.createElement("div",{id:e??`${l}-${n}`,className:`flex items-center justify-center pointer-events-auto p-4 rounded-md ${{success:"bg-green-600 text-white",error:"bg-red-500 text-white",warning:"bg-yellow-400 text-gray-800",info:"bg-gray-200 text-gray-600"}[l]} ${p?"animate-slide-out":"animate-slide-in"}`,"data-test-id":u,style:{transition:`all ${c}ms ease-out`}},s&&r.createElement("div",{className:"mr-2 flex"},s),r.createElement("h1",{className:"font-semibold text-base m-0 leading-5"},n))};var Iw;!function(e){e.Success="success",e.Error="error",e.Warning="warning",e.Info="info"}(Iw||(Iw={}));const Bw=new class{isSetup=!1;containerRef;root;messages=[];constructor(){try{window&&document&&this.setup()}catch(e){console.error("Error during setup:",e)}}setup(){const e=document.getElementsByTagName("body")[0],r=document.createElement("div");r.id="message-container-main",e.appendChild(r),this.containerRef=r,this.containerRef&&(this.root=f(this.containerRef)),this.isSetup=!0}show(e){this.isSetup||this.setup();const r=Math.random().toString().substr(2,9),t={id:r,...e,destroy:()=>this.destroy(e.id??r)};this.messages=[t,...this.messages],this.render()}destroy(e){this.messages=this.messages.filter((r=>r.id!==e)),this.render()}success(e){this.show({icon:r.createElement(fw,{size:18,color:"#fff"}),...e,variant:Iw.Success})}error(e){this.show({icon:r.createElement(aw,{size:18,color:"#fff"}),...e,variant:Iw.Error})}warning(e){this.show({icon:r.createElement(lw,{size:18}),...e,variant:Iw.Warning})}info(e){this.show({icon:r.createElement(iw,{size:18}),...e,variant:Iw.Info})}render(){const e=this.messages.map((e=>r.createElement(Mw,{key:e.id,...e})));this.root&&this.root.render(r.createElement("div",{className:"fixed flex flex-col-reverse items-center justify-center top-0 left-0 right-0 z-[9999] pointer-events-none"},e))}};var Ww;!function(e){e.Left="left",e.Center="center",e.Right="right"}(Ww||(Ww={}));const Aw=({columns:e,data:t,sortable:n=!1,pagination:a=!1,currentPage:c=1,pageSize:s=5,onSort:u,onPageChange:p})=>{const[f,y]=o(null),[v,h]=o(c),[g,d]=o(s);i((()=>{h(c)}),[c]);const m=l((()=>f&&n?[...t].sort(((e,r)=>{const t=e[f.key],n=r[f.key];return t<n?"asc"===f.direction?-1:1:t>n?"asc"===f.direction?1:-1:0})):t),[t,f,n]),O=l((()=>Math.max(1,Math.ceil(t.length/g))),[t.length,g]),b=l((()=>{if(a){const e=(v-1)*g;return m.slice(e,e+g)}return m}),[m,v,g,a]),w=e=>{e<1||e>O||(h(e),p&&p(e))},x=(e=Ww.Left)=>({left:"justify-start",center:"justify-center",right:"justify-end"}[e]);return r.createElement("div",{className:"w-full"},r.createElement("div",{className:"flex justify-end mb-4"},r.createElement("label",{htmlFor:"page-size-select",className:"mr-2 flex items-center"},"Page Size:"),r.createElement("select",{id:"page-size-select",value:g,onChange:e=>{return r=parseInt(e.target.value),d(r),void h(1);var r},className:"border rounded px-2 py-1"},[5,10,20,50].map((e=>r.createElement("option",{key:e,value:e},e))))),r.createElement("div",{className:"overflow-x-auto"},r.createElement("div",{className:"table-wrapper",style:{overflow:"hidden"}},r.createElement("table",{className:"min-w-full bg-white"},r.createElement("thead",null,r.createElement("tr",null,e.map((e=>r.createElement("th",{key:e.key,className:`p-4 font-semibold border-b ${x(e.align)}`,style:{width:e.width||"150px"},onClick:()=>(e=>{if(!n||!e.sortable)return;let r="asc";f?.key===e.key&&"asc"===f.direction&&(r="desc"),y({key:e.key,direction:r}),u&&u(e.key,r)})(e)},r.createElement("div",{className:`flex ${x(e.align)} cursor-pointer select-none`},e.title,n&&e.sortable&&r.createElement(r.Fragment,null,f?.key===e.key?"asc"===f.direction?r.createElement(jn,{className:"w-4 h-4 ml-2"}):r.createElement(vn,{className:"w-4 h-4 ml-2"}):r.createElement(vn,{className:"w-4 h-4 ml-2 opacity-50"})))))))),r.createElement("tbody",{style:{maxHeight:"256px",overflowY:"auto"}},b.length>0?b.map(((t,n)=>r.createElement("tr",{key:n,className:"border-b"},e.map((e=>r.createElement("td",{key:e.key,className:`p-4 ${x(e.align)}`,style:{width:e.width||"150px"}},r.createElement("div",{className:`flex ${x(e.align)}`},t[e.key]))))))):r.createElement("tr",null,r.createElement("td",{colSpan:e.length,className:"p-4 text-center text-gray-500"},"No data available.")))))),a&&r.createElement("div",{className:"flex justify-end items-center p-4 space-x-2"},r.createElement("button",{className:"text-gray-700 disabled:opacity-50",onClick:()=>w(v-1),disabled:1===v},r.createElement(dn,{className:"w-5 h-5"})),r.createElement("span",null,"Page ",v," of ",O),r.createElement("button",{className:"text-gray-700 disabled:opacity-50",onClick:()=>w(v+1),disabled:v===O},r.createElement(bn,{className:"w-5 h-5"}))))};function Hw(r){var t=r.children,n=r.prefixCls,o=r.id,i=r.overlayInnerStyle,l=r.className,a=r.style;return e.createElement("div",{className:jw("".concat(n,"-content"),l),style:a},e.createElement("div",{className:"".concat(n,"-inner"),id:o,role:"tooltip",style:i},"function"==typeof t?t():t))}function _w(){return _w=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},_w.apply(null,arguments)}function Vw(e){return Vw="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Vw(e)}function Rw(e){var r=function(e,r){if("object"!=Vw(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var n=t.call(e,r||"default");if("object"!=Vw(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(e)}(e,"string");return"symbol"==Vw(r)?r:r+""}function Dw(e,r,t){return(r=Rw(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function $w(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function Fw(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?$w(Object(t),!0).forEach((function(r){Dw(e,r,t[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):$w(Object(t)).forEach((function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}))}return e}function Uw(e,r){if(null==e)return{};var t,n,o=function(e,r){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(r.includes(n))continue;t[n]=e[n]}return t}(e,r);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)t=i[n],r.includes(t)||{}.propertyIsEnumerable.call(e,t)&&(o[t]=e[t])}return o}function qw(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=Array(r);t<r;t++)n[t]=e[t];return n}function Zw(e,r){if(e){if("string"==typeof e)return qw(e,r);var t={}.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?qw(e,r):void 0}}function Xw(e,r){return function(e){if(Array.isArray(e))return e}(e)||function(e,r){var t=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var n,o,i,l,a=[],c=!0,s=!1;try{if(i=(t=t.call(e)).next,0===r){if(Object(t)!==t)return;c=!1}else for(;!(c=(n=i.call(t)).done)&&(a.push(n.value),a.length!==r);c=!0);}catch(e){s=!0,o=e}finally{try{if(!c&&null!=t.return&&(l=t.return(),Object(l)!==l))return}finally{if(s)throw o}}return a}}(e,r)||Zw(e,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Gw(){return!("undefined"==typeof window||!window.document||!window.document.createElement)}var Yw={},Jw=[];function Kw(e,r){if("production"!==process.env.NODE_ENV&&!e&&void 0!==console){var t=Jw.reduce((function(e,r){return r(null!=e?e:"","warning")}),r);t&&console.error("Warning: ".concat(t))}}function Qw(e,r){if("production"!==process.env.NODE_ENV&&!e&&void 0!==console){var t=Jw.reduce((function(e,r){return r(null!=e?e:"","note")}),r);t&&console.warn("Note: ".concat(t))}}function ex(e,r,t){r||Yw[t]||(e(!1,t),Yw[t]=!0)}function rx(e,r){ex(Kw,e,r)}rx.preMessage=function(e){Jw.push(e)},rx.resetWarned=function(){Yw={}},rx.noteOnce=function(e,r){ex(Qw,e,r)};var tx,nx={exports:{}},ox={};var ix,lx={};
20
+ /**
21
+ * @license React
22
+ * react-is.development.js
23
+ *
24
+ * Copyright (c) Facebook, Inc. and its affiliates.
25
+ *
26
+ * This source code is licensed under the MIT license found in the
27
+ * LICENSE file in the root directory of this source tree.
28
+ */"production"===process.env.NODE_ENV?nx.exports=function(){if(tx)return ox;tx=1;var e,r=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),a=Symbol.for("react.context"),c=Symbol.for("react.server_context"),s=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),p=Symbol.for("react.suspense_list"),f=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),v=Symbol.for("react.offscreen");function h(e){if("object"==typeof e&&null!==e){var v=e.$$typeof;switch(v){case r:switch(e=e.type){case n:case i:case o:case u:case p:return e;default:switch(e=e&&e.$$typeof){case c:case a:case s:case y:case f:case l:return e;default:return v}}case t:return v}}}return e=Symbol.for("react.module.reference"),ox.ContextConsumer=a,ox.ContextProvider=l,ox.Element=r,ox.ForwardRef=s,ox.Fragment=n,ox.Lazy=y,ox.Memo=f,ox.Portal=t,ox.Profiler=i,ox.StrictMode=o,ox.Suspense=u,ox.SuspenseList=p,ox.isAsyncMode=function(){return!1},ox.isConcurrentMode=function(){return!1},ox.isContextConsumer=function(e){return h(e)===a},ox.isContextProvider=function(e){return h(e)===l},ox.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},ox.isForwardRef=function(e){return h(e)===s},ox.isFragment=function(e){return h(e)===n},ox.isLazy=function(e){return h(e)===y},ox.isMemo=function(e){return h(e)===f},ox.isPortal=function(e){return h(e)===t},ox.isProfiler=function(e){return h(e)===i},ox.isStrictMode=function(e){return h(e)===o},ox.isSuspense=function(e){return h(e)===u},ox.isSuspenseList=function(e){return h(e)===p},ox.isValidElementType=function(r){return"string"==typeof r||"function"==typeof r||r===n||r===i||r===o||r===u||r===p||r===v||"object"==typeof r&&null!==r&&(r.$$typeof===y||r.$$typeof===f||r.$$typeof===l||r.$$typeof===a||r.$$typeof===s||r.$$typeof===e||void 0!==r.getModuleId)},ox.typeOf=h,ox}():nx.exports=(ix||(ix=1,"production"!==process.env.NODE_ENV&&function(){var e,r=Symbol.for("react.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),a=Symbol.for("react.context"),c=Symbol.for("react.server_context"),s=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),p=Symbol.for("react.suspense_list"),f=Symbol.for("react.memo"),y=Symbol.for("react.lazy"),v=Symbol.for("react.offscreen");function h(e){if("object"==typeof e&&null!==e){var v=e.$$typeof;switch(v){case r:var h=e.type;switch(h){case n:case i:case o:case u:case p:return h;default:var g=h&&h.$$typeof;switch(g){case c:case a:case s:case y:case f:case l:return g;default:return v}}case t:return v}}}e=Symbol.for("react.module.reference");var g=a,d=l,m=r,O=s,b=n,w=y,x=f,j=t,E=i,k=o,P=u,z=p,S=!1,L=!1;lx.ContextConsumer=g,lx.ContextProvider=d,lx.Element=m,lx.ForwardRef=O,lx.Fragment=b,lx.Lazy=w,lx.Memo=x,lx.Portal=j,lx.Profiler=E,lx.StrictMode=k,lx.Suspense=P,lx.SuspenseList=z,lx.isAsyncMode=function(e){return S||(S=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1},lx.isConcurrentMode=function(e){return L||(L=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1},lx.isContextConsumer=function(e){return h(e)===a},lx.isContextProvider=function(e){return h(e)===l},lx.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},lx.isForwardRef=function(e){return h(e)===s},lx.isFragment=function(e){return h(e)===n},lx.isLazy=function(e){return h(e)===y},lx.isMemo=function(e){return h(e)===f},lx.isPortal=function(e){return h(e)===t},lx.isProfiler=function(e){return h(e)===i},lx.isStrictMode=function(e){return h(e)===o},lx.isSuspense=function(e){return h(e)===u},lx.isSuspenseList=function(e){return h(e)===p},lx.isValidElementType=function(r){return"string"==typeof r||"function"==typeof r||r===n||r===i||r===o||r===u||r===p||r===v||"object"==typeof r&&null!==r&&(r.$$typeof===y||r.$$typeof===f||r.$$typeof===l||r.$$typeof===a||r.$$typeof===s||r.$$typeof===e||void 0!==r.getModuleId)},lx.typeOf=h}()),lx);var ax=nx.exports;var cx=function(e,r){"function"==typeof e?e(r):"object"===Vw(e)&&e&&"current"in e&&(e.current=r)},sx=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];var n=r.filter(Boolean);return n.length<=1?n[0]:function(e){r.forEach((function(r){cx(r,e)}))}},ux=function(){for(var r=arguments.length,t=new Array(r),n=0;n<r;n++)t[n]=arguments[n];return o=function(){return sx.apply(void 0,t)},i=t,l=function(e,r){return e.length!==r.length||e.every((function(e,t){return e!==r[t]}))},"value"in(a=e.useRef({})).current&&!l(a.current.condition,i)||(a.current.value=o(),a.current.condition=i),a.current.value;var o,i,l,a},px=function(e){var r,t,n=ax.isMemo(e)?e.type.type:e.type;return!!("function"!=typeof n||null!==(r=n.prototype)&&void 0!==r&&r.render||n.$$typeof===ax.ForwardRef)&&!!("function"!=typeof e||null!==(t=e.prototype)&&void 0!==t&&t.render||e.$$typeof===ax.ForwardRef)};Number(a.split(".")[0]);var fx=e.createContext(null);function yx(e){return function(e){if(Array.isArray(e))return qw(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Zw(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var vx="test"!==process.env.NODE_ENV&&Gw()?e.useLayoutEffect:e.useEffect,hx=function(r,t){var n=e.useRef(!0);vx((function(){return r(n.current)}),t),vx((function(){return n.current=!1,function(){n.current=!0}}),[])},gx=[];var dx="data-rc-order",mx="data-rc-priority",Ox="rc-util-key",bx=new Map;function wx(){var e=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).mark;return e?e.startsWith("data-")?e:"data-".concat(e):Ox}function xx(e){return e.attachTo?e.attachTo:document.querySelector("head")||document.body}function jx(e){return Array.from((bx.get(e)||e).children).filter((function(e){return"STYLE"===e.tagName}))}function Ex(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!Gw())return null;var t=r.csp,n=r.prepend,o=r.priority,i=void 0===o?0:o,l=function(e){return"queue"===e?"prependQueue":e?"prepend":"append"}(n),a="prependQueue"===l,c=document.createElement("style");c.setAttribute(dx,l),a&&i&&c.setAttribute(mx,"".concat(i)),null!=t&&t.nonce&&(c.nonce=null==t?void 0:t.nonce),c.innerHTML=e;var s=xx(r),u=s.firstChild;if(n){if(a){var p=(r.styles||jx(s)).filter((function(e){if(!["prepend","prependQueue"].includes(e.getAttribute(dx)))return!1;var r=Number(e.getAttribute(mx)||0);return i>=r}));if(p.length)return s.insertBefore(c,p[p.length-1].nextSibling),c}s.insertBefore(c,u)}else s.appendChild(c);return c}function kx(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=xx(r);return(r.styles||jx(t)).find((function(t){return t.getAttribute(wx(r))===e}))}function Px(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},t=kx(e,r);t&&xx(r).removeChild(t)}function zx(e,r){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=xx(t),o=jx(n),i=Fw(Fw({},t),{},{styles:o});!function(e,r){var t=bx.get(e);if(!t||!function(e,r){if(!e)return!1;if(e.contains)return e.contains(r);for(var t=r;t;){if(t===e)return!0;t=t.parentNode}return!1}(document,t)){var n=Ex("",r),o=n.parentNode;bx.set(e,o),e.removeChild(n)}}(n,i);var l=kx(r,i);if(l){var a,c,s;if(null!==(a=i.csp)&&void 0!==a&&a.nonce&&l.nonce!==(null===(c=i.csp)||void 0===c?void 0:c.nonce))l.nonce=null===(s=i.csp)||void 0===s?void 0:s.nonce;return l.innerHTML!==e&&(l.innerHTML=e),l}var u=Ex(e,i);return u.setAttribute(wx(i),r),u}function Sx(e){return"undefined"!=typeof document&&e&&e instanceof Element?function(e){var r="rc-scrollbar-measure-".concat(Math.random().toString(36).substring(7)),t=document.createElement("div");t.id=r;var n,o,i=t.style;if(i.position="absolute",i.left="0",i.top="0",i.width="100px",i.height="100px",i.overflow="scroll",e){var l=getComputedStyle(e);i.scrollbarColor=l.scrollbarColor,i.scrollbarWidth=l.scrollbarWidth;var a=getComputedStyle(e,"::-webkit-scrollbar"),c=parseInt(a.width,10),s=parseInt(a.height,10);try{var u=c?"width: ".concat(a.width,";"):"",p=s?"height: ".concat(a.height,";"):"";zx("\n#".concat(r,"::-webkit-scrollbar {\n").concat(u,"\n").concat(p,"\n}"),r)}catch(e){console.error(e),n=c,o=s}}document.body.appendChild(t);var f=e&&n&&!isNaN(n)?n:t.offsetWidth-t.clientWidth,y=e&&o&&!isNaN(o)?o:t.offsetHeight-t.clientHeight;return document.body.removeChild(t),Px(r),{width:f,height:y}}(e):{width:0,height:0}}var Lx="rc-util-locker-".concat(Date.now()),Cx=0;function Tx(r){var t=!!r,n=Xw(e.useState((function(){return Cx+=1,"".concat(Lx,"_").concat(Cx)})),1)[0];hx((function(){if(t){var e=Sx(document.body).width,r=document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth;zx("\nhtml body {\n overflow-y: hidden;\n ".concat(r?"width: calc(100% - ".concat(e,"px);"):"","\n}"),n)}else Px(n);return function(){Px(n)}}),[t,n])}var Nx=function(e){return!1!==e&&(Gw()&&e?"string"==typeof e?document.querySelector(e):"function"==typeof e?e():e:null)},Mx=e.forwardRef((function(r,t){var n=r.open,o=r.autoLock,i=r.getContainer,l=r.debug,a=r.autoDestroy,c=void 0===a||a,s=r.children,u=Xw(e.useState(n),2),p=u[0],f=u[1],y=p||n;"production"!==process.env.NODE_ENV&&rx(Gw()||!n,"Portal only work in client side. Please call 'useEffect' to show Portal instead default render in SSR."),e.useEffect((function(){(c||n)&&f(n)}),[n,c]);var h=Xw(e.useState((function(){return Nx(i)})),2),g=h[0],d=h[1];e.useEffect((function(){var e=Nx(i);d(null!=e?e:null)}));var m=function(r,t){var n=Xw(e.useState((function(){if(!Gw())return null;var e=document.createElement("div");return"production"!==process.env.NODE_ENV&&t&&e.setAttribute("data-debug",t),e})),1)[0],o=e.useRef(!1),i=e.useContext(fx),l=Xw(e.useState(gx),2),a=l[0],c=l[1],s=i||(o.current?void 0:function(e){c((function(r){return[e].concat(yx(r))}))});function u(){n.parentElement||document.body.appendChild(n),o.current=!0}function p(){var e;null===(e=n.parentElement)||void 0===e||e.removeChild(n),o.current=!1}return hx((function(){return r?i?i(u):u():p(),p}),[r]),hx((function(){a.length&&(a.forEach((function(e){return e()})),c(gx))}),[a]),[n,s]}(y&&!g,l),O=Xw(m,2),b=O[0],w=O[1],x=null!=g?g:b;Tx(o&&n&&Gw()&&(x===b||x===document.body));var j=null;s&&px(s)&&t&&(j=s.ref);var E=ux(j,t);if(!y||!Gw()||void 0===g)return null;var k=!1===x||!1,P=s;return t&&(P=e.cloneElement(s,{ref:E})),e.createElement(fx.Provider,{value:w},k?P:v(P,x))}));function Ix(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[];return r.Children.forEach(e,(function(e){(null!=e||t.keepEmpty)&&(Array.isArray(e)?n=n.concat(Ix(e)):ax.isFragment(e)&&e.props?n=n.concat(Ix(e.props.children,t)):n.push(e))})),n}function Bx(e){return e instanceof HTMLElement||e instanceof SVGElement}function Wx(e){var t,n=function(e){return e&&"object"===Vw(e)&&Bx(e.nativeElement)?e.nativeElement:Bx(e)?e:null}(e);return n||(e instanceof r.Component?null===(t=y.findDOMNode)||void 0===t?void 0:t.call(y,e):null)}"production"!==process.env.NODE_ENV&&(Mx.displayName="Portal");var Ax=e.createContext(null);var Hx=function(){if("undefined"!=typeof Map)return Map;function e(e,r){var t=-1;return e.some((function(e,n){return e[0]===r&&(t=n,!0)})),t}return function(){function r(){this.__entries__=[]}return Object.defineProperty(r.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),r.prototype.get=function(r){var t=e(this.__entries__,r),n=this.__entries__[t];return n&&n[1]},r.prototype.set=function(r,t){var n=e(this.__entries__,r);~n?this.__entries__[n][1]=t:this.__entries__.push([r,t])},r.prototype.delete=function(r){var t=this.__entries__,n=e(t,r);~n&&t.splice(n,1)},r.prototype.has=function(r){return!!~e(this.__entries__,r)},r.prototype.clear=function(){this.__entries__.splice(0)},r.prototype.forEach=function(e,r){void 0===r&&(r=null);for(var t=0,n=this.__entries__;t<n.length;t++){var o=n[t];e.call(r,o[1],o[0])}},r}()}(),_x="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,Vx="undefined"!=typeof global&&global.Math===Math?global:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),Rx="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(Vx):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)};var Dx=["top","right","bottom","left","width","height","size","weight"],$x="undefined"!=typeof MutationObserver,Fx=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,r){var t=!1,n=!1,o=0;function i(){t&&(t=!1,e()),n&&a()}function l(){Rx(i)}function a(){var e=Date.now();if(t){if(e-o<2)return;n=!0}else t=!0,n=!1,setTimeout(l,r);o=e}return a}(this.refresh.bind(this),20)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var r=this.observers_,t=r.indexOf(e);~t&&r.splice(t,1),!r.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){_x&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),$x?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){_x&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var r=e.propertyName,t=void 0===r?"":r;Dx.some((function(e){return!!~t.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),Ux=function(e,r){for(var t=0,n=Object.keys(r);t<n.length;t++){var o=n[t];Object.defineProperty(e,o,{value:r[o],enumerable:!1,writable:!1,configurable:!0})}return e},qx=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||Vx},Zx=Qx(0,0,0,0);function Xx(e){return parseFloat(e)||0}function Gx(e){for(var r=[],t=1;t<arguments.length;t++)r[t-1]=arguments[t];return r.reduce((function(r,t){return r+Xx(e["border-"+t+"-width"])}),0)}function Yx(e){var r=e.clientWidth,t=e.clientHeight;if(!r&&!t)return Zx;var n=qx(e).getComputedStyle(e),o=function(e){for(var r={},t=0,n=["top","right","bottom","left"];t<n.length;t++){var o=n[t],i=e["padding-"+o];r[o]=Xx(i)}return r}(n),i=o.left+o.right,l=o.top+o.bottom,a=Xx(n.width),c=Xx(n.height);if("border-box"===n.boxSizing&&(Math.round(a+i)!==r&&(a-=Gx(n,"left","right")+i),Math.round(c+l)!==t&&(c-=Gx(n,"top","bottom")+l)),!function(e){return e===qx(e).document.documentElement}(e)){var s=Math.round(a+i)-r,u=Math.round(c+l)-t;1!==Math.abs(s)&&(a-=s),1!==Math.abs(u)&&(c-=u)}return Qx(o.left,o.top,a,c)}var Jx="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof qx(e).SVGGraphicsElement}:function(e){return e instanceof qx(e).SVGElement&&"function"==typeof e.getBBox};function Kx(e){return _x?Jx(e)?function(e){var r=e.getBBox();return Qx(0,0,r.width,r.height)}(e):Yx(e):Zx}function Qx(e,r,t,n){return{x:e,y:r,width:t,height:n}}var ej=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=Qx(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=Kx(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),rj=function(e,r){var t,n,o,i,l,a,c,s=(n=(t=r).x,o=t.y,i=t.width,l=t.height,a="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,c=Object.create(a.prototype),Ux(c,{x:n,y:o,width:i,height:l,top:o,right:n+i,bottom:l+o,left:n}),c);Ux(this,{target:e,contentRect:s})},tj=function(){function e(e,r,t){if(this.activeObservations_=[],this.observations_=new Hx,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=r,this.callbackCtx_=t}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof qx(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var r=this.observations_;r.has(e)||(r.set(e,new ej(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof qx(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var r=this.observations_;r.has(e)&&(r.delete(e),r.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(r){r.isActive()&&e.activeObservations_.push(r)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,r=this.activeObservations_.map((function(e){return new rj(e.target,e.broadcastRect())}));this.callback_.call(e,r,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),nj="undefined"!=typeof WeakMap?new WeakMap:new Hx,oj=function e(r){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var t=Fx.getInstance(),n=new tj(r,t,this);nj.set(this,n)};["observe","unobserve","disconnect"].forEach((function(e){oj.prototype[e]=function(){var r;return(r=nj.get(this))[e].apply(r,arguments)}}));var ij=void 0!==Vx.ResizeObserver?Vx.ResizeObserver:oj,lj=new Map;function aj(e){e.forEach((function(e){var r,t=e.target;null===(r=lj.get(t))||void 0===r||r.forEach((function(e){return e(t)}))}))}var cj=new ij(aj);function sj(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}function uj(e,r){for(var t=0;t<r.length;t++){var n=r[t];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,Rw(n.key),n)}}function pj(e,r,t){return r&&uj(e.prototype,r),t&&uj(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function fj(e,r){return fj=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,r){return e.__proto__=r,e},fj(e,r)}function yj(e,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(r&&r.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),r&&fj(e,r)}function vj(e){return vj=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},vj(e)}function hj(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(hj=function(){return!!e})()}function gj(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function dj(e){var r=hj();return function(){var t,n=vj(e);if(r){var o=vj(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return function(e,r){if(r&&("object"==Vw(r)||"function"==typeof r))return r;if(void 0!==r)throw new TypeError("Derived constructors may only return object or undefined");return gj(e)}(this,t)}}process.env.NODE_ENV,process.env.NODE_ENV;var mj=function(){yj(t,e.Component);var r=dj(t);function t(){return sj(this,t),r.apply(this,arguments)}return pj(t,[{key:"render",value:function(){return this.props.children}}]),t}();function Oj(r,t){var n=r.children,o=r.disabled,i=e.useRef(null),l=e.useRef(null),a=e.useContext(Ax),c="function"==typeof n,s=c?n(i):n,u=e.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),p=!c&&e.isValidElement(s)&&px(s),f=p?s.ref:null,y=ux(f,i),v=function(){var e;return Wx(i.current)||(i.current&&"object"===Vw(i.current)?Wx(null===(e=i.current)||void 0===e?void 0:e.nativeElement):null)||Wx(l.current)};e.useImperativeHandle(t,(function(){return v()}));var h=e.useRef(r);h.current=r;var g=e.useCallback((function(e){var r=h.current,t=r.onResize,n=r.data,o=e.getBoundingClientRect(),i=o.width,l=o.height,c=e.offsetWidth,s=e.offsetHeight,p=Math.floor(i),f=Math.floor(l);if(u.current.width!==p||u.current.height!==f||u.current.offsetWidth!==c||u.current.offsetHeight!==s){var y={width:p,height:f,offsetWidth:c,offsetHeight:s};u.current=y;var v=c===Math.round(i)?i:c,g=s===Math.round(l)?l:s,d=Fw(Fw({},y),{},{offsetWidth:v,offsetHeight:g});null==a||a(d,e,n),t&&Promise.resolve().then((function(){t(d,e)}))}}),[]);return e.useEffect((function(){var e,r,t=v();return t&&!o&&(e=t,r=g,lj.has(e)||(lj.set(e,new Set),cj.observe(e)),lj.get(e).add(r)),function(){return function(e,r){lj.has(e)&&(lj.get(e).delete(r),lj.get(e).size||(cj.unobserve(e),lj.delete(e)))}(t,g)}}),[i.current,o]),e.createElement(mj,{ref:l},p?e.cloneElement(s,{ref:y}):s)}var bj=e.forwardRef(Oj);"production"!==process.env.NODE_ENV&&(bj.displayName="SingleObserver");function wj(r,t){var n=r.children,o="function"==typeof n?[n]:Ix(n);return"production"!==process.env.NODE_ENV&&(o.length>1?Kw(!1,"Find more than one child node with `children` in ResizeObserver. Please use ResizeObserver.Collection instead."):0===o.length&&Kw(!1,"`children` of ResizeObserver is empty. Nothing is in observe.")),o.map((function(n,o){var i=(null==n?void 0:n.key)||"".concat("rc-observer-key","-").concat(o);return e.createElement(bj,_w({},r,{key:i,ref:0===o?t:void 0}),n)}))}var xj=e.forwardRef(wj);function jj(e){var r;return null==e||null===(r=e.getRootNode)||void 0===r?void 0:r.call(e)}function Ej(e){return function(e){return jj(e)instanceof ShadowRoot}(e)?jj(e):null}function kj(r){var t=e.useRef();t.current=r;var n=e.useCallback((function(){for(var e,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return null===(e=t.current)||void 0===e?void 0:e.call.apply(e,[t].concat(n))}),[]);return n}"production"!==process.env.NODE_ENV&&(xj.displayName="ResizeObserver"),xj.Collection=function(r){var t=r.children,n=r.onBatchResize,o=e.useRef(0),i=e.useRef([]),l=e.useContext(Ax),a=e.useCallback((function(e,r,t){o.current+=1;var a=o.current;i.current.push({size:e,element:r,data:t}),Promise.resolve().then((function(){a===o.current&&(null==n||n(i.current),i.current=[])})),null==l||l(e,r,t)}),[n,l]);return e.createElement(Ax.Provider,{value:a},t)};var Pj=0,zj=Fw({},e).useId,Sj=zj?function(e){var r=zj();return e||("test"===process.env.NODE_ENV?"test-id":r)}:function(r){var t=Xw(e.useState("ssr-id"),2),n=t[0],o=t[1];return e.useEffect((function(){var e=Pj;Pj+=1,o("rc_unique_".concat(e))}),[]),r||("test"===process.env.NODE_ENV?"test-id":n)},Lj=e.createContext({}),Cj=function(){yj(t,e.Component);var r=dj(t);function t(){return sj(this,t),r.apply(this,arguments)}return pj(t,[{key:"render",value:function(){return this.props.children}}]),t}();function Tj(r){var t=e.useRef(!1),n=Xw(e.useState(r),2),o=n[0],i=n[1];return e.useEffect((function(){return t.current=!1,function(){t.current=!0}}),[]),[o,function(e,r){r&&t.current||i(e)}]}var Nj="none",Mj="appear",Ij="enter",Bj="leave",Wj="none",Aj="prepare",Hj="start",_j="active",Vj="end",Rj="prepared";function Dj(e,r){var t={};return t[e.toLowerCase()]=r.toLowerCase(),t["Webkit".concat(e)]="webkit".concat(r),t["Moz".concat(e)]="moz".concat(r),t["ms".concat(e)]="MS".concat(r),t["O".concat(e)]="o".concat(r.toLowerCase()),t}var $j,Fj,Uj,qj=($j=Gw(),Fj="undefined"!=typeof window?window:{},Uj={animationend:Dj("Animation","AnimationEnd"),transitionend:Dj("Transition","TransitionEnd")},$j&&("AnimationEvent"in Fj||delete Uj.animationend.animation,"TransitionEvent"in Fj||delete Uj.transitionend.transition),Uj),Zj={};if(Gw()){var Xj=document.createElement("div");Zj=Xj.style}var Gj={};function Yj(e){if(Gj[e])return Gj[e];var r=qj[e];if(r)for(var t=Object.keys(r),n=t.length,o=0;o<n;o+=1){var i=t[o];if(Object.prototype.hasOwnProperty.call(r,i)&&i in Zj)return Gj[e]=r[i],Gj[e]}return""}var Jj=Yj("animationend"),Kj=Yj("transitionend"),Qj=!(!Jj||!Kj),eE=Jj||"animationend",rE=Kj||"transitionend";function tE(e,r){return e?"object"===Vw(e)?e[r.replace(/-\w/g,(function(e){return e[1].toUpperCase()}))]:"".concat(e,"-").concat(r):null}var nE=function(r){var t=s();function n(e){e&&(e.removeEventListener(rE,r),e.removeEventListener(eE,r))}return e.useEffect((function(){return function(){n(t.current)}}),[]),[function(e){t.current&&t.current!==e&&n(t.current),e&&e!==t.current&&(e.addEventListener(rE,r),e.addEventListener(eE,r),t.current=e)},n]},oE=Gw()?u:i,iE=function(e){return+setTimeout(e,16)},lE=function(e){return clearTimeout(e)};"undefined"!=typeof window&&"requestAnimationFrame"in window&&(iE=function(e){return window.requestAnimationFrame(e)},lE=function(e){return window.cancelAnimationFrame(e)});var aE=0,cE=new Map;function sE(e){cE.delete(e)}var uE=function(e){var r=aE+=1;return function t(n){if(0===n)sE(r),e();else{var o=iE((function(){t(n-1)}));cE.set(r,o)}}(arguments.length>1&&void 0!==arguments[1]?arguments[1]:1),r};uE.cancel=function(e){var r=cE.get(e);return sE(e),lE(r)},"production"!==process.env.NODE_ENV&&(uE.ids=function(){return cE});var pE=[Aj,Hj,_j,Vj],fE=[Aj,Rj],yE=!1,vE=!0;function hE(e){return e===_j||e===Vj}var gE=function(r,t,n){var o=Xw(Tj(Wj),2),i=o[0],l=o[1],a=function(){var r=e.useRef(null);function t(){uE.cancel(r.current)}return e.useEffect((function(){return function(){t()}}),[]),[function e(n){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;t();var i=uE((function(){o<=1?n({isCanceled:function(){return i!==r.current}}):e(n,o-1)}));r.current=i},t]}(),c=Xw(a,2),s=c[0],u=c[1];var p=t?fE:pE;return oE((function(){if(i!==Wj&&i!==Vj){var e=p.indexOf(i),r=p[e+1],t=n(i);t===yE?l(r,!0):r&&s((function(e){function n(){e.isCanceled()||l(r,!0)}!0===t?n():Promise.resolve(t).then(n)}))}}),[r,i]),e.useEffect((function(){return function(){u()}}),[]),[function(){l(Aj,!0)},i]};function dE(r,t,n,o){var l,a,c,u=o.motionEnter,p=void 0===u||u,f=o.motionAppear,y=void 0===f||f,v=o.motionLeave,h=void 0===v||v,g=o.motionDeadline,d=o.motionLeaveImmediately,m=o.onAppearPrepare,O=o.onEnterPrepare,b=o.onLeavePrepare,w=o.onAppearStart,x=o.onEnterStart,j=o.onLeaveStart,E=o.onAppearActive,k=o.onEnterActive,P=o.onLeaveActive,z=o.onAppearEnd,S=o.onEnterEnd,L=o.onLeaveEnd,C=o.onVisibleChanged,T=Xw(Tj(),2),N=T[0],M=T[1],I=(l=Nj,a=Xw(e.useReducer((function(e){return e+1}),0),2)[1],c=e.useRef(l),[kj((function(){return c.current})),kj((function(e){c.current="function"==typeof e?e(c.current):e,a()}))]),B=Xw(I,2),W=B[0],A=B[1],H=Xw(Tj(null),2),_=H[0],V=H[1],R=W(),D=s(!1),$=s(null);function F(){return n()}var U=s(!1);function q(){A(Nj),V(null,!0)}var Z=kj((function(e){var r=W();if(r!==Nj){var t=F();if(!e||e.deadline||e.target===t){var n,o=U.current;r===Mj&&o?n=null==z?void 0:z(t,e):r===Ij&&o?n=null==S?void 0:S(t,e):r===Bj&&o&&(n=null==L?void 0:L(t,e)),o&&!1!==n&&q()}}})),X=Xw(nE(Z),1)[0],G=function(e){switch(e){case Mj:return Dw(Dw(Dw({},Aj,m),Hj,w),_j,E);case Ij:return Dw(Dw(Dw({},Aj,O),Hj,x),_j,k);case Bj:return Dw(Dw(Dw({},Aj,b),Hj,j),_j,P);default:return{}}},Y=e.useMemo((function(){return G(R)}),[R]),J=Xw(gE(R,!r,(function(e){if(e===Aj){var r=Y[Aj];return r?r(F()):yE}var t;Q in Y&&V((null===(t=Y[Q])||void 0===t?void 0:t.call(Y,F(),null))||null);return Q===_j&&R!==Nj&&(X(F()),g>0&&(clearTimeout($.current),$.current=setTimeout((function(){Z({deadline:!0})}),g))),Q===Rj&&q(),vE})),2),K=J[0],Q=J[1],ee=hE(Q);U.current=ee,oE((function(){M(t);var e,n=D.current;D.current=!0,!n&&t&&y&&(e=Mj),n&&t&&p&&(e=Ij),(n&&!t&&h||!n&&d&&!t&&h)&&(e=Bj);var o=G(e);e&&(r||o[Aj])?(A(e),K()):A(Nj)}),[t]),i((function(){(R===Mj&&!y||R===Ij&&!p||R===Bj&&!h)&&A(Nj)}),[y,p,h]),i((function(){return function(){D.current=!1,clearTimeout($.current)}}),[]);var re=e.useRef(!1);i((function(){N&&(re.current=!0),void 0!==N&&R===Nj&&((re.current||N)&&(null==C||C(N)),re.current=!0)}),[N,R]);var te=_;return Y[Aj]&&Q===Hj&&(te=Fw({transition:"none"},te)),[R,Q,te,null!=N?N:t]}var mE=function(r){var t=r;"object"===Vw(r)&&(t=r.transitionSupport);var n=e.forwardRef((function(r,n){var o=r.visible,i=void 0===o||o,l=r.removeOnLeave,a=void 0===l||l,c=r.forceRender,u=r.children,p=r.motionName,f=r.leavedClassName,y=r.eventProps,v=function(e,r){return!(!e.motionName||!t||!1===r)}(r,e.useContext(Lj).motion),h=s(),g=s();var d=Xw(dE(v,i,(function(){try{return h.current instanceof HTMLElement?h.current:Wx(g.current)}catch(e){return null}}),r),4),m=d[0],O=d[1],b=d[2],w=d[3],x=e.useRef(w);w&&(x.current=!0);var j,E=e.useCallback((function(e){h.current=e,cx(n,e)}),[n]),k=Fw(Fw({},y),{},{visible:i});if(u)if(m===Nj)j=w?u(Fw({},k),E):!a&&x.current&&f?u(Fw(Fw({},k),{},{className:f}),E):c||!a&&!f?u(Fw(Fw({},k),{},{style:{display:"none"}}),E):null;else{var P;O===Aj?P="prepare":hE(O)?P="active":O===Hj&&(P="start");var z=tE(p,"".concat(m,"-").concat(P));j=u(Fw(Fw({},k),{},{className:jw(tE(p,m),Dw(Dw({},z,z&&P),p,"string"==typeof p)),style:b}),E)}else j=null;e.isValidElement(j)&&px(j)&&(j.ref||(j=e.cloneElement(j,{ref:E})));return e.createElement(Cj,{ref:g},j)}));return n.displayName="CSSMotion",n}(Qj),OE="add",bE="keep",wE="remove",xE="removed";function jE(e){var r;return Fw(Fw({},r=e&&"object"===Vw(e)&&"key"in e?e:{key:e}),{},{key:String(r.key)})}function EE(){return(arguments.length>0&&void 0!==arguments[0]?arguments[0]:[]).map(jE)}var kE=["component","children","onVisibleChanged","onAllRemoved"],PE=["status"],zE=["eventProps","visible","children","motionName","motionAppear","motionEnter","motionLeave","motionLeaveImmediately","motionDeadline","removeOnLeave","leavedClassName","onAppearPrepare","onAppearStart","onAppearActive","onAppearEnd","onEnterStart","onEnterActive","onEnterEnd","onLeaveStart","onLeaveActive","onLeaveEnd"];function SE(r){var t=r.prefixCls,n=r.align,o=r.arrow,i=r.arrowPos,l=o||{},a=l.className,c=l.content,s=i.x,u=void 0===s?0:s,p=i.y,f=void 0===p?0:p,y=e.useRef();if(!n||!n.points)return null;var v={position:"absolute"};if(!1!==n.autoArrow){var h=n.points[0],g=n.points[1],d=h[0],m=h[1],O=g[0],b=g[1];d!==O&&["t","b"].includes(d)?"t"===d?v.top=0:v.bottom=0:v.top=f,m!==b&&["l","r"].includes(m)?"l"===m?v.left=0:v.right=0:v.left=u}return e.createElement("div",{ref:y,className:jw("".concat(t,"-arrow"),a),style:v},c)}function LE(r){var t=r.prefixCls,n=r.open,o=r.zIndex,i=r.mask,l=r.motion;return i?e.createElement(mE,_w({},l,{motionAppear:!0,visible:n,removeOnLeave:!0}),(function(r){var n=r.className;return e.createElement("div",{style:{zIndex:o},className:jw("".concat(t,"-mask"),n)})})):null}!function(r){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:mE,n=function(){yj(n,e.Component);var r=dj(n);function n(){var e;sj(this,n);for(var t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return Dw(gj(e=r.call.apply(r,[this].concat(o))),"state",{keyEntities:[]}),Dw(gj(e),"removeKey",(function(r){var t=e.state.keyEntities.map((function(e){return e.key!==r?e:Fw(Fw({},e),{},{status:xE})}));return e.setState({keyEntities:t}),t.filter((function(e){return e.status!==xE})).length})),e}return pj(n,[{key:"render",value:function(){var r=this,n=this.state.keyEntities,o=this.props,i=o.component,l=o.children,a=o.onVisibleChanged,c=o.onAllRemoved,s=Uw(o,kE),u=i||e.Fragment,p={};return zE.forEach((function(e){p[e]=s[e],delete s[e]})),delete s.keys,e.createElement(u,s,n.map((function(n,o){var i=n.status,s=Uw(n,PE),u=i===OE||i===bE;return e.createElement(t,_w({},p,{key:s.key,visible:u,eventProps:s,onVisibleChanged:function(e){(null==a||a(e,{key:s.key}),e)||0===r.removeKey(s.key)&&c&&c()}}),(function(e,r){return l(Fw(Fw({},e),{},{index:o}),r)}))})))}}],[{key:"getDerivedStateFromProps",value:function(e,r){var t=e.keys,n=r.keyEntities,o=EE(t),i=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],t=[],n=0,o=r.length,i=EE(e),l=EE(r);i.forEach((function(e){for(var r=!1,i=n;i<o;i+=1){var a=l[i];if(a.key===e.key){n<i&&(t=t.concat(l.slice(n,i).map((function(e){return Fw(Fw({},e),{},{status:OE})}))),n=i),t.push(Fw(Fw({},a),{},{status:bE})),n+=1,r=!0;break}}r||t.push(Fw(Fw({},e),{},{status:wE}))})),n<o&&(t=t.concat(l.slice(n).map((function(e){return Fw(Fw({},e),{},{status:OE})}))));var a={};return t.forEach((function(e){var r=e.key;a[r]=(a[r]||0)+1})),Object.keys(a).filter((function(e){return a[e]>1})).forEach((function(e){(t=t.filter((function(r){var t=r.key,n=r.status;return t!==e||n!==wE}))).forEach((function(r){r.key===e&&(r.status=bE)}))})),t}(n,o);return{keyEntities:i.filter((function(e){var r=n.find((function(r){var t=r.key;return e.key===t}));return!r||r.status!==xE||e.status!==wE}))}}}]),n}();Dw(n,"defaultProps",{component:"div"})}(Qj);var CE=e.memo((function(e){return e.children}),(function(e,r){return r.cache}));"production"!==process.env.NODE_ENV&&(CE.displayName="PopupContent");var TE=e.forwardRef((function(r,t){var n=r.popup,o=r.className,i=r.prefixCls,l=r.style,a=r.target,c=r.onVisibleChanged,s=r.open,u=r.keepDom,p=r.fresh,f=r.onClick,y=r.mask,v=r.arrow,h=r.arrowPos,g=r.align,d=r.motion,m=r.maskMotion,O=r.forceRender,b=r.getPopupContainer,w=r.autoDestroy,x=r.portal,j=r.zIndex,E=r.onMouseEnter,k=r.onMouseLeave,P=r.onPointerEnter,z=r.ready,S=r.offsetX,L=r.offsetY,C=r.offsetR,T=r.offsetB,N=r.onAlign,M=r.onPrepare,I=r.stretch,B=r.targetWidth,W=r.targetHeight,A="function"==typeof n?n():n,H=s||u,_=(null==b?void 0:b.length)>0,V=Xw(e.useState(!b||!_),2),R=V[0],D=V[1];if(hx((function(){!R&&_&&a&&D(!0)}),[R,_,a]),!R)return null;var $="auto",F={left:"-1000vw",top:"-1000vh",right:$,bottom:$};if(z||!s){var U,q=g.points,Z=g.dynamicInset||(null===(U=g._experimental)||void 0===U?void 0:U.dynamicInset),X=Z&&"r"===q[0][1],G=Z&&"b"===q[0][0];X?(F.right=C,F.left=$):(F.left=S,F.right=$),G?(F.bottom=T,F.top=$):(F.top=L,F.bottom=$)}var Y={};return I&&(I.includes("height")&&W?Y.height=W:I.includes("minHeight")&&W&&(Y.minHeight=W),I.includes("width")&&B?Y.width=B:I.includes("minWidth")&&B&&(Y.minWidth=B)),s||(Y.pointerEvents="none"),e.createElement(x,{open:O||H,getContainer:b&&function(){return b(a)},autoDestroy:w},e.createElement(LE,{prefixCls:i,open:s,zIndex:j,mask:y,motion:m}),e.createElement(xj,{onResize:N,disabled:!s},(function(r){return e.createElement(mE,_w({motionAppear:!0,motionEnter:!0,motionLeave:!0,removeOnLeave:!1,forceRender:O,leavedClassName:"".concat(i,"-hidden")},d,{onAppearPrepare:M,onEnterPrepare:M,visible:s,onVisibleChanged:function(e){var r;null==d||null===(r=d.onVisibleChanged)||void 0===r||r.call(d,e),c(e)}}),(function(n,a){var c=n.className,u=n.style,y=jw(i,c,o);return e.createElement("div",{ref:sx(r,t,a),className:y,style:Fw(Fw(Fw(Fw({"--arrow-x":"".concat(h.x||0,"px"),"--arrow-y":"".concat(h.y||0,"px")},F),Y),u),{},{boxSizing:"border-box",zIndex:j},l),onMouseEnter:E,onMouseLeave:k,onPointerEnter:P,onClick:f},v&&e.createElement(SE,{prefixCls:i,arrow:v,arrowPos:h,align:g}),e.createElement(CE,{cache:!s&&!p},A))}))})))}));"production"!==process.env.NODE_ENV&&(TE.displayName="Popup");var NE=e.forwardRef((function(r,t){var n=r.children,o=r.getTriggerDOMNode,i=px(n),l=e.useCallback((function(e){cx(t,o?o(e):e)}),[o]),a=ux(l,n.ref);return i?e.cloneElement(n,{ref:a}):n}));"production"!==process.env.NODE_ENV&&(NE.displayName="TriggerWrapper");var ME=e.createContext(null);function IE(e){return e?Array.isArray(e)?e:[e]:[]}var BE=function(e){if(!e)return!1;if(e instanceof Element){if(e.offsetParent)return!0;if(e.getBBox){var r=e.getBBox(),t=r.width,n=r.height;if(t||n)return!0}if(e.getBoundingClientRect){var o=e.getBoundingClientRect(),i=o.width,l=o.height;if(i||l)return!0}}return!1};function WE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return(arguments.length>2?arguments[2]:void 0)?e[0]===r[0]:e[0]===r[0]&&e[1]===r[1]}function AE(e,r,t,n){return r||(t?{motionName:"".concat(e,"-").concat(t)}:n?{motionName:n}:null)}function HE(e){return e.ownerDocument.defaultView}function _E(e){for(var r=[],t=null==e?void 0:e.parentElement,n=["hidden","scroll","clip","auto"];t;){var o=HE(t).getComputedStyle(t);[o.overflowX,o.overflowY,o.overflow].some((function(e){return n.includes(e)}))&&r.push(t),t=t.parentElement}return r}function VE(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return Number.isNaN(e)?r:e}function RE(e){return VE(parseFloat(e),0)}function DE(e,r){var t=Fw({},e);return(r||[]).forEach((function(e){if(!(e instanceof HTMLBodyElement||e instanceof HTMLHtmlElement)){var r=HE(e).getComputedStyle(e),n=r.overflow,o=r.overflowClipMargin,i=r.borderTopWidth,l=r.borderBottomWidth,a=r.borderLeftWidth,c=r.borderRightWidth,s=e.getBoundingClientRect(),u=e.offsetHeight,p=e.clientHeight,f=e.offsetWidth,y=e.clientWidth,v=RE(i),h=RE(l),g=RE(a),d=RE(c),m=VE(Math.round(s.width/f*1e3)/1e3),O=VE(Math.round(s.height/u*1e3)/1e3),b=(f-y-g-d)*m,w=(u-p-v-h)*O,x=v*O,j=h*O,E=g*m,k=d*m,P=0,z=0;if("clip"===n){var S=RE(o);P=S*m,z=S*O}var L=s.x+E-P,C=s.y+x-z,T=L+s.width+2*P-E-k-b,N=C+s.height+2*z-x-j-w;t.left=Math.max(t.left,L),t.top=Math.max(t.top,C),t.right=Math.min(t.right,T),t.bottom=Math.min(t.bottom,N)}})),t}function $E(e){var r="".concat(arguments.length>1&&void 0!==arguments[1]?arguments[1]:0),t=r.match(/^(.*)\%$/);return t?e*(parseFloat(t[1])/100):parseFloat(r)}function FE(e,r){var t=Xw(r||[],2),n=t[0],o=t[1];return[$E(e.width,n),$E(e.height,o)]}function UE(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return[e[0],e[1]]}function qE(e,r){var t,n=r[0],o=r[1];return t="t"===n?e.y:"b"===n?e.y+e.height:e.y+e.height/2,{x:"l"===o?e.x:"r"===o?e.x+e.width:e.x+e.width/2,y:t}}function ZE(e,r){var t={t:"b",b:"t",l:"r",r:"l"};return e.map((function(e,n){return n===r?t[e]||"c":e})).join("")}var XE=["prefixCls","children","action","showAction","hideAction","popupVisible","defaultPopupVisible","onPopupVisibleChange","afterPopupVisibleChange","mouseEnterDelay","mouseLeaveDelay","focusDelay","blurDelay","mask","maskClosable","getPopupContainer","forceRender","autoDestroy","destroyPopupOnHide","popup","popupClassName","popupStyle","popupPlacement","builtinPlacements","popupAlign","zIndex","stretch","getPopupClassNameFromAlign","fresh","alignPoint","onPopupClick","onPopupAlign","arrow","popupMotion","maskMotion","popupTransitionName","popupAnimation","maskTransitionName","maskAnimation","className","getTriggerDOMNode"];var GE=function(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Mx,t=e.forwardRef((function(t,n){var o=t.prefixCls,i=void 0===o?"rc-trigger-popup":o,l=t.children,a=t.action,c=void 0===a?"hover":a,s=t.showAction,u=t.hideAction,p=t.popupVisible,f=t.defaultPopupVisible,y=t.onPopupVisibleChange,v=t.afterPopupVisibleChange,h=t.mouseEnterDelay,g=t.mouseLeaveDelay,d=void 0===g?.1:g,m=t.focusDelay,O=t.blurDelay,b=t.mask,w=t.maskClosable,x=void 0===w||w,j=t.getPopupContainer,E=t.forceRender,k=t.autoDestroy,P=t.destroyPopupOnHide,z=t.popup,S=t.popupClassName,L=t.popupStyle,C=t.popupPlacement,T=t.builtinPlacements,N=void 0===T?{}:T,M=t.popupAlign,I=t.zIndex,B=t.stretch,W=t.getPopupClassNameFromAlign,A=t.fresh,H=t.alignPoint,_=t.onPopupClick,V=t.onPopupAlign,R=t.arrow,D=t.popupMotion,$=t.maskMotion,F=t.popupTransitionName,U=t.popupAnimation,q=t.maskTransitionName,Z=t.maskAnimation,X=t.className,G=t.getTriggerDOMNode,Y=Uw(t,XE),J=k||P||!1,K=Xw(e.useState(!1),2),Q=K[0],ee=K[1];hx((function(){ee(function(){if("undefined"==typeof navigator||"undefined"==typeof window)return!1;var e=navigator.userAgent||navigator.vendor||window.opera;return/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(e)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(null==e?void 0:e.substr(0,4))}())}),[]);var re=e.useRef({}),te=e.useContext(ME),ne=e.useMemo((function(){return{registerSubPopup:function(e,r){re.current[e]=r,null==te||te.registerSubPopup(e,r)}}}),[te]),oe=Sj(),ie=Xw(e.useState(null),2),le=ie[0],ae=ie[1],ce=e.useRef(null),se=kj((function(e){ce.current=e,Bx(e)&&le!==e&&ae(e),null==te||te.registerSubPopup(oe,e)})),ue=Xw(e.useState(null),2),pe=ue[0],fe=ue[1],ye=e.useRef(null),ve=kj((function(e){Bx(e)&&pe!==e&&(fe(e),ye.current=e)})),he=e.Children.only(l),ge=(null==he?void 0:he.props)||{},de={},me=kj((function(e){var r,t,n=pe;return(null==n?void 0:n.contains(e))||(null===(r=Ej(n))||void 0===r?void 0:r.host)===e||e===n||(null==le?void 0:le.contains(e))||(null===(t=Ej(le))||void 0===t?void 0:t.host)===e||e===le||Object.values(re.current).some((function(r){return(null==r?void 0:r.contains(e))||e===r}))})),Oe=AE(i,D,U,F),be=AE(i,$,Z,q),we=Xw(e.useState(f||!1),2),xe=we[0],je=we[1],Ee=null!=p?p:xe,ke=kj((function(e){void 0===p&&je(e)}));hx((function(){je(p||!1)}),[p]);var Pe=e.useRef(Ee);Pe.current=Ee;var ze=e.useRef([]);ze.current=[];var Se=kj((function(e){var r;ke(e),(null!==(r=ze.current[ze.current.length-1])&&void 0!==r?r:Ee)!==e&&(ze.current.push(e),null==y||y(e))})),Le=e.useRef(),Ce=function(){clearTimeout(Le.current)},Te=function(e){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;Ce(),0===r?Se(e):Le.current=setTimeout((function(){Se(e)}),1e3*r)};e.useEffect((function(){return Ce}),[]);var Ne=Xw(e.useState(!1),2),Me=Ne[0],Ie=Ne[1];hx((function(e){e&&!Ee||Ie(!0)}),[Ee]);var Be=Xw(e.useState(null),2),We=Be[0],Ae=Be[1],He=Xw(e.useState([0,0]),2),_e=He[0],Ve=He[1],Re=function(e){Ve([e.clientX,e.clientY])},De=function(r,t,n,o,i,l,a){var c=Xw(e.useState({ready:!1,offsetX:0,offsetY:0,offsetR:0,offsetB:0,arrowX:0,arrowY:0,scaleX:1,scaleY:1,align:i[o]||{}}),2),s=c[0],u=c[1],p=e.useRef(0),f=e.useMemo((function(){return t?_E(t):[]}),[t]),y=e.useRef({});r||(y.current={});var v=kj((function(){if(t&&n&&r){var e,c,s,p=t,v=p.ownerDocument,h=HE(p).getComputedStyle(p),g=h.width,d=h.height,m=h.position,O=p.style.left,b=p.style.top,w=p.style.right,x=p.style.bottom,j=p.style.overflow,E=Fw(Fw({},i[o]),l),k=v.createElement("div");if(null===(e=p.parentElement)||void 0===e||e.appendChild(k),k.style.left="".concat(p.offsetLeft,"px"),k.style.top="".concat(p.offsetTop,"px"),k.style.position=m,k.style.height="".concat(p.offsetHeight,"px"),k.style.width="".concat(p.offsetWidth,"px"),p.style.left="0",p.style.top="0",p.style.right="auto",p.style.bottom="auto",p.style.overflow="hidden",Array.isArray(n))s={x:n[0],y:n[1],width:0,height:0};else{var P=n.getBoundingClientRect();s={x:P.x,y:P.y,width:P.width,height:P.height}}var z=p.getBoundingClientRect(),S=v.documentElement,L=S.clientWidth,C=S.clientHeight,T=S.scrollWidth,N=S.scrollHeight,M=S.scrollTop,I=S.scrollLeft,B=z.height,W=z.width,A=s.height,H=s.width,_={left:0,top:0,right:L,bottom:C},V={left:-I,top:-M,right:T-I,bottom:N-M},R=E.htmlRegion,D="visible",$="visibleFirst";"scroll"!==R&&R!==$&&(R=D);var F=R===$,U=DE(V,f),q=DE(_,f),Z=R===D?q:U,X=F?q:Z;p.style.left="auto",p.style.top="auto",p.style.right="0",p.style.bottom="0";var G=p.getBoundingClientRect();p.style.left=O,p.style.top=b,p.style.right=w,p.style.bottom=x,p.style.overflow=j,null===(c=p.parentElement)||void 0===c||c.removeChild(k);var Y=VE(Math.round(W/parseFloat(g)*1e3)/1e3),J=VE(Math.round(B/parseFloat(d)*1e3)/1e3);if(0===Y||0===J||Bx(n)&&!BE(n))return;var K=E.offset,Q=E.targetOffset,ee=Xw(FE(z,K),2),re=ee[0],te=ee[1],ne=Xw(FE(s,Q),2),oe=ne[0],ie=ne[1];s.x-=oe,s.y-=ie;var le=Xw(E.points||[],2),ae=le[0],ce=UE(le[1]),se=UE(ae),ue=qE(s,ce),pe=qE(z,se),fe=Fw({},E),ye=ue.x-pe.x+re,ve=ue.y-pe.y+te;function ar(e,r){var t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Z,n=z.x+e,o=z.y+r,i=n+W,l=o+B,a=Math.max(n,t.left),c=Math.max(o,t.top),s=Math.min(i,t.right),u=Math.min(l,t.bottom);return Math.max(0,(s-a)*(u-c))}var he,ge,de,me,Oe=ar(ye,ve),be=ar(ye,ve,q),we=qE(s,["t","l"]),xe=qE(z,["t","l"]),je=qE(s,["b","r"]),Ee=qE(z,["b","r"]),ke=E.overflow||{},Pe=ke.adjustX,ze=ke.adjustY,Se=ke.shiftX,Le=ke.shiftY,Ce=function(e){return"boolean"==typeof e?e:e>=0};function cr(){he=z.y+ve,ge=he+B,de=z.x+ye,me=de+W}cr();var Te=Ce(ze),Ne=se[0]===ce[0];if(Te&&"t"===se[0]&&(ge>X.bottom||y.current.bt)){var Me=ve;Ne?Me-=B-A:Me=we.y-Ee.y-te;var Ie=ar(ye,Me),Be=ar(ye,Me,q);Ie>Oe||Ie===Oe&&(!F||Be>=be)?(y.current.bt=!0,ve=Me,te=-te,fe.points=[ZE(se,0),ZE(ce,0)]):y.current.bt=!1}if(Te&&"b"===se[0]&&(he<X.top||y.current.tb)){var We=ve;Ne?We+=B-A:We=je.y-xe.y-te;var Ae=ar(ye,We),He=ar(ye,We,q);Ae>Oe||Ae===Oe&&(!F||He>=be)?(y.current.tb=!0,ve=We,te=-te,fe.points=[ZE(se,0),ZE(ce,0)]):y.current.tb=!1}var _e=Ce(Pe),Ve=se[1]===ce[1];if(_e&&"l"===se[1]&&(me>X.right||y.current.rl)){var Re=ye;Ve?Re-=W-H:Re=we.x-Ee.x-re;var De=ar(Re,ve),$e=ar(Re,ve,q);De>Oe||De===Oe&&(!F||$e>=be)?(y.current.rl=!0,ye=Re,re=-re,fe.points=[ZE(se,1),ZE(ce,1)]):y.current.rl=!1}if(_e&&"r"===se[1]&&(de<X.left||y.current.lr)){var Fe=ye;Ve?Fe+=W-H:Fe=je.x-xe.x-re;var Ue=ar(Fe,ve),qe=ar(Fe,ve,q);Ue>Oe||Ue===Oe&&(!F||qe>=be)?(y.current.lr=!0,ye=Fe,re=-re,fe.points=[ZE(se,1),ZE(ce,1)]):y.current.lr=!1}cr();var Ze=!0===Se?0:Se;"number"==typeof Ze&&(de<q.left&&(ye-=de-q.left-re,s.x+H<q.left+Ze&&(ye+=s.x-q.left+H-Ze)),me>q.right&&(ye-=me-q.right-re,s.x>q.right-Ze&&(ye+=s.x-q.right+Ze)));var Xe=!0===Le?0:Le;"number"==typeof Xe&&(he<q.top&&(ve-=he-q.top-te,s.y+A<q.top+Xe&&(ve+=s.y-q.top+A-Xe)),ge>q.bottom&&(ve-=ge-q.bottom-te,s.y>q.bottom-Xe&&(ve+=s.y-q.bottom+Xe)));var Ge=z.x+ye,Ye=Ge+W,Je=z.y+ve,Ke=Je+B,Qe=s.x,er=Qe+H,rr=s.y,tr=rr+A,nr=(Math.max(Ge,Qe)+Math.min(Ye,er))/2-Ge,or=(Math.max(Je,rr)+Math.min(Ke,tr))/2-Je;null==a||a(t,fe);var ir=G.right-z.x-(ye+z.width),lr=G.bottom-z.y-(ve+z.height);1===Y&&(ye=Math.round(ye),ir=Math.round(ir)),1===J&&(ve=Math.round(ve),lr=Math.round(lr)),u({ready:!0,offsetX:ye/Y,offsetY:ve/J,offsetR:ir/Y,offsetB:lr/J,arrowX:nr/Y,arrowY:or/J,scaleX:Y,scaleY:J,align:fe})}})),h=function(){u((function(e){return Fw(Fw({},e),{},{ready:!1})}))};return hx(h,[o]),hx((function(){r||h()}),[r]),[s.ready,s.offsetX,s.offsetY,s.offsetR,s.offsetB,s.arrowX,s.arrowY,s.scaleX,s.scaleY,s.align,function(){p.current+=1;var e=p.current;Promise.resolve().then((function(){p.current===e&&v()}))}]}(Ee,le,H?_e:pe,C,N,M,V),$e=Xw(De,11),Fe=$e[0],Ue=$e[1],qe=$e[2],Ze=$e[3],Xe=$e[4],Ge=$e[5],Ye=$e[6],Je=$e[7],Ke=$e[8],Qe=$e[9],er=$e[10],rr=function(r,t,n,o){return e.useMemo((function(){var e=IE(null!=n?n:t),i=IE(null!=o?o:t),l=new Set(e),a=new Set(i);return r&&(l.has("hover")&&(l.delete("hover"),l.add("click")),a.has("hover")&&(a.delete("hover"),a.add("click"))),[l,a]}),[r,t,n,o])}(Q,c,s,u),tr=Xw(rr,2),nr=tr[0],or=tr[1],ir=nr.has("click"),lr=or.has("click")||or.has("contextMenu"),ar=kj((function(){Me||er()}));!function(e,r,t,n,o){hx((function(){if(e&&r&&t){var i=t,l=_E(r),a=_E(i),c=HE(i),s=new Set([c].concat(yx(l),yx(a)));function u(){n(),o()}return s.forEach((function(e){e.addEventListener("scroll",u,{passive:!0})})),c.addEventListener("resize",u,{passive:!0}),n(),function(){s.forEach((function(e){e.removeEventListener("scroll",u),c.removeEventListener("resize",u)}))}}}),[e,r,t])}(Ee,pe,le,ar,(function(){Pe.current&&H&&lr&&Te(!1)})),hx((function(){ar()}),[_e,C]),hx((function(){!Ee||null!=N&&N[C]||ar()}),[JSON.stringify(M)]);var cr=e.useMemo((function(){var e=function(e,r,t,n){for(var o=t.points,i=Object.keys(e),l=0;l<i.length;l+=1){var a,c=i[l];if(WE(null===(a=e[c])||void 0===a?void 0:a.points,o,n))return"".concat(r,"-placement-").concat(c)}return""}(N,i,Qe,H);return jw(e,null==W?void 0:W(Qe))}),[Qe,W,N,i,H]);e.useImperativeHandle(n,(function(){return{nativeElement:ye.current,popupElement:ce.current,forceAlign:ar}}));var sr=Xw(e.useState(0),2),ur=sr[0],pr=sr[1],fr=Xw(e.useState(0),2),yr=fr[0],vr=fr[1],hr=function(){if(B&&pe){var e=pe.getBoundingClientRect();pr(e.width),vr(e.height)}};function gr(e,r,t,n){de[e]=function(o){var i;null==n||n(o),Te(r,t);for(var l=arguments.length,a=new Array(l>1?l-1:0),c=1;c<l;c++)a[c-1]=arguments[c];null===(i=ge[e])||void 0===i||i.call.apply(i,[ge,o].concat(a))}}hx((function(){We&&(er(),We(),Ae(null))}),[We]),(ir||lr)&&(de.onClick=function(e){var r;Pe.current&&lr?Te(!1):!Pe.current&&ir&&(Re(e),Te(!0));for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o<t;o++)n[o-1]=arguments[o];null===(r=ge.onClick)||void 0===r||r.call.apply(r,[ge,e].concat(n))}),function(r,t,n,o,i,l,a,c){var s=e.useRef(r);s.current=r,e.useEffect((function(){if(t&&o&&(!i||l)){var e=function(e){var r;s.current&&!a((null===(r=e.composedPath)||void 0===r||null===(r=r.call(e))||void 0===r?void 0:r[0])||e.target)&&c(!1)},r=HE(o);r.addEventListener("mousedown",e,!0),r.addEventListener("contextmenu",e,!0);var u,p,f=Ej(n);return f&&(f.addEventListener("mousedown",e,!0),f.addEventListener("contextmenu",e,!0)),"production"!==process.env.NODE_ENV&&Kw((null==n||null===(u=n.getRootNode)||void 0===u?void 0:u.call(n))===(null===(p=o.getRootNode)||void 0===p?void 0:p.call(o)),"trigger element and popup element should in same shadow root."),function(){r.removeEventListener("mousedown",e,!0),r.removeEventListener("contextmenu",e,!0),f&&(f.removeEventListener("mousedown",e,!0),f.removeEventListener("contextmenu",e,!0))}}}),[t,n,o,i,l])}(Ee,lr,pe,le,b,x,me,Te);var dr,mr,Or=nr.has("hover"),br=or.has("hover");Or&&(gr("onMouseEnter",!0,h,(function(e){Re(e)})),gr("onPointerEnter",!0,h,(function(e){Re(e)})),dr=function(e){(Ee||Me)&&null!=le&&le.contains(e.target)&&Te(!0,h)},H&&(de.onMouseMove=function(e){var r;null===(r=ge.onMouseMove)||void 0===r||r.call(ge,e)})),br&&(gr("onMouseLeave",!1,d),gr("onPointerLeave",!1,d),mr=function(){Te(!1,d)}),nr.has("focus")&&gr("onFocus",!0,m),or.has("focus")&&gr("onBlur",!1,O),nr.has("contextMenu")&&(de.onContextMenu=function(e){var r;Pe.current&&or.has("contextMenu")?Te(!1):(Re(e),Te(!0)),e.preventDefault();for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o<t;o++)n[o-1]=arguments[o];null===(r=ge.onContextMenu)||void 0===r||r.call.apply(r,[ge,e].concat(n))}),X&&(de.className=jw(ge.className,X));var wr=Fw(Fw({},ge),de),xr={};["onContextMenu","onClick","onMouseDown","onTouchStart","onMouseEnter","onMouseLeave","onFocus","onBlur"].forEach((function(e){Y[e]&&(xr[e]=function(){for(var r,t=arguments.length,n=new Array(t),o=0;o<t;o++)n[o]=arguments[o];null===(r=wr[e])||void 0===r||r.call.apply(r,[wr].concat(n)),Y[e].apply(Y,n)})}));var jr=e.cloneElement(he,Fw(Fw({},wr),xr)),Er={x:Ge,y:Ye},kr=R?Fw({},!0!==R?R:{}):null;return e.createElement(e.Fragment,null,e.createElement(xj,{disabled:!Ee,ref:ve,onResize:function(){hr(),ar()}},e.createElement(NE,{getTriggerDOMNode:G},jr)),e.createElement(ME.Provider,{value:ne},e.createElement(TE,{portal:r,ref:se,prefixCls:i,popup:z,className:jw(S,cr),style:L,target:pe,onMouseEnter:dr,onMouseLeave:mr,onPointerEnter:dr,zIndex:I,open:Ee,keepDom:Me,fresh:A,onClick:_,mask:b,motion:Oe,maskMotion:be,onVisibleChanged:function(e){Ie(!1),er(),null==v||v(e)},onPrepare:function(){return new Promise((function(e){hr(),Ae((function(){return e}))}))},forceRender:E,autoDestroy:J,getPopupContainer:j,align:Qe,arrow:kr,arrowPos:Er,ready:Fe,offsetX:Ue,offsetY:qe,offsetR:Ze,offsetB:Xe,onAlign:ar,stretch:B,targetWidth:ur/Je,targetHeight:yr/Ke})))}));return"production"!==process.env.NODE_ENV&&(t.displayName="Trigger"),t}(Mx),YE={shiftX:64,adjustY:1},JE={adjustX:1,shiftY:!0},KE=[0,0],QE={left:{points:["cr","cl"],overflow:JE,offset:[-4,0],targetOffset:KE},right:{points:["cl","cr"],overflow:JE,offset:[4,0],targetOffset:KE},top:{points:["bc","tc"],overflow:YE,offset:[0,-4],targetOffset:KE},bottom:{points:["tc","bc"],overflow:YE,offset:[0,4],targetOffset:KE},topLeft:{points:["bl","tl"],overflow:YE,offset:[0,-4],targetOffset:KE},leftTop:{points:["tr","tl"],overflow:JE,offset:[-4,0],targetOffset:KE},topRight:{points:["br","tr"],overflow:YE,offset:[0,-4],targetOffset:KE},rightTop:{points:["tl","tr"],overflow:JE,offset:[4,0],targetOffset:KE},bottomRight:{points:["tr","br"],overflow:YE,offset:[0,4],targetOffset:KE},rightBottom:{points:["bl","br"],overflow:JE,offset:[4,0],targetOffset:KE},bottomLeft:{points:["tl","bl"],overflow:YE,offset:[0,4],targetOffset:KE},leftBottom:{points:["br","bl"],overflow:JE,offset:[-4,0],targetOffset:KE}},ek=["overlayClassName","trigger","mouseEnterDelay","mouseLeaveDelay","overlayStyle","prefixCls","children","onVisibleChange","afterVisibleChange","transitionName","animation","motion","placement","align","destroyTooltipOnHide","defaultVisible","getTooltipContainer","overlayInnerStyle","arrowContent","overlay","id","showArrow"],rk=t((function(r,t){var n=r.overlayClassName,o=r.trigger,i=void 0===o?["hover"]:o,l=r.mouseEnterDelay,a=void 0===l?0:l,c=r.mouseLeaveDelay,u=void 0===c?.1:c,f=r.overlayStyle,y=r.prefixCls,v=void 0===y?"rc-tooltip":y,h=r.children,g=r.onVisibleChange,d=r.afterVisibleChange,m=r.transitionName,O=r.animation,b=r.motion,w=r.placement,x=void 0===w?"right":w,j=r.align,E=void 0===j?{}:j,k=r.destroyTooltipOnHide,P=void 0!==k&&k,z=r.defaultVisible,S=r.getTooltipContainer,L=r.overlayInnerStyle;r.arrowContent;var C=r.overlay,T=r.id,N=r.showArrow,M=void 0===N||N,I=Uw(r,ek),B=s(null);p(t,(function(){return B.current}));var W=Fw({},I);"visible"in r&&(W.popupVisible=r.visible);return e.createElement(GE,_w({popupClassName:n,prefixCls:v,popup:function(){return e.createElement(Hw,{key:"content",prefixCls:v,id:T,overlayInnerStyle:L},C)},action:i,builtinPlacements:QE,popupPlacement:x,ref:B,popupAlign:E,getPopupContainer:S,onPopupVisibleChange:g,afterPopupVisibleChange:d,popupTransitionName:m,popupAnimation:O,popupMotion:b,defaultPopupVisible:z,autoDestroy:P,mouseLeaveDelay:u,popupStyle:f,mouseEnterDelay:a,arrow:M},W),h)}));const tk=({title:e,description:t,footer:n,dataTestId:o})=>r.createElement("div",{"data-test-id":o,className:"overflow-hidden break-words px-4 py-2 "+(t||n?"py-4":"")},r.createElement(Tw,{fontWeight:"bold",variant:t||n?"regular":"small",color:"white"},e),t&&r.createElement("div",{className:"mt-2"},r.createElement(Tw,{variant:"small",color:"white"},t)),n&&r.createElement("div",{className:"mt-4"},n)),nk=({overlay:e,title:t,description:n,footer:o,children:i,...a})=>{const c=l((()=>e?r.createElement(r.Fragment,null,e):r.createElement(tk,{title:t,description:n,footer:o})),[n,o,e,t]);return t||n||e?r.createElement(r.Fragment,null,r.createElement(rk,{overlay:c,destroyTooltipOnHide:!0,...a},i)):i||null};export{g as Button,bw as Checkbox,nw as Disable,sw as EditFilled,aw as Error,pw as ExcelFile,yw as FBLike,vw as FBLove,uw as FileUpload,Lw as Heading,ow as Hide,gw as Icon,iw as Info,Nw as Input,fw as Success,Aw as Table,Tw as Text,nk as Tooltip,cw as Upload,lw as Warning,Bw as message};
29
+ //# sourceMappingURL=index.esm.js.map