@deemlol/next-icons 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 21/12/2024 Alexandr Virgovič
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # Next Icons
2
+
3
+ **Next-Icons** is a lightweight library for React and Next.js, designed for simplicity and seamless integration.
4
+
5
+ ![NPM Downloads](https://img.shields.io/npm/:interval/:packageName)
6
+ ![NPM Version](https://img.shields.io/npm/v/next-icons)
7
+ ![NPM License](https://img.shields.io/npm/l/next-icons)
8
+
9
+ ## Important Information
10
+
11
+ - Our website is not done yet, so you can only see avaiable icons in the source code of the package, in **icons** folder.
12
+
13
+ ## Installation
14
+
15
+ yarn add next-icons@latest
16
+
17
+ or
18
+
19
+ npm i next-icons@latest
20
+
21
+ ## Usage
22
+
23
+ ```jsx
24
+ import { ArrowDown } from "next-icons";
25
+
26
+ export default function Page() {
27
+ return <ArrowDown />;
28
+ }
29
+ ```
30
+
31
+ You can also wrap your app inside a `NextIconsProvider` component, so every icon will have the same appearance. If you set specific props for each icon the Provider will be overwritten.
32
+
33
+ ```jsx
34
+ import { ArrowDown, ArrowUp, NextIconsProvider } from "next-icons";
35
+
36
+ export default function Page() {
37
+ return (
38
+ <NextIconsProvider primaryColor="blue" secondaryColor="white" size="xl" stroke="bold" set="bulk">
39
+ <ArrowDown />
40
+ <ArrowUp />
41
+ </NextIconsProvider>
42
+ );
43
+ }
44
+ ```
45
+
46
+ You can also use custom style, if you want to use some effect or something...
47
+
48
+ ```jsx
49
+ <ArrowDown style={{ transform: "rotate(45deg)" }} primaryColor="blue" secondaryColor="white" size="xl" stroke="bold" set="bulk" />
50
+ ```
51
+
52
+ ## Props
53
+
54
+ - Prop: **label** | Type: **string** | Default: **null**
55
+ - Prop: **filled** | Type: **boolean** | Default: **false**
56
+ - Prop: **primaryColor** | Type: **string** | Default: **currentColor**
57
+ - Prop: **secondaryColor** | Type: **string** | Default: **currentColor**
58
+ - Prop: **size** | Type: **string** | Options: **sm**, **md**, **lg**, **xl** | Default: **md**
59
+ - Prop: **set** | Type: **string** | Options: **light**, **bold**, **two-tone**, **bulk**, **broken**, **curved** | Default: **light**
60
+ - Prop: **stroke** | Type: **string** | Options: **light**, **regular**, **bold** | Default: **regular**
61
+ - Prop: **style** | Type: **object**
62
+
63
+ ## License
64
+
65
+ MIT © [Alexandr Virgovič](https://github.com/devdeem)
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ "use strict";var e,t=require("react"),r=(e=t)&&"object"==typeof e&&"default"in e?e.default:e,n=t.createContext();function o(e,t){return e(t={exports:{}},t.exports),t.exports
2
+ /** @license React v16.13.1
3
+ * react-is.production.min.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
+ */}n.displayName="NextIconsContext";var a="function"==typeof Symbol&&Symbol.for,l=a?Symbol.for("react.element"):60103,s=a?Symbol.for("react.portal"):60106,i=a?Symbol.for("react.fragment"):60107,c=a?Symbol.for("react.strict_mode"):60108,u=a?Symbol.for("react.profiler"):60114,m=a?Symbol.for("react.provider"):60109,f=a?Symbol.for("react.context"):60110,d=a?Symbol.for("react.async_mode"):60111,k=a?Symbol.for("react.concurrent_mode"):60111,p=a?Symbol.for("react.forward_ref"):60112,h=a?Symbol.for("react.suspense"):60113,E=a?Symbol.for("react.suspense_list"):60120,L=a?Symbol.for("react.memo"):60115,M=a?Symbol.for("react.lazy"):60116,y=a?Symbol.for("react.block"):60121,g=a?Symbol.for("react.fundamental"):60117,C=a?Symbol.for("react.responder"):60118,v=a?Symbol.for("react.scope"):60119;function A(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case l:switch(e=e.type){case d:case k:case i:case u:case c:case h:return e;default:switch(e=e&&e.$$typeof){case f:case p:case M:case L:case m:return e;default:return t}}case s:return t}}}function b(e){return A(e)===k}var W={AsyncMode:d,ConcurrentMode:k,ContextConsumer:f,ContextProvider:m,Element:l,ForwardRef:p,Fragment:i,Lazy:M,Memo:L,Portal:s,Profiler:u,StrictMode:c,Suspense:h,isAsyncMode:function(e){return b(e)||A(e)===d},isConcurrentMode:b,isContextConsumer:function(e){return A(e)===f},isContextProvider:function(e){return A(e)===m},isElement:function(e){return"object"==typeof e&&null!==e&&e.$$typeof===l},isForwardRef:function(e){return A(e)===p},isFragment:function(e){return A(e)===i},isLazy:function(e){return A(e)===M},isMemo:function(e){return A(e)===L},isPortal:function(e){return A(e)===s},isProfiler:function(e){return A(e)===u},isStrictMode:function(e){return A(e)===c},isSuspense:function(e){return A(e)===h},isValidElementType:function(e){return"string"==typeof e||"function"==typeof e||e===i||e===k||e===u||e===c||e===h||e===E||"object"==typeof e&&null!==e&&(e.$$typeof===M||e.$$typeof===L||e.$$typeof===m||e.$$typeof===f||e.$$typeof===p||e.$$typeof===g||e.$$typeof===C||e.$$typeof===v||e.$$typeof===y)},typeOf:A};function j(){}function V(){}o(function(e,t){}),o(function(e){e.exports=W}),V.resetWarningCache=j;var w=o(function(e){e.exports=function(){function e(e,t,r,n,o,a){if("SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"!==a){var l=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 l.name="Invariant Violation",l}}function t(){return e}e.isRequired=e;var r={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:V,resetWarningCache:j};return r.PropTypes=r,r}()});function x(){return(x=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(null,arguments)}function S(e,t){return(S=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}var Z={sm:"16px",md:"24px",lg:"32px",xl:"48px"},H={light:"1px",regular:"1.5px",bold:"2px"},O=function(e){return Number.isInteger(e)?e+"px":e&&Z[e]?Z[e]:null},T=function(e){return e&&H[e]?H[e]:null},$=function(e,t){return t?e===t?"0.4":"1":"0.4"},N=function(e,t){return t&&t[e]?t[e]:null},P=["primaryColor","secondaryColor","set","style","stroke","filled","label","size"];function _(e){var o=function(t){function n(){return t.apply(this,arguments)||this}return function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,S(e,t)}(n,t),n.prototype.render=function(){var t=this.props,n=t.primaryColor,o=t.secondaryColor,a=t.set,l=t.style,s=t.stroke,i=t.filled,c=t.label,u=t.size,m=function(e,t){if(null==e)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(t.includes(n))continue;r[n]=e[n]}return r}(t,P),f=this.context,d=O(u)||O(N("size",f))||"24px",k=n||N("primaryColor",f)||"currentColor",p=o||N("secondaryColor",f)||k||"currentColor";return r.createElement("svg",x({xmlns:"http://www.w3.org/2000/svg",width:d,height:d,viewBox:"0 0 24 24",role:c?"img":"presentation","aria-label":c||void 0,style:l},m),r.createElement(e,{color:k,opacity:$(n,o),secondaryColor:p,set:i?"bold":a||N("set",f)||"light",strokeWidth:s?T(s):T(N("stroke",f))||"1.5px"}))},n}(r.Component);return o.contextType=n,o.propTypes={label:w.string,filled:w.bool,primaryColor:w.string,secondaryColor:w.string,size:w.oneOfType([w.number,w.oneOf(["sm","md","lg","xl"])]),set:w.oneOf(["bold","bulk","light","broken","two-tone","curved"]),stroke:w.oneOf(["light","regular","bold"]),style:w.oneOfType([w.object,w.array])},t.memo(o)}var I=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(6 3)"},t.createElement("path",{d:"M4.87,17.625c-.059-.058-.305-.274-.51-.477A22.081,22.081,0,0,1,.336,11.257,4.815,4.815,0,0,1,0,10.058a2,2,0,0,1,.22-.91,1.883,1.883,0,0,1,.9-.808,9.781,9.781,0,0,1,1.065-.261,23.616,23.616,0,0,1,3.805-.244,27.187,27.187,0,0,1,3.688.216,8.15,8.15,0,0,1,1.328.347A1.815,1.815,0,0,1,12,10v.058a5.023,5.023,0,0,1-.408,1.343,22.023,22.023,0,0,1-3.966,5.761,5.686,5.686,0,0,1-.553.491A1.771,1.771,0,0,1,6.008,18,1.853,1.853,0,0,1,4.87,17.625ZM4.81,5.2,4.483,1.5a1.518,1.518,0,0,1,3.036,0L7.191,5.2a1.191,1.191,0,0,1-2.381,0Z",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(6 3)"},t.createElement("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:n,opacity:a}),t.createElement("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(5.5 4)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(4 3)"},t.createElement("path",{d:"M6.912,17.759l-6.67-6.6A.81.81,0,0,1,.244,10a.839.839,0,0,1,1.175,0L6.67,15.2V.818a.83.83,0,0,1,1.661,0V17.182a.818.818,0,0,1-.514.756.837.837,0,0,1-.9-.179ZM9.9,14.8a.807.807,0,0,1,0-1.156L13.581,10a.841.841,0,0,1,1.175,0,.811.811,0,0,1,0,1.157L11.079,14.8a.84.84,0,0,1-1.175,0Z",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(5.5 4)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(5.5 4)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};I.displayName="NextIconsArrowDown",I.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var R=_(I),q=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M14.33,20H5.66C2.275,20,0,17.621,0,14.08V5.91C0,2.375,2.275,0,5.66,0h8.67C17.721,0,20,2.375,20,5.91V14.08C20,17.621,17.721,20,14.33,20ZM6.25,9.57a.787.787,0,0,0-.529.22.753.753,0,0,0,0,1.06L9.47,14.62a.772.772,0,0,0,1.06,0l3.75-3.769a.751.751,0,0,0,0-1.06.767.767,0,0,0-1.07,0L10.75,12.27V5.92A.751.751,0,0,0,10,5.17a.742.742,0,0,0-.75.751v6.35L6.78,9.79A.763.763,0,0,0,6.25,9.57Z",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:n,opacity:a}),t.createElement("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};q.displayName="NextIconsArrowDownSquare",q.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var z=_(q),D=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(3 6)"},t.createElement("path",{d:"M7.942,12A5.023,5.023,0,0,1,6.6,11.592,22.626,22.626,0,0,1,1.006,7.8l-.379-.4a3.6,3.6,0,0,1-.281-.334A1.771,1.771,0,0,1,0,6.008,1.853,1.853,0,0,1,.375,4.87l.39-.42.087-.09A22.081,22.081,0,0,1,6.743.336L6.987.242A4.065,4.065,0,0,1,7.942,0a2,2,0,0,1,.91.22,1.883,1.883,0,0,1,.808.9,9.781,9.781,0,0,1,.261,1.065,22.351,22.351,0,0,1,.243,3.451v.354a27.187,27.187,0,0,1-.216,3.688l-.113.544a3.9,3.9,0,0,1-.233.784A1.815,1.815,0,0,1,8,12ZM12.8,7.191a1.191,1.191,0,0,1,0-2.381l3.7-.327a1.518,1.518,0,0,1,0,3.036Z",transform:"translate(0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(21 6) rotate(90)"},t.createElement("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:n,opacity:a}),t.createElement("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(20 5.5) rotate(90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(2.5 4)"},t.createElement("path",{d:"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",transform:"translate(0.5 15.5) rotate(-90)",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(20 5.5) rotate(90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(20 5.5) rotate(90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};D.displayName="NextIconsArrowLeft",D.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var U=_(D),F=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M14.09,20H5.92C2.379,20,0,17.721,0,14.33V5.66C0,2.275,2.379,0,5.92,0h8.17C17.625,0,20,2.275,20,5.66v8.67C20,17.721,17.625,20,14.09,20ZM9.68,5.5a.742.742,0,0,0-.53.218L5.38,9.47a.774.774,0,0,0,0,1.06l3.77,3.75a.754.754,0,0,0,1.059,0,.766.766,0,0,0,0-1.07L7.73,10.75h6.35A.751.751,0,0,0,14.83,10a.742.742,0,0,0-.751-.75H7.73L10.21,6.78a.763.763,0,0,0,.22-.53.787.787,0,0,0-.22-.529A.742.742,0,0,0,9.68,5.5Z",transform:"translate(0 0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(22 2) rotate(90)"},t.createElement("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:n,opacity:a}),t.createElement("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(22 2) rotate(90)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(22 2) rotate(90)"},t.createElement("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(22 2) rotate(90)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(22 2) rotate(90)"},t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};F.displayName="NextIconsArrowLeftSquare",F.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var B=_(F),Y=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(3 6)"},t.createElement("path",{d:"M9.149,11.781a1.889,1.889,0,0,1-.808-.9,9.727,9.727,0,0,1-.261-1.064A22.373,22.373,0,0,1,7.836,6.36V6.007a27.187,27.187,0,0,1,.216-3.688l.113-.544A3.886,3.886,0,0,1,8.4.992,1.814,1.814,0,0,1,10,0h.058A5.023,5.023,0,0,1,11.4.408,22.606,22.606,0,0,1,16.994,4.2l.379.4a3.481,3.481,0,0,1,.281.334A1.766,1.766,0,0,1,18,5.992a1.853,1.853,0,0,1-.375,1.138l-.39.42-.087.09a22.081,22.081,0,0,1-5.891,4.024l-.244.094a4.065,4.065,0,0,1-.955.242A2.005,2.005,0,0,1,9.149,11.781ZM0,6A1.511,1.511,0,0,1,1.5,4.482l3.7.327a1.191,1.191,0,0,1,0,2.381l-3.7.328A1.511,1.511,0,0,1,0,6Z",transform:"translate(0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(3 18) rotate(-90)"},t.createElement("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:n,opacity:a}),t.createElement("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(4 18.5) rotate(-90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(3 4.5)"},t.createElement("path",{d:"M10,14.756a.839.839,0,0,1-.071-1.09L10,13.581,15.2,8.33H.818a.831.831,0,0,1-.1-1.654l.1-.006H17.182a.818.818,0,0,1,.756.513A.841.841,0,0,1,17.832,8l-.073.083-6.6,6.671a.81.81,0,0,1-1.156,0Zm3.726-9.584L13.645,5.1,10,1.418A.839.839,0,0,1,10,.244.81.81,0,0,1,11.075.167l.085.075L14.8,3.92a.841.841,0,0,1,0,1.175.808.808,0,0,1-1.073.077Z",transform:"translate(0 0)",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(4 18.5) rotate(-90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(4 18.5) rotate(-90)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};Y.displayName="NextIconsArrowRight",Y.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var G=_(Y),J=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M14.08,20H5.91C2.375,20,0,17.725,0,14.34V5.67C0,2.279,2.375,0,5.91,0H14.08C17.621,0,20,2.279,20,5.67v8.67C20,17.725,17.621,20,14.08,20ZM5.92,9.25A.751.751,0,0,0,5.17,10a.742.742,0,0,0,.751.75h6.35L9.79,13.22a.763.763,0,0,0-.22.53.792.792,0,0,0,.22.53.755.755,0,0,0,1.06,0l3.769-3.75a.772.772,0,0,0,0-1.06L10.85,5.72a.753.753,0,0,0-1.06,0,.766.766,0,0,0,0,1.069L12.27,9.25Z",transform:"translate(0 0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(2 22) rotate(-90)"},t.createElement("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:n,opacity:a}),t.createElement("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(2 22) rotate(-90)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(2 22) rotate(-90)"},t.createElement("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(2 22) rotate(-90)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(2 22) rotate(-90)"},t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};J.displayName="NextIconsArrowRightSquare",J.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var K=_(J),Q=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(6 3)"},t.createElement("path",{d:"M4.482,16.5l.327-3.7a1.191,1.191,0,0,1,2.381,0l.328,3.7a1.518,1.518,0,0,1-3.036,0ZM2.318,9.949l-.544-.113A3.886,3.886,0,0,1,.992,9.6,1.814,1.814,0,0,1,0,8V7.942A5.023,5.023,0,0,1,.408,6.6,22.605,22.605,0,0,1,4.2,1.006l.4-.379A3.481,3.481,0,0,1,4.928.347,1.766,1.766,0,0,1,5.992,0,1.853,1.853,0,0,1,7.13.375l.42.39.09.087a22.081,22.081,0,0,1,4.024,5.891l.094.244A4.065,4.065,0,0,1,12,7.942a2.005,2.005,0,0,1-.219.91,1.889,1.889,0,0,1-.9.808,9.728,9.728,0,0,1-1.064.261,22.373,22.373,0,0,1-3.452.243H6.007A27.187,27.187,0,0,1,2.318,9.949Z",transform:"translate(0 0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(18 21) rotate(180)"},t.createElement("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:n,opacity:a}),t.createElement("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(18.5 20) rotate(180)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(4.5 3)"},t.createElement("path",{d:"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",transform:"translate(0)",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(18.5 20) rotate(180)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(18.5 20) rotate(180)"},t.createElement("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};Q.displayName="NextIconsArrowUp",Q.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var X=_(Q),ee=function(e){var r=e.color,n=e.secondaryColor,o=e.strokeWidth,a=e.opacity,l=function(){return t.createElement("g",{transform:"translate(2 2)"},t.createElement("path",{d:"M14.34,20H5.67C2.279,20,0,17.625,0,14.09V5.92C0,2.379,2.279,0,5.67,0h8.67C17.725,0,20,2.379,20,5.92v8.17C20,17.625,17.725,20,14.34,20ZM9.25,7.73v6.35a.751.751,0,0,0,.75.751.742.742,0,0,0,.75-.751V7.73l2.47,2.479a.763.763,0,0,0,.53.22.792.792,0,0,0,.53-.22.75.75,0,0,0,0-1.059L10.53,5.38a.774.774,0,0,0-1.06,0L5.72,9.15a.752.752,0,0,0,0,1.059.764.764,0,0,0,1.069,0L9.248,7.732Z",transform:"translate(0 0)",fill:r}))},s=function(){return t.createElement("g",{transform:"translate(22 22) rotate(180)"},t.createElement("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:n,opacity:a}),t.createElement("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},i=function(){return t.createElement("g",{transform:"translate(22 22) rotate(180)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},c=function(){return t.createElement("g",{transform:"translate(22 22) rotate(180)"},t.createElement("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},u=function(){return t.createElement("g",{transform:"translate(22 22) rotate(180)"},t.createElement("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:n,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},m=function(){return t.createElement("g",{transform:"translate(22 22) rotate(180)"},t.createElement("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),t.createElement("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(e.set){case"bold":return t.createElement(l,null);case"bulk":return t.createElement(s,null);case"broken":return t.createElement(c,null);case"two-tone":return t.createElement(u,null);case"curved":return t.createElement(m,null);default:return t.createElement(i,null)}};ee.displayName="NextIconsArrowUpSquare",ee.propTypes={opacity:w.string,color:w.string,secondaryColor:w.string,set:w.string,strokeWidth:w.oneOfType([w.string,w.number])};var te=_(ee);exports.ArrowDown=R,exports.ArrowDownSquare=z,exports.ArrowLeft=U,exports.ArrowLeftSquare=B,exports.ArrowRight=G,exports.ArrowRightSquare=K,exports.ArrowUp=X,exports.ArrowUpSquare=te,exports.NextIconsProvider=function(e){return r.createElement(n.Provider,{value:{primaryColor:e.primaryColor||"currentColor",secondaryColor:e.secondaryColor||null,set:e.set||"light",size:e.size||"md",stroke:e.stroke||"regular"}},e.children)};
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../src/lib/context.js","../node_modules/react-is/cjs/react-is.production.min.js","../node_modules/prop-types/factoryWithThrowingShims.js","../node_modules/react-is/index.js","../node_modules/prop-types/index.js","../node_modules/prop-types/lib/ReactPropTypesSecret.js","../src/lib/constants.js","../src/lib/utils.js","../src/lib/withIcon.js","../src/icons/ArrowDown.js","../src/icons/ArrowDownSquare.js","../src/icons/ArrowLeft.js","../src/icons/ArrowLeftSquare.js","../src/icons/ArrowRight.js","../src/icons/ArrowRightSquare.js","../src/icons/ArrowUp.js","../src/icons/ArrowUpSquare.js"],"sourcesContent":["import React, { createContext } from \"react\";\n\nexport const NextIconsContext = createContext();\nNextIconsContext.displayName = \"NextIconsContext\";\n\nexport const NextIconsProvider = ({ children, primaryColor, secondaryColor, set, size, stroke }) => {\n\tconst defaultValues = {\n\t\tprimaryColor: primaryColor || \"currentColor\",\n\t\tsecondaryColor: secondaryColor || null,\n\t\tset: set || \"light\",\n\t\tsize: size || \"md\",\n\t\tstroke: stroke || \"regular\"\n\t};\n\n\treturn <NextIconsContext.Provider value={defaultValues}>{children}</NextIconsContext.Provider>;\n};\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","export const sizes = {\n\tsm: \"16px\",\n\tmd: \"24px\",\n\tlg: \"32px\",\n\txl: \"48px\"\n};\n\nexport const strokes = {\n\tlight: \"1px\",\n\tregular: \"1.5px\",\n\tbold: \"2px\"\n};\n","import { sizes, strokes } from \"./constants\";\n\nexport const isBrowser = typeof window !== \"undefined\";\n\nexport const getSize = (size) => {\n\tif (Number.isInteger(size)) {\n\t\treturn `${size}px`;\n\t}\n\n\treturn size && sizes[size] ? sizes[size] : null;\n};\n\nexport const getStroke = (stroke) => {\n\treturn stroke && strokes[stroke] ? strokes[stroke] : null;\n};\n\nexport const getOpacity = (primaryColor, secondaryColor) => {\n\tif (!secondaryColor) return \"0.4\";\n\n\treturn primaryColor === secondaryColor ? \"0.4\" : \"1\";\n};\n\nexport const getThemeProp = (prop, theme) => {\n\treturn theme && theme[prop] ? theme[prop] : null;\n};\n","import React, { memo } from \"react\";\nimport PropTypes from \"prop-types\";\n\nimport { getSize, getThemeProp, getStroke, getOpacity } from \"./utils\";\nimport { NextIconsContext } from \"./context\";\n\nfunction withIcon(Component) {\n\tclass IconWrapper extends React.Component {\n\t\tstatic contextType = NextIconsContext;\n\n\t\trender() {\n\t\t\tconst { primaryColor, secondaryColor, set, style, stroke, filled, label, size, ...restProps } = this.props;\n\n\t\t\tconst theme = this.context;\n\t\t\tconst iconSize = getSize(size) || getSize(getThemeProp(\"size\", theme)) || \"24px\";\n\t\t\tconst iconPrimaryColor = primaryColor || getThemeProp(\"primaryColor\", theme) || \"currentColor\";\n\t\t\tconst iconSecondaryColor = secondaryColor || getThemeProp(\"secondaryColor\", theme) || iconPrimaryColor || \"currentColor\";\n\n\t\t\treturn (\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\twidth={iconSize}\n\t\t\t\t\theight={iconSize}\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\trole={label ? \"img\" : \"presentation\"}\n\t\t\t\t\taria-label={label || undefined}\n\t\t\t\t\tstyle={style}\n\t\t\t\t\t{...restProps}\n\t\t\t\t>\n\t\t\t\t\t<Component\n\t\t\t\t\t\tcolor={iconPrimaryColor}\n\t\t\t\t\t\topacity={getOpacity(primaryColor, secondaryColor)}\n\t\t\t\t\t\tsecondaryColor={iconSecondaryColor}\n\t\t\t\t\t\tset={filled ? \"bold\" : set || getThemeProp(\"set\", theme) || \"light\"}\n\t\t\t\t\t\tstrokeWidth={stroke ? getStroke(stroke) : getStroke(getThemeProp(\"stroke\", theme)) || \"1.5px\"}\n\t\t\t\t\t/>\n\t\t\t\t</svg>\n\t\t\t);\n\t\t}\n\t}\n\n\tIconWrapper.propTypes = {\n\t\t/**\n\t\t * String that will be used as the `aria-label` attribute\n\t\t *\n\t\t * Default: \"null\"\n\t\t * NOTE: Use an empty string when you already have readable text around the icon, like text inside a button!\n\t\t */\n\t\tlabel: PropTypes.string,\n\n\t\t/**\n\t\t * Set the icon to filled style\n\t\t *\n\t\t * Default: \"false\"\n\t\t */\n\t\tfilled: PropTypes.bool,\n\n\t\t/**\n\t\t *\n\t\t * The primary color of the icon\n\t\t *\n\t\t * Default: \"currentColor\"\n\t\t */\n\t\tprimaryColor: PropTypes.string,\n\n\t\t/**\n\t\t * The secondary color of the icon\n\t\t *\n\t\t * Default: \"null\"\n\t\t */\n\t\tsecondaryColor: PropTypes.string,\n\n\t\t/**\n\t\t * The size of the icon\n\t\t *\n\t\t * Default: \"md\"\n\t\t */\n\t\tsize: PropTypes.oneOfType([PropTypes.number, PropTypes.oneOf([\"sm\", \"md\", \"lg\", \"xl\"])]),\n\n\t\t/**\n\t\t * Icon set options\n\t\t *\n\t\t * Default: \"light\"\n\t\t *\n\t\t * Options:\n\t\t * - Bold\n\t\t * - Bulk\n\t\t * - Light | Border (default)\n\t\t * - Light | Outline\n\t\t * - Broken\n\t\t * - Two Tone\n\t\t * - Curved\n\t\t */\n\t\tset: PropTypes.oneOf([\"bold\", \"bulk\", \"light\", \"broken\", \"two-tone\", \"curved\"]),\n\n\t\t/**\n\t\t * The stroke width of the icon\n\t\t *\n\t\t * Default: \"regular\"\n\t\t */\n\t\tstroke: PropTypes.oneOf([\"light\", \"regular\", \"bold\"]),\n\n\t\t/**\n\t\t * Your custom style property\n\t\t */\n\t\tstyle: PropTypes.oneOfType([PropTypes.object, PropTypes.array])\n\t};\n\n\tconst MemoIcon = memo(IconWrapper);\n\treturn MemoIcon;\n}\n\nexport default withIcon;\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowDown = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M4.87,17.625c-.059-.058-.305-.274-.51-.477A22.081,22.081,0,0,1,.336,11.257,4.815,4.815,0,0,1,0,10.058a2,2,0,0,1,.22-.91,1.883,1.883,0,0,1,.9-.808,9.781,9.781,0,0,1,1.065-.261,23.616,23.616,0,0,1,3.805-.244,27.187,27.187,0,0,1,3.688.216,8.15,8.15,0,0,1,1.328.347A1.815,1.815,0,0,1,12,10v.058a5.023,5.023,0,0,1-.408,1.343,22.023,22.023,0,0,1-3.966,5.761,5.686,5.686,0,0,1-.553.491A1.771,1.771,0,0,1,6.008,18,1.853,1.853,0,0,1,4.87,17.625ZM4.81,5.2,4.483,1.5a1.518,1.518,0,0,1,3.036,0L7.191,5.2a1.191,1.191,0,0,1-2.381,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(4 3)\">\n\t\t\t<path\n\t\t\t\td=\"M6.912,17.759l-6.67-6.6A.81.81,0,0,1,.244,10a.839.839,0,0,1,1.175,0L6.67,15.2V.818a.83.83,0,0,1,1.661,0V17.182a.818.818,0,0,1-.514.756.837.837,0,0,1-.9-.179ZM9.9,14.8a.807.807,0,0,1,0-1.156L13.581,10a.841.841,0,0,1,1.175,0,.811.811,0,0,1,0,1.157L11.079,14.8a.84.84,0,0,1-1.175,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowDown.displayName = \"NextIconsArrowDown\";\n\nArrowDown.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowDown);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowDownSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.33,20H5.66C2.275,20,0,17.621,0,14.08V5.91C0,2.375,2.275,0,5.66,0h8.67C17.721,0,20,2.375,20,5.91V14.08C20,17.621,17.721,20,14.33,20ZM6.25,9.57a.787.787,0,0,0-.529.22.753.753,0,0,0,0,1.06L9.47,14.62a.772.772,0,0,0,1.06,0l3.75-3.769a.751.751,0,0,0,0-1.06.767.767,0,0,0-1.07,0L10.75,12.27V5.92A.751.751,0,0,0,10,5.17a.742.742,0,0,0-.75.751v6.35L6.78,9.79A.763.763,0,0,0,6.25,9.57Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowDownSquare.displayName = \"NextIconsArrowDownSquare\";\n\nArrowDownSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowDownSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowLeft = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(3 6)\">\n\t\t\t<path\n\t\t\t\td=\"M7.942,12A5.023,5.023,0,0,1,6.6,11.592,22.626,22.626,0,0,1,1.006,7.8l-.379-.4a3.6,3.6,0,0,1-.281-.334A1.771,1.771,0,0,1,0,6.008,1.853,1.853,0,0,1,.375,4.87l.39-.42.087-.09A22.081,22.081,0,0,1,6.743.336L6.987.242A4.065,4.065,0,0,1,7.942,0a2,2,0,0,1,.91.22,1.883,1.883,0,0,1,.808.9,9.781,9.781,0,0,1,.261,1.065,22.351,22.351,0,0,1,.243,3.451v.354a27.187,27.187,0,0,1-.216,3.688l-.113.544a3.9,3.9,0,0,1-.233.784A1.815,1.815,0,0,1,8,12ZM12.8,7.191a1.191,1.191,0,0,1,0-2.381l3.7-.327a1.518,1.518,0,0,1,0,3.036Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(21 6) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z\"\n\t\t\t\ttransform=\"translate(0.5 15.5) rotate(-90)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowLeft.displayName = \"NextIconsArrowLeft\";\n\nArrowLeft.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowLeft);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowLeftSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.09,20H5.92C2.379,20,0,17.721,0,14.33V5.66C0,2.275,2.379,0,5.92,0h8.17C17.625,0,20,2.275,20,5.66v8.67C20,17.721,17.625,20,14.09,20ZM9.68,5.5a.742.742,0,0,0-.53.218L5.38,9.47a.774.774,0,0,0,0,1.06l3.77,3.75a.754.754,0,0,0,1.059,0,.766.766,0,0,0,0-1.07L7.73,10.75h6.35A.751.751,0,0,0,14.83,10a.742.742,0,0,0-.751-.75H7.73L10.21,6.78a.763.763,0,0,0,.22-.53.787.787,0,0,0-.22-.529A.742.742,0,0,0,9.68,5.5Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowLeftSquare.displayName = \"NextIconsArrowLeftSquare\";\n\nArrowLeftSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowLeftSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowRight = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(3 6)\">\n\t\t\t<path\n\t\t\t\td=\"M9.149,11.781a1.889,1.889,0,0,1-.808-.9,9.727,9.727,0,0,1-.261-1.064A22.373,22.373,0,0,1,7.836,6.36V6.007a27.187,27.187,0,0,1,.216-3.688l.113-.544A3.886,3.886,0,0,1,8.4.992,1.814,1.814,0,0,1,10,0h.058A5.023,5.023,0,0,1,11.4.408,22.606,22.606,0,0,1,16.994,4.2l.379.4a3.481,3.481,0,0,1,.281.334A1.766,1.766,0,0,1,18,5.992a1.853,1.853,0,0,1-.375,1.138l-.39.42-.087.09a22.081,22.081,0,0,1-5.891,4.024l-.244.094a4.065,4.065,0,0,1-.955.242A2.005,2.005,0,0,1,9.149,11.781ZM0,6A1.511,1.511,0,0,1,1.5,4.482l3.7.327a1.191,1.191,0,0,1,0,2.381l-3.7.328A1.511,1.511,0,0,1,0,6Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(3 18) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(3 4.5)\">\n\t\t\t<path\n\t\t\t\td=\"M10,14.756a.839.839,0,0,1-.071-1.09L10,13.581,15.2,8.33H.818a.831.831,0,0,1-.1-1.654l.1-.006H17.182a.818.818,0,0,1,.756.513A.841.841,0,0,1,17.832,8l-.073.083-6.6,6.671a.81.81,0,0,1-1.156,0Zm3.726-9.584L13.645,5.1,10,1.418A.839.839,0,0,1,10,.244.81.81,0,0,1,11.075.167l.085.075L14.8,3.92a.841.841,0,0,1,0,1.175.808.808,0,0,1-1.073.077Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowRight.displayName = \"NextIconsArrowRight\";\n\nArrowRight.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowRight);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowRightSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.08,20H5.91C2.375,20,0,17.725,0,14.34V5.67C0,2.279,2.375,0,5.91,0H14.08C17.621,0,20,2.279,20,5.67v8.67C20,17.725,17.621,20,14.08,20ZM5.92,9.25A.751.751,0,0,0,5.17,10a.742.742,0,0,0,.751.75h6.35L9.79,13.22a.763.763,0,0,0-.22.53.792.792,0,0,0,.22.53.755.755,0,0,0,1.06,0l3.769-3.75a.772.772,0,0,0,0-1.06L10.85,5.72a.753.753,0,0,0-1.06,0,.766.766,0,0,0,0,1.069L12.27,9.25Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowRightSquare.displayName = \"NextIconsArrowRightSquare\";\n\nArrowRightSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowRightSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowUp = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M4.482,16.5l.327-3.7a1.191,1.191,0,0,1,2.381,0l.328,3.7a1.518,1.518,0,0,1-3.036,0ZM2.318,9.949l-.544-.113A3.886,3.886,0,0,1,.992,9.6,1.814,1.814,0,0,1,0,8V7.942A5.023,5.023,0,0,1,.408,6.6,22.605,22.605,0,0,1,4.2,1.006l.4-.379A3.481,3.481,0,0,1,4.928.347,1.766,1.766,0,0,1,5.992,0,1.853,1.853,0,0,1,7.13.375l.42.39.09.087a22.081,22.081,0,0,1,4.024,5.891l.094.244A4.065,4.065,0,0,1,12,7.942a2.005,2.005,0,0,1-.219.91,1.889,1.889,0,0,1-.9.808,9.728,9.728,0,0,1-1.064.261,22.373,22.373,0,0,1-3.452.243H6.007A27.187,27.187,0,0,1,2.318,9.949Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(18 21) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(4.5 3)\">\n\t\t\t<path\n\t\t\t\td=\"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowUp.displayName = \"NextIconsArrowUp\";\n\nArrowUp.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowUp);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowUpSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.34,20H5.67C2.279,20,0,17.625,0,14.09V5.92C0,2.379,2.279,0,5.67,0h8.67C17.725,0,20,2.379,20,5.92v8.17C20,17.625,17.725,20,14.34,20ZM9.25,7.73v6.35a.751.751,0,0,0,.75.751.742.742,0,0,0,.75-.751V7.73l2.47,2.479a.763.763,0,0,0,.53.22.792.792,0,0,0,.53-.22.75.75,0,0,0,0-1.059L10.53,5.38a.774.774,0,0,0-1.06,0L5.72,9.15a.752.752,0,0,0,0,1.059.764.764,0,0,0,1.069,0L9.248,7.732Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowUpSquare.displayName = \"NextIconsArrowUpSquare\";\n\nArrowUpSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowUpSquare);\n"],"names":["NextIconsContext","createContext","displayName","b","Symbol","for","c","d","e","f","g","h","k","l","m","n","p","q","r","t","v","w","x","y","z","a","u","$$typeof","type","A","emptyFunction","emptyFunctionWithReset","module","require$$0","resetWarningCache","shim","props","propName","componentName","location","propFullName","secret","err","Error","name","getShim","isRequired","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","require$$2","sizes","sm","md","lg","xl","strokes","light","regular","bold","getSize","size","Number","isInteger","getStroke","stroke","getOpacity","primaryColor","secondaryColor","getThemeProp","prop","theme","withIcon","Component","IconWrapper","_React$Component","apply","arguments","_inheritsLoose","prototype","render","_this$props","this","set","style","filled","label","restProps","_objectWithoutPropertiesLoose","_excluded","context","iconSize","iconPrimaryColor","iconSecondaryColor","React","createElement","_extends","xmlns","width","height","viewBox","role","aria-label","undefined","color","opacity","strokeWidth","contextType","propTypes","memo","ArrowDown","_ref","Bold","transform","fill","Bulk","Light","strokeLinecap","strokeLinejoin","strokeMiterlimit","Broken","TwoTone","Curved","ArrowDownSquare","ArrowLeft","ArrowLeftSquare","ArrowRight","ArrowRightSquare","ArrowUp","ArrowUpSquare","Provider","value","children"],"mappings":"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"}
@@ -0,0 +1,10 @@
1
+ import t,{createContext as r,memo as e,createElement as n}from"react";var o=r();o.displayName="NextIconsContext";var a=function(r){return t.createElement(o.Provider,{value:{primaryColor:r.primaryColor||"currentColor",secondaryColor:r.secondaryColor||null,set:r.set||"light",size:r.size||"md",stroke:r.stroke||"regular"}},r.children)};function s(t,r){return t(r={exports:{}},r.exports),r.exports
2
+ /** @license React v16.13.1
3
+ * react-is.production.min.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
+ */}var i="function"==typeof Symbol&&Symbol.for,l=i?Symbol.for("react.element"):60103,u=i?Symbol.for("react.portal"):60106,c=i?Symbol.for("react.fragment"):60107,f=i?Symbol.for("react.strict_mode"):60108,d=i?Symbol.for("react.profiler"):60114,k=i?Symbol.for("react.provider"):60109,p=i?Symbol.for("react.context"):60110,m=i?Symbol.for("react.async_mode"):60111,h=i?Symbol.for("react.concurrent_mode"):60111,L=i?Symbol.for("react.forward_ref"):60112,M=i?Symbol.for("react.suspense"):60113,y=i?Symbol.for("react.suspense_list"):60120,g=i?Symbol.for("react.memo"):60115,C=i?Symbol.for("react.lazy"):60116,v=i?Symbol.for("react.block"):60121,A=i?Symbol.for("react.fundamental"):60117,b=i?Symbol.for("react.responder"):60118,W=i?Symbol.for("react.scope"):60119;function j(t){if("object"==typeof t&&null!==t){var r=t.$$typeof;switch(r){case l:switch(t=t.type){case m:case h:case c:case d:case f:case M:return t;default:switch(t=t&&t.$$typeof){case p:case L:case C:case g:case k:return t;default:return r}}case u:return r}}}function V(t){return j(t)===h}var w={AsyncMode:m,ConcurrentMode:h,ContextConsumer:p,ContextProvider:k,Element:l,ForwardRef:L,Fragment:c,Lazy:C,Memo:g,Portal:u,Profiler:d,StrictMode:f,Suspense:M,isAsyncMode:function(t){return V(t)||j(t)===m},isConcurrentMode:V,isContextConsumer:function(t){return j(t)===p},isContextProvider:function(t){return j(t)===k},isElement:function(t){return"object"==typeof t&&null!==t&&t.$$typeof===l},isForwardRef:function(t){return j(t)===L},isFragment:function(t){return j(t)===c},isLazy:function(t){return j(t)===C},isMemo:function(t){return j(t)===g},isPortal:function(t){return j(t)===u},isProfiler:function(t){return j(t)===d},isStrictMode:function(t){return j(t)===f},isSuspense:function(t){return j(t)===M},isValidElementType:function(t){return"string"==typeof t||"function"==typeof t||t===c||t===h||t===d||t===f||t===M||t===y||"object"==typeof t&&null!==t&&(t.$$typeof===C||t.$$typeof===g||t.$$typeof===k||t.$$typeof===p||t.$$typeof===L||t.$$typeof===A||t.$$typeof===b||t.$$typeof===W||t.$$typeof===v)},typeOf:j};function S(){}function Z(){}s(function(t,r){}),s(function(t){t.exports=w}),Z.resetWarningCache=S;var x=s(function(t){t.exports=function(){function t(t,r,e,n,o,a){if("SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"!==a){var s=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 s.name="Invariant Violation",s}}function r(){return t}t.isRequired=t;var e={array:t,bigint:t,bool:t,func:t,number:t,object:t,string:t,symbol:t,any:t,arrayOf:r,element:t,elementType:t,instanceOf:r,node:t,objectOf:r,oneOf:r,oneOfType:r,shape:r,exact:r,checkPropTypes:Z,resetWarningCache:S};return e.PropTypes=e,e}()});function H(){return(H=Object.assign?Object.assign.bind():function(t){for(var r=1;r<arguments.length;r++){var e=arguments[r];for(var n in e)({}).hasOwnProperty.call(e,n)&&(t[n]=e[n])}return t}).apply(null,arguments)}function O(t,r){return(O=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,r){return t.__proto__=r,t})(t,r)}var T={sm:"16px",md:"24px",lg:"32px",xl:"48px"},$={light:"1px",regular:"1.5px",bold:"2px"},N=function(t){return Number.isInteger(t)?t+"px":t&&T[t]?T[t]:null},_=function(t){return t&&$[t]?$[t]:null},P=function(t,r){return r?t===r?"0.4":"1":"0.4"},I=function(t,r){return r&&r[t]?r[t]:null},E=["primaryColor","secondaryColor","set","style","stroke","filled","label","size"];function R(r){var n=function(e){function n(){return e.apply(this,arguments)||this}return function(t,r){t.prototype=Object.create(r.prototype),t.prototype.constructor=t,O(t,r)}(n,e),n.prototype.render=function(){var e=this.props,n=e.primaryColor,o=e.secondaryColor,a=e.set,s=e.style,i=e.stroke,l=e.filled,u=e.label,c=e.size,f=function(t,r){if(null==t)return{};var e={};for(var n in t)if({}.hasOwnProperty.call(t,n)){if(r.includes(n))continue;e[n]=t[n]}return e}(e,E),d=this.context,k=N(c)||N(I("size",d))||"24px",p=n||I("primaryColor",d)||"currentColor",m=o||I("secondaryColor",d)||p||"currentColor";return t.createElement("svg",H({xmlns:"http://www.w3.org/2000/svg",width:k,height:k,viewBox:"0 0 24 24",role:u?"img":"presentation","aria-label":u||void 0,style:s},f),t.createElement(r,{color:p,opacity:P(n,o),secondaryColor:m,set:l?"bold":a||I("set",d)||"light",strokeWidth:i?_(i):_(I("stroke",d))||"1.5px"}))},n}(t.Component);return n.contextType=o,n.propTypes={label:x.string,filled:x.bool,primaryColor:x.string,secondaryColor:x.string,size:x.oneOfType([x.number,x.oneOf(["sm","md","lg","xl"])]),set:x.oneOf(["bold","bulk","light","broken","two-tone","curved"]),stroke:x.oneOf(["light","regular","bold"]),style:x.oneOfType([x.object,x.array])},e(n)}var q=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(6 3)"},n("path",{d:"M4.87,17.625c-.059-.058-.305-.274-.51-.477A22.081,22.081,0,0,1,.336,11.257,4.815,4.815,0,0,1,0,10.058a2,2,0,0,1,.22-.91,1.883,1.883,0,0,1,.9-.808,9.781,9.781,0,0,1,1.065-.261,23.616,23.616,0,0,1,3.805-.244,27.187,27.187,0,0,1,3.688.216,8.15,8.15,0,0,1,1.328.347A1.815,1.815,0,0,1,12,10v.058a5.023,5.023,0,0,1-.408,1.343,22.023,22.023,0,0,1-3.966,5.761,5.686,5.686,0,0,1-.553.491A1.771,1.771,0,0,1,6.008,18,1.853,1.853,0,0,1,4.87,17.625ZM4.81,5.2,4.483,1.5a1.518,1.518,0,0,1,3.036,0L7.191,5.2a1.191,1.191,0,0,1-2.381,0Z",fill:r}))},i=function(){return n("g",{transform:"translate(6 3)"},n("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:e,opacity:a}),n("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},l=function(){return n("g",{transform:"translate(5.5 4)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(4 3)"},n("path",{d:"M6.912,17.759l-6.67-6.6A.81.81,0,0,1,.244,10a.839.839,0,0,1,1.175,0L6.67,15.2V.818a.83.83,0,0,1,1.661,0V17.182a.818.818,0,0,1-.514.756.837.837,0,0,1-.9-.179ZM9.9,14.8a.807.807,0,0,1,0-1.156L13.581,10a.841.841,0,0,1,1.175,0,.811.811,0,0,1,0,1.157L11.079,14.8a.84.84,0,0,1-1.175,0Z",fill:r}))},c=function(){return n("g",{transform:"translate(5.5 4)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(5.5 4)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};q.displayName="NextIconsArrowDown",q.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var z=R(q),D=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M14.33,20H5.66C2.275,20,0,17.621,0,14.08V5.91C0,2.375,2.275,0,5.66,0h8.67C17.721,0,20,2.375,20,5.91V14.08C20,17.621,17.721,20,14.33,20ZM6.25,9.57a.787.787,0,0,0-.529.22.753.753,0,0,0,0,1.06L9.47,14.62a.772.772,0,0,0,1.06,0l3.75-3.769a.751.751,0,0,0,0-1.06.767.767,0,0,0-1.07,0L10.75,12.27V5.92A.751.751,0,0,0,10,5.17a.742.742,0,0,0-.75.751v6.35L6.78,9.79A.763.763,0,0,0,6.25,9.57Z",fill:r}))},i=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:e,opacity:a}),n("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},l=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},c=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};D.displayName="NextIconsArrowDownSquare",D.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var U=R(D),F=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(3 6)"},n("path",{d:"M7.942,12A5.023,5.023,0,0,1,6.6,11.592,22.626,22.626,0,0,1,1.006,7.8l-.379-.4a3.6,3.6,0,0,1-.281-.334A1.771,1.771,0,0,1,0,6.008,1.853,1.853,0,0,1,.375,4.87l.39-.42.087-.09A22.081,22.081,0,0,1,6.743.336L6.987.242A4.065,4.065,0,0,1,7.942,0a2,2,0,0,1,.91.22,1.883,1.883,0,0,1,.808.9,9.781,9.781,0,0,1,.261,1.065,22.351,22.351,0,0,1,.243,3.451v.354a27.187,27.187,0,0,1-.216,3.688l-.113.544a3.9,3.9,0,0,1-.233.784A1.815,1.815,0,0,1,8,12ZM12.8,7.191a1.191,1.191,0,0,1,0-2.381l3.7-.327a1.518,1.518,0,0,1,0,3.036Z",transform:"translate(0)",fill:r}))},i=function(){return n("g",{transform:"translate(21 6) rotate(90)"},n("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:e,opacity:a}),n("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},l=function(){return n("g",{transform:"translate(20 5.5) rotate(90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(2.5 4)"},n("path",{d:"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",transform:"translate(0.5 15.5) rotate(-90)",fill:r}))},c=function(){return n("g",{transform:"translate(20 5.5) rotate(90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(20 5.5) rotate(90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};F.displayName="NextIconsArrowLeft",F.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var B=R(F),Y=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M14.09,20H5.92C2.379,20,0,17.721,0,14.33V5.66C0,2.275,2.379,0,5.92,0h8.17C17.625,0,20,2.275,20,5.66v8.67C20,17.721,17.625,20,14.09,20ZM9.68,5.5a.742.742,0,0,0-.53.218L5.38,9.47a.774.774,0,0,0,0,1.06l3.77,3.75a.754.754,0,0,0,1.059,0,.766.766,0,0,0,0-1.07L7.73,10.75h6.35A.751.751,0,0,0,14.83,10a.742.742,0,0,0-.751-.75H7.73L10.21,6.78a.763.763,0,0,0,.22-.53.787.787,0,0,0-.22-.529A.742.742,0,0,0,9.68,5.5Z",transform:"translate(0 0)",fill:r}))},i=function(){return n("g",{transform:"translate(22 2) rotate(90)"},n("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:e,opacity:a}),n("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},l=function(){return n("g",{transform:"translate(22 2) rotate(90)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(22 2) rotate(90)"},n("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},c=function(){return n("g",{transform:"translate(22 2) rotate(90)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(22 2) rotate(90)"},n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};Y.displayName="NextIconsArrowLeftSquare",Y.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var G=R(Y),J=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(3 6)"},n("path",{d:"M9.149,11.781a1.889,1.889,0,0,1-.808-.9,9.727,9.727,0,0,1-.261-1.064A22.373,22.373,0,0,1,7.836,6.36V6.007a27.187,27.187,0,0,1,.216-3.688l.113-.544A3.886,3.886,0,0,1,8.4.992,1.814,1.814,0,0,1,10,0h.058A5.023,5.023,0,0,1,11.4.408,22.606,22.606,0,0,1,16.994,4.2l.379.4a3.481,3.481,0,0,1,.281.334A1.766,1.766,0,0,1,18,5.992a1.853,1.853,0,0,1-.375,1.138l-.39.42-.087.09a22.081,22.081,0,0,1-5.891,4.024l-.244.094a4.065,4.065,0,0,1-.955.242A2.005,2.005,0,0,1,9.149,11.781ZM0,6A1.511,1.511,0,0,1,1.5,4.482l3.7.327a1.191,1.191,0,0,1,0,2.381l-3.7.328A1.511,1.511,0,0,1,0,6Z",transform:"translate(0)",fill:r}))},i=function(){return n("g",{transform:"translate(3 18) rotate(-90)"},n("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:e,opacity:a}),n("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},l=function(){return n("g",{transform:"translate(4 18.5) rotate(-90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(3 4.5)"},n("path",{d:"M10,14.756a.839.839,0,0,1-.071-1.09L10,13.581,15.2,8.33H.818a.831.831,0,0,1-.1-1.654l.1-.006H17.182a.818.818,0,0,1,.756.513A.841.841,0,0,1,17.832,8l-.073.083-6.6,6.671a.81.81,0,0,1-1.156,0Zm3.726-9.584L13.645,5.1,10,1.418A.839.839,0,0,1,10,.244.81.81,0,0,1,11.075.167l.085.075L14.8,3.92a.841.841,0,0,1,0,1.175.808.808,0,0,1-1.073.077Z",transform:"translate(0 0)",fill:r}))},c=function(){return n("g",{transform:"translate(4 18.5) rotate(-90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(4 18.5) rotate(-90)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};J.displayName="NextIconsArrowRight",J.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var K=R(J),Q=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M14.08,20H5.91C2.375,20,0,17.725,0,14.34V5.67C0,2.279,2.375,0,5.91,0H14.08C17.621,0,20,2.279,20,5.67v8.67C20,17.725,17.621,20,14.08,20ZM5.92,9.25A.751.751,0,0,0,5.17,10a.742.742,0,0,0,.751.75h6.35L9.79,13.22a.763.763,0,0,0-.22.53.792.792,0,0,0,.22.53.755.755,0,0,0,1.06,0l3.769-3.75a.772.772,0,0,0,0-1.06L10.85,5.72a.753.753,0,0,0-1.06,0,.766.766,0,0,0,0,1.069L12.27,9.25Z",transform:"translate(0 0)",fill:r}))},i=function(){return n("g",{transform:"translate(2 22) rotate(-90)"},n("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:e,opacity:a}),n("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},l=function(){return n("g",{transform:"translate(2 22) rotate(-90)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(2 22) rotate(-90)"},n("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},c=function(){return n("g",{transform:"translate(2 22) rotate(-90)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(2 22) rotate(-90)"},n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};Q.displayName="NextIconsArrowRightSquare",Q.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var X=R(Q),tt=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(6 3)"},n("path",{d:"M4.482,16.5l.327-3.7a1.191,1.191,0,0,1,2.381,0l.328,3.7a1.518,1.518,0,0,1-3.036,0ZM2.318,9.949l-.544-.113A3.886,3.886,0,0,1,.992,9.6,1.814,1.814,0,0,1,0,8V7.942A5.023,5.023,0,0,1,.408,6.6,22.605,22.605,0,0,1,4.2,1.006l.4-.379A3.481,3.481,0,0,1,4.928.347,1.766,1.766,0,0,1,5.992,0,1.853,1.853,0,0,1,7.13.375l.42.39.09.087a22.081,22.081,0,0,1,4.024,5.891l.094.244A4.065,4.065,0,0,1,12,7.942a2.005,2.005,0,0,1-.219.91,1.889,1.889,0,0,1-.9.808,9.728,9.728,0,0,1-1.064.261,22.373,22.373,0,0,1-3.452.243H6.007A27.187,27.187,0,0,1,2.318,9.949Z",transform:"translate(0 0)",fill:r}))},i=function(){return n("g",{transform:"translate(18 21) rotate(180)"},n("path",{d:"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0",transform:"translate(4.483 0)",fill:e,opacity:a}),n("path",{d:"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79",transform:"translate(0 7.835)",fill:r}))},l=function(){return n("g",{transform:"translate(18.5 20) rotate(180)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(4.5 3)"},n("path",{d:"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z",transform:"translate(0)",fill:r}))},c=function(){return n("g",{transform:"translate(18.5 20) rotate(180)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M12.049,0,6.025,6.05,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(18.5 20) rotate(180)"},n("path",{d:"M.5,15V0",transform:"translate(6.274 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0",transform:"translate(0.75 9.7)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};tt.displayName="NextIconsArrowUp",tt.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var rt=R(tt),et=function(t){var r=t.color,e=t.secondaryColor,o=t.strokeWidth,a=t.opacity,s=function(){return n("g",{transform:"translate(2 2)"},n("path",{d:"M14.34,20H5.67C2.279,20,0,17.625,0,14.09V5.92C0,2.379,2.279,0,5.67,0h8.67C17.725,0,20,2.379,20,5.92v8.17C20,17.625,17.725,20,14.34,20ZM9.25,7.73v6.35a.751.751,0,0,0,.75.751.742.742,0,0,0,.75-.751V7.73l2.47,2.479a.763.763,0,0,0,.53.22.792.792,0,0,0,.53-.22.75.75,0,0,0,0-1.059L10.53,5.38a.774.774,0,0,0-1.06,0L5.72,9.15a.752.752,0,0,0,0,1.059.764.764,0,0,0,1.069,0L9.248,7.732Z",transform:"translate(0 0)",fill:r}))},i=function(){return n("g",{transform:"translate(22 22) rotate(180)"},n("path",{d:"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916",transform:"translate(0 0)",fill:e,opacity:a}),n("path",{d:"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687",transform:"translate(5.502 5.168)",fill:r}))},l=function(){return n("g",{transform:"translate(22 22) rotate(180)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},u=function(){return n("g",{transform:"translate(22 22) rotate(180)"},n("path",{d:"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z",fill:r}))},c=function(){return n("g",{transform:"translate(22 22) rotate(180)"},n("path",{d:"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z",transform:"translate(0.75 0.75)",fill:"none",stroke:e,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o,opacity:a}),n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0,3.748,3.764,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))},f=function(){return n("g",{transform:"translate(22 22) rotate(180)"},n("path",{d:"M.5,8.172V0",transform:"translate(9.5 5.914)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0",transform:"translate(6.252 10.322)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}),n("path",{d:"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z",transform:"translate(0.75 0.75)",fill:"none",stroke:r,strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:"10",strokeWidth:o}))};switch(t.set){case"bold":return n(s,null);case"bulk":return n(i,null);case"broken":return n(u,null);case"two-tone":return n(c,null);case"curved":return n(f,null);default:return n(l,null)}};et.displayName="NextIconsArrowUpSquare",et.propTypes={opacity:x.string,color:x.string,secondaryColor:x.string,set:x.string,strokeWidth:x.oneOfType([x.string,x.number])};var nt=R(et);export{z as ArrowDown,U as ArrowDownSquare,B as ArrowLeft,G as ArrowLeftSquare,K as ArrowRight,X as ArrowRightSquare,rt as ArrowUp,nt as ArrowUpSquare,a as NextIconsProvider};
10
+ //# sourceMappingURL=index.modern.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.modern.js","sources":["../src/lib/context.js","../node_modules/react-is/cjs/react-is.production.min.js","../node_modules/prop-types/factoryWithThrowingShims.js","../node_modules/react-is/index.js","../node_modules/prop-types/index.js","../node_modules/prop-types/lib/ReactPropTypesSecret.js","../src/lib/constants.js","../src/lib/utils.js","../src/lib/withIcon.js","../src/icons/ArrowDown.js","../src/icons/ArrowDownSquare.js","../src/icons/ArrowLeft.js","../src/icons/ArrowLeftSquare.js","../src/icons/ArrowRight.js","../src/icons/ArrowRightSquare.js","../src/icons/ArrowUp.js","../src/icons/ArrowUpSquare.js"],"sourcesContent":["import React, { createContext } from \"react\";\n\nexport const NextIconsContext = createContext();\nNextIconsContext.displayName = \"NextIconsContext\";\n\nexport const NextIconsProvider = ({ children, primaryColor, secondaryColor, set, size, stroke }) => {\n\tconst defaultValues = {\n\t\tprimaryColor: primaryColor || \"currentColor\",\n\t\tsecondaryColor: secondaryColor || null,\n\t\tset: set || \"light\",\n\t\tsize: size || \"md\",\n\t\tstroke: stroke || \"regular\"\n\t};\n\n\treturn <NextIconsContext.Provider value={defaultValues}>{children}</NextIconsContext.Provider>;\n};\n","/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';var b=\"function\"===typeof Symbol&&Symbol.for,c=b?Symbol.for(\"react.element\"):60103,d=b?Symbol.for(\"react.portal\"):60106,e=b?Symbol.for(\"react.fragment\"):60107,f=b?Symbol.for(\"react.strict_mode\"):60108,g=b?Symbol.for(\"react.profiler\"):60114,h=b?Symbol.for(\"react.provider\"):60109,k=b?Symbol.for(\"react.context\"):60110,l=b?Symbol.for(\"react.async_mode\"):60111,m=b?Symbol.for(\"react.concurrent_mode\"):60111,n=b?Symbol.for(\"react.forward_ref\"):60112,p=b?Symbol.for(\"react.suspense\"):60113,q=b?\nSymbol.for(\"react.suspense_list\"):60120,r=b?Symbol.for(\"react.memo\"):60115,t=b?Symbol.for(\"react.lazy\"):60116,v=b?Symbol.for(\"react.block\"):60121,w=b?Symbol.for(\"react.fundamental\"):60117,x=b?Symbol.for(\"react.responder\"):60118,y=b?Symbol.for(\"react.scope\"):60119;\nfunction z(a){if(\"object\"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}exports.AsyncMode=l;exports.ConcurrentMode=m;exports.ContextConsumer=k;exports.ContextProvider=h;exports.Element=c;exports.ForwardRef=n;exports.Fragment=e;exports.Lazy=t;exports.Memo=r;exports.Portal=d;\nexports.Profiler=g;exports.StrictMode=f;exports.Suspense=p;exports.isAsyncMode=function(a){return A(a)||z(a)===l};exports.isConcurrentMode=A;exports.isContextConsumer=function(a){return z(a)===k};exports.isContextProvider=function(a){return z(a)===h};exports.isElement=function(a){return\"object\"===typeof a&&null!==a&&a.$$typeof===c};exports.isForwardRef=function(a){return z(a)===n};exports.isFragment=function(a){return z(a)===e};exports.isLazy=function(a){return z(a)===t};\nexports.isMemo=function(a){return z(a)===r};exports.isPortal=function(a){return z(a)===d};exports.isProfiler=function(a){return z(a)===g};exports.isStrictMode=function(a){return z(a)===f};exports.isSuspense=function(a){return z(a)===p};\nexports.isValidElementType=function(a){return\"string\"===typeof a||\"function\"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||\"object\"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};exports.typeOf=z;\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","export const sizes = {\n\tsm: \"16px\",\n\tmd: \"24px\",\n\tlg: \"32px\",\n\txl: \"48px\"\n};\n\nexport const strokes = {\n\tlight: \"1px\",\n\tregular: \"1.5px\",\n\tbold: \"2px\"\n};\n","import { sizes, strokes } from \"./constants\";\n\nexport const isBrowser = typeof window !== \"undefined\";\n\nexport const getSize = (size) => {\n\tif (Number.isInteger(size)) {\n\t\treturn `${size}px`;\n\t}\n\n\treturn size && sizes[size] ? sizes[size] : null;\n};\n\nexport const getStroke = (stroke) => {\n\treturn stroke && strokes[stroke] ? strokes[stroke] : null;\n};\n\nexport const getOpacity = (primaryColor, secondaryColor) => {\n\tif (!secondaryColor) return \"0.4\";\n\n\treturn primaryColor === secondaryColor ? \"0.4\" : \"1\";\n};\n\nexport const getThemeProp = (prop, theme) => {\n\treturn theme && theme[prop] ? theme[prop] : null;\n};\n","import React, { memo } from \"react\";\nimport PropTypes from \"prop-types\";\n\nimport { getSize, getThemeProp, getStroke, getOpacity } from \"./utils\";\nimport { NextIconsContext } from \"./context\";\n\nfunction withIcon(Component) {\n\tclass IconWrapper extends React.Component {\n\t\tstatic contextType = NextIconsContext;\n\n\t\trender() {\n\t\t\tconst { primaryColor, secondaryColor, set, style, stroke, filled, label, size, ...restProps } = this.props;\n\n\t\t\tconst theme = this.context;\n\t\t\tconst iconSize = getSize(size) || getSize(getThemeProp(\"size\", theme)) || \"24px\";\n\t\t\tconst iconPrimaryColor = primaryColor || getThemeProp(\"primaryColor\", theme) || \"currentColor\";\n\t\t\tconst iconSecondaryColor = secondaryColor || getThemeProp(\"secondaryColor\", theme) || iconPrimaryColor || \"currentColor\";\n\n\t\t\treturn (\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http://www.w3.org/2000/svg\"\n\t\t\t\t\twidth={iconSize}\n\t\t\t\t\theight={iconSize}\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\trole={label ? \"img\" : \"presentation\"}\n\t\t\t\t\taria-label={label || undefined}\n\t\t\t\t\tstyle={style}\n\t\t\t\t\t{...restProps}\n\t\t\t\t>\n\t\t\t\t\t<Component\n\t\t\t\t\t\tcolor={iconPrimaryColor}\n\t\t\t\t\t\topacity={getOpacity(primaryColor, secondaryColor)}\n\t\t\t\t\t\tsecondaryColor={iconSecondaryColor}\n\t\t\t\t\t\tset={filled ? \"bold\" : set || getThemeProp(\"set\", theme) || \"light\"}\n\t\t\t\t\t\tstrokeWidth={stroke ? getStroke(stroke) : getStroke(getThemeProp(\"stroke\", theme)) || \"1.5px\"}\n\t\t\t\t\t/>\n\t\t\t\t</svg>\n\t\t\t);\n\t\t}\n\t}\n\n\tIconWrapper.propTypes = {\n\t\t/**\n\t\t * String that will be used as the `aria-label` attribute\n\t\t *\n\t\t * Default: \"null\"\n\t\t * NOTE: Use an empty string when you already have readable text around the icon, like text inside a button!\n\t\t */\n\t\tlabel: PropTypes.string,\n\n\t\t/**\n\t\t * Set the icon to filled style\n\t\t *\n\t\t * Default: \"false\"\n\t\t */\n\t\tfilled: PropTypes.bool,\n\n\t\t/**\n\t\t *\n\t\t * The primary color of the icon\n\t\t *\n\t\t * Default: \"currentColor\"\n\t\t */\n\t\tprimaryColor: PropTypes.string,\n\n\t\t/**\n\t\t * The secondary color of the icon\n\t\t *\n\t\t * Default: \"null\"\n\t\t */\n\t\tsecondaryColor: PropTypes.string,\n\n\t\t/**\n\t\t * The size of the icon\n\t\t *\n\t\t * Default: \"md\"\n\t\t */\n\t\tsize: PropTypes.oneOfType([PropTypes.number, PropTypes.oneOf([\"sm\", \"md\", \"lg\", \"xl\"])]),\n\n\t\t/**\n\t\t * Icon set options\n\t\t *\n\t\t * Default: \"light\"\n\t\t *\n\t\t * Options:\n\t\t * - Bold\n\t\t * - Bulk\n\t\t * - Light | Border (default)\n\t\t * - Light | Outline\n\t\t * - Broken\n\t\t * - Two Tone\n\t\t * - Curved\n\t\t */\n\t\tset: PropTypes.oneOf([\"bold\", \"bulk\", \"light\", \"broken\", \"two-tone\", \"curved\"]),\n\n\t\t/**\n\t\t * The stroke width of the icon\n\t\t *\n\t\t * Default: \"regular\"\n\t\t */\n\t\tstroke: PropTypes.oneOf([\"light\", \"regular\", \"bold\"]),\n\n\t\t/**\n\t\t * Your custom style property\n\t\t */\n\t\tstyle: PropTypes.oneOfType([PropTypes.object, PropTypes.array])\n\t};\n\n\tconst MemoIcon = memo(IconWrapper);\n\treturn MemoIcon;\n}\n\nexport default withIcon;\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowDown = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M4.87,17.625c-.059-.058-.305-.274-.51-.477A22.081,22.081,0,0,1,.336,11.257,4.815,4.815,0,0,1,0,10.058a2,2,0,0,1,.22-.91,1.883,1.883,0,0,1,.9-.808,9.781,9.781,0,0,1,1.065-.261,23.616,23.616,0,0,1,3.805-.244,27.187,27.187,0,0,1,3.688.216,8.15,8.15,0,0,1,1.328.347A1.815,1.815,0,0,1,12,10v.058a5.023,5.023,0,0,1-.408,1.343,22.023,22.023,0,0,1-3.966,5.761,5.686,5.686,0,0,1-.553.491A1.771,1.771,0,0,1,6.008,18,1.853,1.853,0,0,1,4.87,17.625ZM4.81,5.2,4.483,1.5a1.518,1.518,0,0,1,3.036,0L7.191,5.2a1.191,1.191,0,0,1-2.381,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(4 3)\">\n\t\t\t<path\n\t\t\t\td=\"M6.912,17.759l-6.67-6.6A.81.81,0,0,1,.244,10a.839.839,0,0,1,1.175,0L6.67,15.2V.818a.83.83,0,0,1,1.661,0V17.182a.818.818,0,0,1-.514.756.837.837,0,0,1-.9-.179ZM9.9,14.8a.807.807,0,0,1,0-1.156L13.581,10a.841.841,0,0,1,1.175,0,.811.811,0,0,1,0,1.157L11.079,14.8a.84.84,0,0,1-1.175,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(5.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowDown.displayName = \"NextIconsArrowDown\";\n\nArrowDown.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowDown);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowDownSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.33,20H5.66C2.275,20,0,17.621,0,14.08V5.91C0,2.375,2.275,0,5.66,0h8.67C17.721,0,20,2.375,20,5.91V14.08C20,17.621,17.721,20,14.33,20ZM6.25,9.57a.787.787,0,0,0-.529.22.753.753,0,0,0,0,1.06L9.47,14.62a.772.772,0,0,0,1.06,0l3.75-3.769a.751.751,0,0,0,0-1.06.767.767,0,0,0-1.07,0L10.75,12.27V5.92A.751.751,0,0,0,10,5.17a.742.742,0,0,0-.75.751v6.35L6.78,9.79A.763.763,0,0,0,6.25,9.57Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowDownSquare.displayName = \"NextIconsArrowDownSquare\";\n\nArrowDownSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowDownSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowLeft = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(3 6)\">\n\t\t\t<path\n\t\t\t\td=\"M7.942,12A5.023,5.023,0,0,1,6.6,11.592,22.626,22.626,0,0,1,1.006,7.8l-.379-.4a3.6,3.6,0,0,1-.281-.334A1.771,1.771,0,0,1,0,6.008,1.853,1.853,0,0,1,.375,4.87l.39-.42.087-.09A22.081,22.081,0,0,1,6.743.336L6.987.242A4.065,4.065,0,0,1,7.942,0a2,2,0,0,1,.91.22,1.883,1.883,0,0,1,.808.9,9.781,9.781,0,0,1,.261,1.065,22.351,22.351,0,0,1,.243,3.451v.354a27.187,27.187,0,0,1-.216,3.688l-.113.544a3.9,3.9,0,0,1-.233.784A1.815,1.815,0,0,1,8,12ZM12.8,7.191a1.191,1.191,0,0,1,0-2.381l3.7-.327a1.518,1.518,0,0,1,0,3.036Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(21 6) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2.5 4)\">\n\t\t\t<path\n\t\t\t\td=\"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z\"\n\t\t\t\ttransform=\"translate(0.5 15.5) rotate(-90)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(20 5.5) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowLeft.displayName = \"NextIconsArrowLeft\";\n\nArrowLeft.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowLeft);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowLeftSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.09,20H5.92C2.379,20,0,17.721,0,14.33V5.66C0,2.275,2.379,0,5.92,0h8.17C17.625,0,20,2.275,20,5.66v8.67C20,17.721,17.625,20,14.09,20ZM9.68,5.5a.742.742,0,0,0-.53.218L5.38,9.47a.774.774,0,0,0,0,1.06l3.77,3.75a.754.754,0,0,0,1.059,0,.766.766,0,0,0,0-1.07L7.73,10.75h6.35A.751.751,0,0,0,14.83,10a.742.742,0,0,0-.751-.75H7.73L10.21,6.78a.763.763,0,0,0,.22-.53.787.787,0,0,0-.22-.529A.742.742,0,0,0,9.68,5.5Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(22 2) rotate(90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowLeftSquare.displayName = \"NextIconsArrowLeftSquare\";\n\nArrowLeftSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowLeftSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowRight = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(3 6)\">\n\t\t\t<path\n\t\t\t\td=\"M9.149,11.781a1.889,1.889,0,0,1-.808-.9,9.727,9.727,0,0,1-.261-1.064A22.373,22.373,0,0,1,7.836,6.36V6.007a27.187,27.187,0,0,1,.216-3.688l.113-.544A3.886,3.886,0,0,1,8.4.992,1.814,1.814,0,0,1,10,0h.058A5.023,5.023,0,0,1,11.4.408,22.606,22.606,0,0,1,16.994,4.2l.379.4a3.481,3.481,0,0,1,.281.334A1.766,1.766,0,0,1,18,5.992a1.853,1.853,0,0,1-.375,1.138l-.39.42-.087.09a22.081,22.081,0,0,1-5.891,4.024l-.244.094a4.065,4.065,0,0,1-.955.242A2.005,2.005,0,0,1,9.149,11.781ZM0,6A1.511,1.511,0,0,1,1.5,4.482l3.7.327a1.191,1.191,0,0,1,0,2.381l-3.7.328A1.511,1.511,0,0,1,0,6Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(3 18) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(3 4.5)\">\n\t\t\t<path\n\t\t\t\td=\"M10,14.756a.839.839,0,0,1-.071-1.09L10,13.581,15.2,8.33H.818a.831.831,0,0,1-.1-1.654l.1-.006H17.182a.818.818,0,0,1,.756.513A.841.841,0,0,1,17.832,8l-.073.083-6.6,6.671a.81.81,0,0,1-1.156,0Zm3.726-9.584L13.645,5.1,10,1.418A.839.839,0,0,1,10,.244.81.81,0,0,1,11.075.167l.085.075L14.8,3.92a.841.841,0,0,1,0,1.175.808.808,0,0,1-1.073.077Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(4 18.5) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowRight.displayName = \"NextIconsArrowRight\";\n\nArrowRight.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowRight);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowRightSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.08,20H5.91C2.375,20,0,17.725,0,14.34V5.67C0,2.279,2.375,0,5.91,0H14.08C17.621,0,20,2.279,20,5.67v8.67C20,17.725,17.621,20,14.08,20ZM5.92,9.25A.751.751,0,0,0,5.17,10a.742.742,0,0,0,.751.75h6.35L9.79,13.22a.763.763,0,0,0-.22.53.792.792,0,0,0,.22.53.755.755,0,0,0,1.06,0l3.769-3.75a.772.772,0,0,0,0-1.06L10.85,5.72a.753.753,0,0,0-1.06,0,.766.766,0,0,0,0,1.069L12.27,9.25Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(2 22) rotate(-90)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowRightSquare.displayName = \"NextIconsArrowRightSquare\";\n\nArrowRightSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowRightSquare);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowUp = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(6 3)\">\n\t\t\t<path\n\t\t\t\td=\"M4.482,16.5l.327-3.7a1.191,1.191,0,0,1,2.381,0l.328,3.7a1.518,1.518,0,0,1-3.036,0ZM2.318,9.949l-.544-.113A3.886,3.886,0,0,1,.992,9.6,1.814,1.814,0,0,1,0,8V7.942A5.023,5.023,0,0,1,.408,6.6,22.605,22.605,0,0,1,4.2,1.006l.4-.379A3.481,3.481,0,0,1,4.928.347,1.766,1.766,0,0,1,5.992,0,1.853,1.853,0,0,1,7.13.375l.42.39.09.087a22.081,22.081,0,0,1,4.024,5.891l.094.244A4.065,4.065,0,0,1,12,7.942a2.005,2.005,0,0,1-.219.91,1.889,1.889,0,0,1-.9.808,9.728,9.728,0,0,1-1.064.261,22.373,22.373,0,0,1-3.452.243H6.007A27.187,27.187,0,0,1,2.318,9.949Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(18 21) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.327,5.2,0,1.5a1.518,1.518,0,0,1,3.036,0L2.709,5.2a1.191,1.191,0,0,1-2.381,0\"\n\t\t\t\ttransform=\"translate(4.483 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M4.87,9.79c-.058-.058-.305-.274-.51-.477A22.073,22.073,0,0,1,.336,3.422,4.828,4.828,0,0,1,0,2.223a2,2,0,0,1,.219-.91,1.886,1.886,0,0,1,.9-.808A9.79,9.79,0,0,1,2.188.244,23.636,23.636,0,0,1,5.993,0,27.291,27.291,0,0,1,9.681.216a8.26,8.26,0,0,1,1.327.347A1.815,1.815,0,0,1,12,2.165v.058a5.031,5.031,0,0,1-.408,1.343A22.044,22.044,0,0,1,7.626,9.327a5.693,5.693,0,0,1-.554.491,1.768,1.768,0,0,1-1.064.347A1.856,1.856,0,0,1,4.87,9.79\"\n\t\t\t\ttransform=\"translate(0 7.835)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(4.5 3)\">\n\t\t\t<path\n\t\t\t\td=\"M6.676,17.285l-.006-.1V.818A.818.818,0,0,1,7.183.062.841.841,0,0,1,8,.168l.083.073,6.671,6.6a.81.81,0,0,1,0,1.157.839.839,0,0,1-1.09.071L13.581,8,8.33,2.8V17.182a.831.831,0,0,1-1.654.1ZM.244,8A.81.81,0,0,1,.167,6.925L.242,6.84,3.92,3.2A.841.841,0,0,1,5.1,3.2a.808.808,0,0,1,.077,1.073L5.1,4.355,1.418,8A.839.839,0,0,1,.244,8Z\"\n\t\t\t\ttransform=\"translate(0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0,6.025,6.05,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(18.5 20) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,15V0\"\n\t\t\t\ttransform=\"translate(6.274 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M12.049,0S8.788,6.05,6.026,6.05,0,0,0,0\"\n\t\t\t\ttransform=\"translate(0.75 9.7)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowUp.displayName = \"NextIconsArrowUp\";\n\nArrowUp.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowUp);\n","import PropTypes from \"prop-types\";\nimport * as React from \"react\";\n\nimport withIcon from \"../lib/withIcon\";\n\nconst ArrowUpSquare = ({ color, secondaryColor, strokeWidth, opacity, set }) => {\n\tconst Bold = () => (\n\t\t<g transform=\"translate(2 2)\">\n\t\t\t<path\n\t\t\t\td=\"M14.34,20H5.67C2.279,20,0,17.625,0,14.09V5.92C0,2.379,2.279,0,5.67,0h8.67C17.725,0,20,2.379,20,5.92v8.17C20,17.625,17.725,20,14.34,20ZM9.25,7.73v6.35a.751.751,0,0,0,.75.751.742.742,0,0,0,.75-.751V7.73l2.47,2.479a.763.763,0,0,0,.53.22.792.792,0,0,0,.53-.22.75.75,0,0,0,0-1.059L10.53,5.38a.774.774,0,0,0-1.06,0L5.72,9.15a.752.752,0,0,0,0,1.059.764.764,0,0,0,1.069,0L9.248,7.732Z\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Bulk = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M0,5.916v8.168C0,17.623,2.276,20,5.665,20h8.67C17.724,20,20,17.623,20,14.084V5.916C20,2.378,17.723,0,14.334,0H5.665C2.276,0,0,2.378,0,5.916\"\n\t\t\t\ttransform=\"translate(0 0)\"\n\t\t\t\tfill={secondaryColor}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.218,5.687,3.966,9.452a.773.773,0,0,0,1.064,0L8.778,5.687A.751.751,0,0,0,7.714,4.628L5.247,7.105V.75a.75.75,0,0,0-1.5,0V7.105L1.281,4.628A.75.75,0,0,0,.218,5.687\"\n\t\t\t\ttransform=\"translate(5.502 5.168)\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Light = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Broken = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M6.256,20C2.393,20,0,17.608,0,13.747v-7.5C0,2.41,2.393,0,6.253,0H8.822a.756.756,0,0,1,.756.756V.765H9.561A.765.765,0,0,1,8.8,1.53H6.253C3.2,1.53,1.53,3.2,1.53,6.244v7.5c0,3.046,1.68,4.726,4.723,4.726h7.5c3.034,0,4.714-1.679,4.714-4.723v-7.5c0-3.043-1.68-4.714-4.714-4.714a.765.765,0,0,1,0-1.53C17.608,0,20,2.392,20,6.244v7.5C20,17.608,17.608,20,13.756,20ZM10,14.837a.746.746,0,0,1-.286-.058.733.733,0,0,1-.243-.162h0L5.721,10.851A.75.75,0,0,1,6.783,9.793L9.25,12.27V5.914a.75.75,0,0,1,1.5,0v8.172a.759.759,0,0,1-.059.288.731.731,0,0,1-.163.243c-.007.008-.016.01-.023.017a.773.773,0,0,1-.22.144.757.757,0,0,1-.251.051c-.013,0-.022.007-.035.007Zm1.941-2.7a.749.749,0,0,1,0-1.06l1.278-1.284a.75.75,0,0,1,1.062,1.059L13,12.136a.75.75,0,0,1-1.061,0Z\"\n\t\t\t\tfill={color}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst TwoTone = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M4.916,18.5h8.669c3.02,0,4.915-2.139,4.915-5.166V5.166C18.5,2.139,16.615,0,13.585,0H4.916C1.886,0,0,2.139,0,5.166v8.168C0,16.361,1.886,18.5,4.916,18.5Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={secondaryColor}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t\topacity={opacity}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0,3.748,3.764,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tconst Curved = () => (\n\t\t<g transform=\"translate(22 22) rotate(180)\">\n\t\t\t<path\n\t\t\t\td=\"M.5,8.172V0\"\n\t\t\t\ttransform=\"translate(9.5 5.914)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M7.5,0S4.972,3.764,3.748,3.764,0,0,0,0\"\n\t\t\t\ttransform=\"translate(6.252 10.322)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\n\t\t\t<path\n\t\t\t\td=\"M0,9.25c0,6.937,2.313,9.25,9.25,9.25s9.25-2.313,9.25-9.25S16.187,0,9.25,0,0,2.313,0,9.25Z\"\n\t\t\t\ttransform=\"translate(0.75 0.75)\"\n\t\t\t\tfill=\"none\"\n\t\t\t\tstroke={color}\n\t\t\t\tstrokeLinecap=\"round\"\n\t\t\t\tstrokeLinejoin=\"round\"\n\t\t\t\tstrokeMiterlimit=\"10\"\n\t\t\t\tstrokeWidth={strokeWidth}\n\t\t\t/>\n\t\t</g>\n\t);\n\n\tswitch (set) {\n\t\tcase \"bold\":\n\t\t\treturn <Bold />;\n\t\tcase \"bulk\":\n\t\t\treturn <Bulk />;\n\t\tcase \"broken\":\n\t\t\treturn <Broken />;\n\t\tcase \"two-tone\":\n\t\t\treturn <TwoTone />;\n\t\tcase \"curved\":\n\t\t\treturn <Curved />;\n\t\tdefault:\n\t\t\treturn <Light />;\n\t}\n};\n\nArrowUpSquare.displayName = \"NextIconsArrowUpSquare\";\n\nArrowUpSquare.propTypes = {\n\topacity: PropTypes.string,\n\tcolor: PropTypes.string,\n\tsecondaryColor: PropTypes.string,\n\tset: PropTypes.string,\n\tstrokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number])\n};\n\nexport default withIcon(ArrowUpSquare);\n"],"names":["NextIconsContext","createContext","displayName","NextIconsProvider","_ref","React","createElement","Provider","value","primaryColor","secondaryColor","set","size","stroke","children","b","Symbol","for","c","d","e","f","g","h","k","l","m","n","p","q","r","t","v","w","x","y","z","a","u","$$typeof","type","A","emptyFunction","emptyFunctionWithReset","module","require$$0","resetWarningCache","shim","props","propName","componentName","location","propFullName","secret","err","Error","name","getShim","isRequired","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","require$$2","sizes","sm","md","lg","xl","strokes","light","regular","bold","getSize","Number","isInteger","getStroke","getOpacity","getThemeProp","prop","theme","withIcon","Component","IconWrapper","_React$Component","apply","arguments","_inheritsLoose","prototype","render","_this$props","this","style","filled","label","restProps","_objectWithoutPropertiesLoose","_excluded","context","iconSize","iconPrimaryColor","iconSecondaryColor","_extends","xmlns","width","height","viewBox","role","aria-label","undefined","color","opacity","strokeWidth","contextType","propTypes","memo","ArrowDown","Bold","transform","fill","Bulk","Light","strokeLinecap","strokeLinejoin","strokeMiterlimit","Broken","TwoTone","Curved","ArrowDownSquare","ArrowLeft","ArrowLeftSquare","ArrowRight","ArrowRightSquare","ArrowUp","ArrowUpSquare"],"mappings":"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"}
@@ -0,0 +1,82 @@
1
+ import React, { CSSProperties } from "react";
2
+
3
+ type Color = "currentColor" | string;
4
+
5
+ export interface IconProps {
6
+ /**
7
+ * String that will be used as the `aria-label` attribute
8
+ *
9
+ * Default: "null"
10
+ * NOTE: Use an empty string when you already have readable text around the icon, like text inside a button!
11
+ */
12
+ label?: string;
13
+
14
+ /**
15
+ * Set the icon to filled style
16
+ *
17
+ * Default: "false"
18
+ */
19
+ filled?: boolean;
20
+
21
+ /**
22
+ *
23
+ * The primary color of the icon
24
+ *
25
+ * Default: "currentColor"
26
+ */
27
+ primaryColor?: Color;
28
+
29
+ /**
30
+ * The secondary color of the icon
31
+ *
32
+ * Default: "null"
33
+ */
34
+ secondaryColor?: Color;
35
+
36
+ /**
37
+ * The size of the icon
38
+ *
39
+ * Default: "md"
40
+ */
41
+ size?: number | "sm" | "md" | "lg" | "xl";
42
+
43
+ /**
44
+ * Icon set options
45
+ *
46
+ * Default: "light"
47
+ *
48
+ * Options:
49
+ * - Bold
50
+ * - Bulk
51
+ * - Light | Border (default)
52
+ * - Light | Outline
53
+ * - Broken
54
+ * - Two Tone
55
+ * - Curved
56
+ */
57
+ set?: "light" | "bold" | "two-tone" | "bulk" | "broken" | "curved";
58
+
59
+ /**
60
+ * The stroke width of the icon
61
+ *
62
+ * Default: "regular"
63
+ */
64
+ stroke?: "light" | "regular" | "bold";
65
+
66
+ /**
67
+ * Your custom style property
68
+ */
69
+ style?: CSSProperties;
70
+ }
71
+
72
+ export const NextIconsProvider: React.FC<IconProps>;
73
+
74
+ // Arrow Icons
75
+ export const ArrowDown: React.FC<IconProps>;
76
+ export const ArrowDownSquare: React.FC<IconProps>;
77
+ export const ArrowLeft: React.FC<IconProps>;
78
+ export const ArrowLeftSquare: React.FC<IconProps>;
79
+ export const ArrowRight: React.FC<IconProps>;
80
+ export const ArrowRightSquare: React.FC<IconProps>;
81
+ export const ArrowUp: React.FC<IconProps>;
82
+ export const ArrowUpSquare: React.FC<IconProps>;
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "version": "0.0.1",
3
+ "name": "@deemlol/next-icons",
4
+ "description": "A lightweight icon library for React and Next.js, designed for simplicity and seamless integration.",
5
+ "module": "dist/index.modern.js",
6
+ "types": "/dist/next-icons.d.ts",
7
+ "main": "dist/index.js",
8
+ "scripts": {
9
+ "format:check": "prettier --check .",
10
+ "format:write": "prettier --write .",
11
+ "build": "microbundle-crl --define process.env.NODE_ENV=production --compress --strict --format modern,cjs && npm run copytypes",
12
+ "copytypes": "cp next-icons.d.ts dist/next-icons.d.ts",
13
+ "start": "microbundle-crl watch --no-compress --format modern,cjs",
14
+ "prepare": "run-s build",
15
+ "test": "run-s test:unit test:build",
16
+ "test:build": "run-s build",
17
+ "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
18
+ "test:watch": "react-scripts test --env=jsdom"
19
+ },
20
+ "dependencies": {
21
+ "react": "^19.0.0",
22
+ "react-dom": "^19.0.0",
23
+ "react-scripts": "^5.0.1"
24
+ },
25
+ "devDependencies": {
26
+ "cross-env": "^7.0.3",
27
+ "microbundle-crl": "^0.13.11",
28
+ "npm-run-all": "^4.1.5",
29
+ "postcss-flexbugs-fixes": "^5.0.2",
30
+ "postcss-normalize": "^13.0.1",
31
+ "postcss-preset-env": "^10.1.2",
32
+ "prettier": "^3.4.2",
33
+ "prop-types": "^15.8.1",
34
+ "tsup": "^8.3.5"
35
+ },
36
+ "homepage": "https://www.next-icons.xyz",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "+git:https://github.com/devdeem/next-icons.git"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/devdeem/next-icons/issues",
43
+ "email": "contact@deemdev.xyz"
44
+ },
45
+ "engines": {
46
+ "node": ">=20"
47
+ },
48
+ "files": [
49
+ "dist"
50
+ ],
51
+ "keywords": [
52
+ "icons",
53
+ "next",
54
+ "next.js",
55
+ "react",
56
+ "svg"
57
+ ],
58
+ "author": {
59
+ "email": "contact@deemdev.xyz",
60
+ "name": "Alexandr Virgovič",
61
+ "url": "https://www.deemdev.xyz"
62
+ },
63
+ "tsup": {
64
+ "entry": [
65
+ "src",
66
+ "!src/**/*.text.tsx"
67
+ ],
68
+ "clean": true,
69
+ "target": "es2019",
70
+ "format": [
71
+ "cjs",
72
+ "esm"
73
+ ]
74
+ },
75
+ "license": "MIT"
76
+ }