@bigbinary/neeto-icons 1.8.46 → 1.8.47

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.
@@ -1,2 +1,2 @@
1
- import{P as e,_ as r,R as o,a as t}from"./index.js";var n=["size","color","strokeWidth"];function s(e){var s=e.size,i=e.color,a=e.strokeWidth,d=r(e,n);return o.createElement("svg",t({viewBox:"0 0 16 16",fill:"none",height:s,width:s},d),o.createElement("path",{d:"M2 12.6668V10.3335C2 9.78121 2.44772 9.3335 3 9.3335H4.25267C4.5177 9.33355 4.77187 9.43882 4.95933 9.62616L5.61 10.2768C5.85994 10.5265 6.19873 10.6668 6.552 10.6668H9.44733C9.80116 10.6669 10.1405 10.5264 10.3907 10.2762L10.9433 9.7235C11.1933 9.47384 11.5321 9.33357 11.8853 9.3335H13C13.5523 9.3335 14 9.78121 14 10.3335V12.6668C14 13.4032 13.403 14.0002 12.6667 14.0002H3.33333C2.59695 14.0002 2 13.4032 2 12.6668Z",stroke:i,strokeWidth:a,strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M3.33301 9.33333V3.33333C3.33301 2.59695 3.92996 2 4.66634 2H11.333C12.0694 2 12.6663 2.59695 12.6663 3.33333V9.33333",stroke:i,strokeWidth:a,strokeLinecap:"round",strokeLinejoin:"round"}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as Archive};
1
+ import{P as e,_ as t,R as r,a as o}from"./index.js";var i=["size","color","strokeWidth"];function n(e){var n=e.size,s=e.color,l=e.strokeWidth,a=t(e,i);return r.createElement("svg",o({viewBox:"0 0 24 24",fill:"none",height:n,width:n},a),r.createElement("g",{clipPath:"url(#clip0_3125_3522)"},r.createElement("path",{d:"M4.5 17.8334V14.9167C4.5 14.2263 5.05964 13.6667 5.75 13.6667H7.31583C7.64712 13.6668 7.96484 13.7983 8.19917 14.0325L9.0125 14.8459C9.32492 15.1579 9.74842 15.3333 10.19 15.3334H13.8092C14.2514 15.3335 14.6756 15.1578 14.9883 14.845L15.6792 14.1542C15.9916 13.8421 16.4151 13.6668 16.8567 13.6667H18.25C18.9404 13.6667 19.5 14.2263 19.5 14.9167V17.8334C19.5 18.7538 18.7538 19.5 17.8333 19.5H6.16667C5.24619 19.5 4.5 18.7538 4.5 17.8334Z",stroke:s,strokeWidth:l,strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M6.16667 13.6667V6.16667C6.16667 5.24619 6.91286 4.5 7.83334 4.5H16.1667C17.0871 4.5 17.8333 5.24619 17.8333 6.16667V13.6667",stroke:s,strokeWidth:l,strokeLinecap:"round",strokeLinejoin:"round"})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_3125_3522"},r.createElement("rect",{width:"20",height:"20",fill:s,transform:"translate(2 2)"}))))}n.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},n.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{n as Archive};
2
2
  //# sourceMappingURL=Archive.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Archive.js.js","sources":["../../lib/icons/Archive.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Archive(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 16 16\" fill=\"none\" height={size} width={size} {...other}>\n <path\n d=\"M2 12.6668V10.3335C2 9.78121 2.44772 9.3335 3 9.3335H4.25267C4.5177 9.33355 4.77187 9.43882 4.95933 9.62616L5.61 10.2768C5.85994 10.5265 6.19873 10.6668 6.552 10.6668H9.44733C9.80116 10.6669 10.1405 10.5264 10.3907 10.2762L10.9433 9.7235C11.1933 9.47384 11.5321 9.33357 11.8853 9.3335H13C13.5523 9.3335 14 9.78121 14 10.3335V12.6668C14 13.4032 13.403 14.0002 12.6667 14.0002H3.33333C2.59695 14.0002 2 13.4032 2 12.6668Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.33301 9.33333V3.33333C3.33301 2.59695 3.92996 2 4.66634 2H11.333C12.0694 2 12.6663 2.59695 12.6663 3.33333V9.33333\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n}\n\nArchive.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nArchive.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Archive","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","d","stroke","strokeLinecap","strokeLinejoin","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAQC,OACdC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,wBACEK,EAAE,saACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,UAEjBR,wBACEK,EAAE,wHACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,WAMvBd,EAAQe,aAAe,CACrBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAQgB,UAAY,CAClBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"Archive.js.js","sources":["../../lib/icons/Archive.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Archive(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <g clipPath=\"url(#clip0_3125_3522)\">\n <path\n d=\"M4.5 17.8334V14.9167C4.5 14.2263 5.05964 13.6667 5.75 13.6667H7.31583C7.64712 13.6668 7.96484 13.7983 8.19917 14.0325L9.0125 14.8459C9.32492 15.1579 9.74842 15.3333 10.19 15.3334H13.8092C14.2514 15.3335 14.6756 15.1578 14.9883 14.845L15.6792 14.1542C15.9916 13.8421 16.4151 13.6668 16.8567 13.6667H18.25C18.9404 13.6667 19.5 14.2263 19.5 14.9167V17.8334C19.5 18.7538 18.7538 19.5 17.8333 19.5H6.16667C5.24619 19.5 4.5 18.7538 4.5 17.8334Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6.16667 13.6667V6.16667C6.16667 5.24619 6.91286 4.5 7.83334 4.5H16.1667C17.0871 4.5 17.8333 5.24619 17.8333 6.16667V13.6667\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_3125_3522\">\n <rect\n width=\"20\"\n height=\"20\"\n fill={color}\n transform=\"translate(2 2)\"\n />\n </clipPath>\n </defs>\n </svg>\n );\n}\n\nArchive.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nArchive.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Archive","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","clipPath","d","stroke","strokeLinecap","strokeLinejoin","id","transform","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAQC,OACdC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,qBAAGK,SAAS,yBACVL,wBACEM,EAAE,ybACFC,OAAQV,EACRC,YAAaA,EACbU,cAAc,QACdC,eAAe,UAEjBT,wBACEM,EAAE,+HACFC,OAAQV,EACRC,YAAaA,EACbU,cAAc,QACdC,eAAe,WAGnBT,4BACEA,4BAAUU,GAAG,mBACXV,wBACEI,MAAM,KACND,OAAO,KACPD,KAAML,EACNc,UAAU,sBAQtBjB,EAAQkB,aAAe,CACrBf,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAQmB,UAAY,CAClBhB,MAAOiB,EAAUC,OACjBnB,KAAMkB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDnB,YAAagB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
@@ -1,2 +1,2 @@
1
- import{P as e,_ as r,R as o,a as t}from"./index.js";var n=["size","color","strokeWidth"];function s(e){var s=e.size,i=e.color,d=e.strokeWidth,a=r(e,n);return o.createElement("svg",t({viewBox:"0 0 16 16",fill:"none",height:s,width:s},a),o.createElement("path",{d:"M8 2C7.21207 2 6.43185 2.15519 5.7039 2.45672C4.97595 2.75825 4.31451 3.20021 3.75736 3.75736C3.20021 4.31451 2.75825 4.97595 2.45672 5.7039C2.15519 6.43185 2 7.21207 2 8C2 8.78793 2.15519 9.56815 2.45672 10.2961C2.75825 11.0241 3.20021 11.6855 3.75736 12.2426C4.31451 12.7998 4.97595 13.2417 5.7039 13.5433C6.43185 13.8448 7.21207 14 8 14C8.78793 14 9.56815 13.8448 10.2961 13.5433C11.0241 13.2417 11.6855 12.7998 12.2426 12.2426C12.7998 11.6855 13.2417 11.0241 13.5433 10.2961C13.8448 9.56815 14 8.78793 14 8C14 7.21207 13.8448 6.43185 13.5433 5.7039C13.2417 4.97595 12.7998 4.31451 12.2426 3.75736C11.6855 3.20021 11.0241 2.75825 10.2961 2.45672C9.56815 2.15519 8.78793 2 8 2Z",stroke:i,strokeWidth:d,strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M6 6L10 10",stroke:i,strokeWidth:d,strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M6 10L10 6",stroke:i,strokeWidth:d,strokeLinecap:"round",strokeLinejoin:"round"}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as Error};
1
+ import{P as e,_ as r,R as o,a as t}from"./index.js";var s=["size","color","strokeWidth"];function i(e){var i=e.size,n=e.color,C=e.strokeWidth,a=r(e,s);return o.createElement("svg",t({viewBox:"0 0 24 24",fill:"none",height:i,width:i},a),o.createElement("path",{d:"M9 9L15 15M9 15L15 9M12 3C10.8181 3 9.64778 3.23279 8.55585 3.68508C7.46392 4.13738 6.47177 4.80031 5.63604 5.63604C4.80031 6.47177 4.13738 7.46392 3.68508 8.55585C3.23279 9.64778 3 10.8181 3 12C3 13.1819 3.23279 14.3522 3.68508 15.4442C4.13738 16.5361 4.80031 17.5282 5.63604 18.364C6.47177 19.1997 7.46392 19.8626 8.55585 20.3149C9.64778 20.7672 10.8181 21 12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 10.8181 20.7672 9.64778 20.3149 8.55585C19.8626 7.46392 19.1997 6.47177 18.364 5.63604C17.5282 4.80031 16.5361 4.13738 15.4442 3.68508C14.3522 3.23279 13.1819 3 12 3Z",stroke:n,strokeWidth:C,strokeLinecap:"round",strokeLinejoin:"round"}))}i.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},i.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{i as Error};
2
2
  //# sourceMappingURL=Error.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Error.js.js","sources":["../../lib/icons/Error.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Error(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 16 16\" fill=\"none\" height={size} width={size} {...other}>\n <path\n d=\"M8 2C7.21207 2 6.43185 2.15519 5.7039 2.45672C4.97595 2.75825 4.31451 3.20021 3.75736 3.75736C3.20021 4.31451 2.75825 4.97595 2.45672 5.7039C2.15519 6.43185 2 7.21207 2 8C2 8.78793 2.15519 9.56815 2.45672 10.2961C2.75825 11.0241 3.20021 11.6855 3.75736 12.2426C4.31451 12.7998 4.97595 13.2417 5.7039 13.5433C6.43185 13.8448 7.21207 14 8 14C8.78793 14 9.56815 13.8448 10.2961 13.5433C11.0241 13.2417 11.6855 12.7998 12.2426 12.2426C12.7998 11.6855 13.2417 11.0241 13.5433 10.2961C13.8448 9.56815 14 8.78793 14 8C14 7.21207 13.8448 6.43185 13.5433 5.7039C13.2417 4.97595 12.7998 4.31451 12.2426 3.75736C11.6855 3.20021 11.0241 2.75825 10.2961 2.45672C9.56815 2.15519 8.78793 2 8 2Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6 6L10 10\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6 10L10 6\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n}\n\nError.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nError.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Error","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","d","stroke","strokeLinecap","strokeLinejoin","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,wBACEK,EAAE,0qBACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,UAEjBR,wBACEK,EAAE,aACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,UAEjBR,wBACEK,EAAE,aACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,WAMvBd,EAAMe,aAAe,CACnBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMgB,UAAY,CAChBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"Error.js.js","sources":["../../lib/icons/Error.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Error(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <path\n d=\"M9 9L15 15M9 15L15 9M12 3C10.8181 3 9.64778 3.23279 8.55585 3.68508C7.46392 4.13738 6.47177 4.80031 5.63604 5.63604C4.80031 6.47177 4.13738 7.46392 3.68508 8.55585C3.23279 9.64778 3 10.8181 3 12C3 13.1819 3.23279 14.3522 3.68508 15.4442C4.13738 16.5361 4.80031 17.5282 5.63604 18.364C6.47177 19.1997 7.46392 19.8626 8.55585 20.3149C9.64778 20.7672 10.8181 21 12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 10.8181 20.7672 9.64778 20.3149 8.55585C19.8626 7.46392 19.1997 6.47177 18.364 5.63604C17.5282 4.80031 16.5361 4.13738 15.4442 3.68508C14.3522 3.23279 13.1819 3 12 3Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n}\n\nError.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nError.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Error","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","d","stroke","strokeLinecap","strokeLinejoin","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,wBACEK,EAAE,msBACFC,OAAQT,EACRC,YAAaA,EACbS,cAAc,QACdC,eAAe,WAMvBd,EAAMe,aAAe,CACnBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMgB,UAAY,CAChBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
@@ -1,2 +1,2 @@
1
- import{P as e,_ as r,R as t,a as o}from"./index.js";var s=["size","color","strokeWidth"];function a(e){var a=e.size;e.color,e.strokeWidth;var i=r(e,s);return t.createElement("svg",o({viewBox:"0 0 24 24",height:a,width:a},i),t.createElement("path",{fill:"none",d:"M0 0h24v24H0z"}),t.createElement("path",{d:"M13 1l.001 3.062A8.004 8.004 0 0 1 19.938 11H23v2l-3.062.001a8.004 8.004 0 0 1-6.937 6.937L13 23h-2v-3.062a8.004 8.004 0 0 1-6.938-6.937L1 13v-2h3.062A8.004 8.004 0 0 1 11 4.062V1h2zm-1 5a6 6 0 1 0 0 12 6 6 0 0 0 0-12zm0 4a2 2 0 1 1 0 4 2 2 0 0 1 0-4z"}))}a.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},a.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{a as Focus};
1
+ import{P as e,_ as t,R as r,a as o}from"./index.js";var s=["size","color","strokeWidth"];function i(e){var i=e.size,n=e.color,c=e.strokeWidth,a=t(e,s);return r.createElement("svg",o({viewBox:"0 0 24 24",fill:"none",height:i,width:i},a),r.createElement("circle",{cx:"12",cy:"12",r:"7.125",stroke:n,strokeWidth:c}),r.createElement("path",{d:"M3 12H7",stroke:n,strokeWidth:c,strokeLinecap:"round"}),r.createElement("path",{d:"M17 12L21 12",stroke:n,strokeWidth:c,strokeLinecap:"round"}),r.createElement("path",{d:"M12 21L12 17",stroke:n,strokeWidth:c,strokeLinecap:"round"}),r.createElement("path",{d:"M12 7L12 3",stroke:n,strokeWidth:c,strokeLinecap:"round"}),r.createElement("circle",{cx:"12",cy:"12",r:"1",fill:n}))}i.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},i.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{i as Focus};
2
2
  //# sourceMappingURL=Focus.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Focus.js.js","sources":["../../lib/icons/Focus.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Focus(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" height={size} width={size} {...other}>\n <path fill=\"none\" d=\"M0 0h24v24H0z\" />\n <path d=\"M13 1l.001 3.062A8.004 8.004 0 0 1 19.938 11H23v2l-3.062.001a8.004 8.004 0 0 1-6.937 6.937L13 23h-2v-3.062a8.004 8.004 0 0 1-6.938-6.937L1 13v-2h3.062A8.004 8.004 0 0 1 11 4.062V1h2zm-1 5a6 6 0 1 0 0 12 6 6 0 0 0 0-12zm0 4a2 2 0 1 1 0 4 2 2 0 0 1 0-4z\" />\n </svg>\n );\n}\n\nFocus.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nFocus.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Focus","props","size","color","strokeWidth","other","React","viewBox","height","width","fill","d","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAuCD,EAAjCE,MAAiCF,EAA1BG,gBAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,OAAQN,EAAMO,MAAOP,GAAUG,GACtDC,wBAAMI,KAAK,OAAOC,EAAE,kBACpBL,wBAAMK,EAAE,iQAKdX,EAAMY,aAAe,CACnBT,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMa,UAAY,CAChBV,MAAOW,EAAUC,OACjBb,KAAMY,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDb,YAAaU,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"Focus.js.js","sources":["../../lib/icons/Focus.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Focus(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <circle\n cx=\"12\"\n cy=\"12\"\n r=\"7.125\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M3 12H7\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M17 12L21 12\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M12 21L12 17\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <path\n d=\"M12 7L12 3\"\n stroke={color}\n strokeWidth={strokeWidth}\n strokeLinecap=\"round\"\n />\n <circle cx=\"12\" cy=\"12\" r=\"1\" fill={color} />\n </svg>\n );\n}\n\nFocus.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nFocus.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Focus","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","cx","cy","r","stroke","d","strokeLinecap","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,0BACEK,GAAG,KACHC,GAAG,KACHC,EAAE,QACFC,OAAQX,EACRC,YAAaA,IAEfE,wBACES,EAAE,UACFD,OAAQX,EACRC,YAAaA,EACbY,cAAc,UAEhBV,wBACES,EAAE,eACFD,OAAQX,EACRC,YAAaA,EACbY,cAAc,UAEhBV,wBACES,EAAE,eACFD,OAAQX,EACRC,YAAaA,EACbY,cAAc,UAEhBV,wBACES,EAAE,aACFD,OAAQX,EACRC,YAAaA,EACbY,cAAc,UAEhBV,0BAAQK,GAAG,KAAKC,GAAG,KAAKC,EAAE,IAAIL,KAAML,KAK1CH,EAAMiB,aAAe,CACnBd,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMkB,UAAY,CAChBf,MAAOgB,EAAUC,OACjBlB,KAAMiB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDlB,YAAae,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
@@ -1,2 +1,2 @@
1
- import{P as e,_ as t,R as r,a as i}from"./index.js";var h=["size","color","strokeWidth"];function s(e){var s=e.size,a=e.color;e.strokeWidth;var n=t(e,h);return r.createElement("svg",i({viewBox:"0 0 24 24",fill:"none",height:s,width:s},n),r.createElement("mask",{id:"path-1-inside-1_1254:2977",fill:a},r.createElement("rect",{x:"4",y:"4",width:"6",height:"6",rx:"1"})),r.createElement("rect",{x:"4",y:"4",width:"6",height:"6",rx:"1",stroke:a,mask:"url(#path-1-inside-1_1254:2977)",strokeWidth:"3"}),r.createElement("mask",{id:"path-2-inside-2_1254:2977",fill:a},r.createElement("rect",{x:"4",y:"14",width:"6",height:"6",rx:"1"})),r.createElement("rect",{x:"4",y:"14",width:"6",height:"6",rx:"1",stroke:a,mask:"url(#path-2-inside-2_1254:2977)",strokeWidth:"3"}),r.createElement("mask",{id:"path-3-inside-3_1254:2977",fill:a},r.createElement("rect",{x:"14",y:"4",width:"6",height:"6",rx:"1"})),r.createElement("rect",{x:"14",y:"4",width:"6",height:"6",rx:"1",stroke:a,mask:"url(#path-3-inside-3_1254:2977)",strokeWidth:"3"}),r.createElement("mask",{id:"path-4-inside-4_1254:2977",fill:a},r.createElement("rect",{x:"14",y:"14",width:"6",height:"6",rx:"1"})),r.createElement("rect",{x:"14",y:"14",width:"6",height:"6",rx:"1",stroke:a,mask:"url(#path-4-inside-4_1254:2977)",strokeWidth:"3"}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as MenuLayout};
1
+ import{P as e,_ as t,R as r,a as i}from"./index.js";var o=["size","color","strokeWidth"];function h(e){var h=e.size,s=e.color,l=e.strokeWidth,c=t(e,o);return r.createElement("svg",i({viewBox:"0 0 24 24",fill:"none",height:h,width:h},c),r.createElement("g",{clipPath:"url(#clip0_3134_3541)"},r.createElement("rect",{x:"4",y:"4",width:"6",height:"6",rx:"1",stroke:s,strokeWidth:l}),r.createElement("rect",{x:"4",y:"14",width:"6",height:"6",rx:"1",stroke:s,strokeWidth:l}),r.createElement("rect",{x:"14",y:"4",width:"6",height:"6",rx:"1",stroke:s,strokeWidth:l}),r.createElement("rect",{x:"14",y:"14",width:"6",height:"6",rx:"1",stroke:s,strokeWidth:l})),r.createElement("defs",null,r.createElement("clipPath",{id:"clip0_3134_3541"},r.createElement("rect",{width:"24",height:"24",fill:s}))))}h.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},h.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{h as MenuLayout};
2
2
  //# sourceMappingURL=MenuLayout.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"MenuLayout.js.js","sources":["../../lib/icons/MenuLayout.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function MenuLayout(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <mask id=\"path-1-inside-1_1254:2977\" fill={color}>\n <rect x=\"4\" y=\"4\" width=\"6\" height=\"6\" rx=\"1\" />\n </mask>\n <rect\n x=\"4\"\n y=\"4\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n mask=\"url(#path-1-inside-1_1254:2977)\"\n strokeWidth=\"3\"\n />\n <mask id=\"path-2-inside-2_1254:2977\" fill={color}>\n <rect x=\"4\" y=\"14\" width=\"6\" height=\"6\" rx=\"1\" />\n </mask>\n <rect\n x=\"4\"\n y=\"14\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n mask=\"url(#path-2-inside-2_1254:2977)\"\n strokeWidth=\"3\"\n />\n <mask id=\"path-3-inside-3_1254:2977\" fill={color}>\n <rect x=\"14\" y=\"4\" width=\"6\" height=\"6\" rx=\"1\" />\n </mask>\n <rect\n x=\"14\"\n y=\"4\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n mask=\"url(#path-3-inside-3_1254:2977)\"\n strokeWidth=\"3\"\n />\n <mask id=\"path-4-inside-4_1254:2977\" fill={color}>\n <rect x=\"14\" y=\"14\" width=\"6\" height=\"6\" rx=\"1\" />\n </mask>\n <rect\n x=\"14\"\n y=\"14\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n mask=\"url(#path-4-inside-4_1254:2977)\"\n strokeWidth=\"3\"\n />\n </svg>\n );\n}\n\nMenuLayout.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nMenuLayout.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["MenuLayout","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","id","x","y","rx","stroke","mask","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAWC,OACjBC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAiCF,EAA1BG,gBAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,wBAAMK,GAAG,4BAA4BH,KAAML,GACzCG,wBAAMM,EAAE,IAAIC,EAAE,IAAIH,MAAM,IAAID,OAAO,IAAIK,GAAG,OAE5CR,wBACEM,EAAE,IACFC,EAAE,IACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRa,KAAK,kCACLZ,YAAY,MAEdE,wBAAMK,GAAG,4BAA4BH,KAAML,GACzCG,wBAAMM,EAAE,IAAIC,EAAE,KAAKH,MAAM,IAAID,OAAO,IAAIK,GAAG,OAE7CR,wBACEM,EAAE,IACFC,EAAE,KACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRa,KAAK,kCACLZ,YAAY,MAEdE,wBAAMK,GAAG,4BAA4BH,KAAML,GACzCG,wBAAMM,EAAE,KAAKC,EAAE,IAAIH,MAAM,IAAID,OAAO,IAAIK,GAAG,OAE7CR,wBACEM,EAAE,KACFC,EAAE,IACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRa,KAAK,kCACLZ,YAAY,MAEdE,wBAAMK,GAAG,4BAA4BH,KAAML,GACzCG,wBAAMM,EAAE,KAAKC,EAAE,KAAKH,MAAM,IAAID,OAAO,IAAIK,GAAG,OAE9CR,wBACEM,EAAE,KACFC,EAAE,KACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRa,KAAK,kCACLZ,YAAY,OAMpBJ,EAAWiB,aAAe,CACxBd,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAWkB,UAAY,CACrBf,MAAOgB,EAAUC,OACjBlB,KAAMiB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDlB,YAAae,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"MenuLayout.js.js","sources":["../../lib/icons/MenuLayout.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function MenuLayout(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <g clipPath=\"url(#clip0_3134_3541)\">\n <rect\n x=\"4\"\n y=\"4\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <rect\n x=\"4\"\n y=\"14\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <rect\n x=\"14\"\n y=\"4\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <rect\n x=\"14\"\n y=\"14\"\n width=\"6\"\n height=\"6\"\n rx=\"1\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n </g>\n <defs>\n <clipPath id=\"clip0_3134_3541\">\n <rect width=\"24\" height=\"24\" fill={color} />\n </clipPath>\n </defs>\n </svg>\n );\n}\n\nMenuLayout.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nMenuLayout.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["MenuLayout","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","clipPath","x","y","rx","stroke","id","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAWC,OACjBC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,qBAAGK,SAAS,yBACVL,wBACEM,EAAE,IACFC,EAAE,IACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRC,YAAaA,IAEfE,wBACEM,EAAE,IACFC,EAAE,KACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRC,YAAaA,IAEfE,wBACEM,EAAE,KACFC,EAAE,IACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRC,YAAaA,IAEfE,wBACEM,EAAE,KACFC,EAAE,KACFH,MAAM,IACND,OAAO,IACPK,GAAG,IACHC,OAAQZ,EACRC,YAAaA,KAGjBE,4BACEA,4BAAUU,GAAG,mBACXV,wBAAMI,MAAM,KAAKD,OAAO,KAAKD,KAAML,OAO7CH,EAAWiB,aAAe,CACxBd,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAWkB,UAAY,CACrBf,MAAOgB,EAAUC,OACjBlB,KAAMiB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDlB,YAAae,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
@@ -1,2 +1,2 @@
1
- import{P as e,_ as r,R as t,a as o}from"./index.js";var i=["size","color","strokeWidth"];function s(e){var s=e.size,c=e.color,n=e.strokeWidth,l=r(e,i);return t.createElement("svg",o({viewBox:"0 0 16 16",fill:"none",height:s,width:s},l),t.createElement("circle",{cx:"8",cy:"8",r:"5.25",stroke:c,strokeWidth:n}),t.createElement("circle",{cx:"8",cy:"8",r:"2",fill:c}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as Radio};
1
+ import{P as e,_ as r,R as t,a as o}from"./index.js";var i=["size","color","strokeWidth"];function s(e){var s=e.size,c=e.color,n=e.strokeWidth,l=r(e,i);return t.createElement("svg",o({viewBox:"0 0 24 24",fill:"none",height:s,width:s},l),t.createElement("circle",{cx:"12",cy:"12",r:"8.25",stroke:c,strokeWidth:n}),t.createElement("circle",{cx:"12",cy:"12",r:"3",fill:c}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as Radio};
2
2
  //# sourceMappingURL=Radio.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Radio.js.js","sources":["../../lib/icons/Radio.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Radio(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 16 16\" fill=\"none\" height={size} width={size} {...other}>\n <circle cx=\"8\" cy=\"8\" r=\"5.25\" stroke={color} strokeWidth={strokeWidth} />\n <circle cx=\"8\" cy=\"8\" r=\"2\" fill={color} />\n </svg>\n );\n}\n\nRadio.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nRadio.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Radio","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","cx","cy","r","stroke","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,0BAAQK,GAAG,IAAIC,GAAG,IAAIC,EAAE,OAAOC,OAAQX,EAAOC,YAAaA,IAC3DE,0BAAQK,GAAG,IAAIC,GAAG,IAAIC,EAAE,IAAIL,KAAML,KAKxCH,EAAMe,aAAe,CACnBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMgB,UAAY,CAChBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"Radio.js.js","sources":["../../lib/icons/Radio.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Radio(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <circle\n cx=\"12\"\n cy=\"12\"\n r=\"8.25\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <circle cx=\"12\" cy=\"12\" r=\"3\" fill={color} />\n </svg>\n );\n}\n\nRadio.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nRadio.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Radio","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","cx","cy","r","stroke","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAMC,OACZC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,0BACEK,GAAG,KACHC,GAAG,KACHC,EAAE,OACFC,OAAQX,EACRC,YAAaA,IAEfE,0BAAQK,GAAG,KAAKC,GAAG,KAAKC,EAAE,IAAIL,KAAML,KAK1CH,EAAMe,aAAe,CACnBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAMgB,UAAY,CAChBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
@@ -1,2 +1,2 @@
1
- import{P as e,_ as r,R as o,a as t}from"./index.js";var n=["size","color","strokeWidth"];function s(e){var s=e.size,i=e.color;e.strokeWidth;var a=r(e,n);return o.createElement("svg",t({viewBox:"0 0 12 12",fill:"none",height:s,width:s},a),o.createElement("path",{d:"M6 11C8.76142 11 11 8.76142 11 6C11 3.23858 8.76142 1 6 1C3.23858 1 1 3.23858 1 6C1 8.76142 3.23858 11 6 11Z",stroke:i,strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M1 6H6H11",stroke:i,strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M6 1C7.25064 2.36918 7.96138 4.14602 8 6C7.96138 7.85398 7.25064 9.63082 6 11C4.74936 9.63082 4.03862 7.85398 4 6C4.03862 4.14602 4.74936 2.36918 6 1V1Z",stroke:i,strokeLinecap:"round",strokeLinejoin:"round"}))}s.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},s.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{s as Subdomain};
1
+ import{P as e,_ as t,R as r,a as o}from"./index.js";var s=["size","color","strokeWidth"];function i(e){var i=e.size,n=e.color,a=e.strokeWidth,c=t(e,s);return r.createElement("svg",o({viewBox:"0 0 24 24",fill:"none",height:i,width:i},c),r.createElement("circle",{cx:"12",cy:"12",r:"8.25",stroke:n,strokeWidth:a}),r.createElement("path",{d:"M15.25 12C15.25 14.4055 14.8152 16.5471 14.1431 18.0594C13.8066 18.8164 13.4254 19.3826 13.0399 19.7494C12.6584 20.1126 12.3082 20.25 12 20.25C11.6918 20.25 11.3416 20.1126 10.9601 19.7494C10.5746 19.3826 10.1934 18.8164 9.85693 18.0594C9.18483 16.5471 8.75 14.4055 8.75 12C8.75 9.59454 9.18483 7.45286 9.85693 5.94064C10.1934 5.18359 10.5746 4.61737 10.9601 4.25056C11.3416 3.88743 11.6918 3.75 12 3.75C12.3082 3.75 12.6584 3.88743 13.0399 4.25056C13.4254 4.61737 13.8066 5.18359 14.1431 5.94064C14.8152 7.45286 15.25 9.59454 15.25 12Z",stroke:n,strokeWidth:a}),r.createElement("path",{d:"M4 12H20",stroke:n,strokeWidth:a}))}i.defaultProps={color:"currentColor",size:24,strokeWidth:"1.5"},i.propTypes={color:e.string,size:e.oneOfType([e.string,e.number]),strokeWidth:e.oneOfType([e.string,e.number])};export{i as Subdomain};
2
2
  //# sourceMappingURL=Subdomain.js.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Subdomain.js.js","sources":["../../lib/icons/Subdomain.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Subdomain(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 12 12\" fill=\"none\" height={size} width={size} {...other}>\n <path\n d=\"M6 11C8.76142 11 11 8.76142 11 6C11 3.23858 8.76142 1 6 1C3.23858 1 1 3.23858 1 6C1 8.76142 3.23858 11 6 11Z\"\n stroke={color}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M1 6H6H11\"\n stroke={color}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M6 1C7.25064 2.36918 7.96138 4.14602 8 6C7.96138 7.85398 7.25064 9.63082 6 11C4.74936 9.63082 4.03862 7.85398 4 6C4.03862 4.14602 4.74936 2.36918 6 1V1Z\"\n stroke={color}\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </svg>\n );\n}\n\nSubdomain.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nSubdomain.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Subdomain","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","d","stroke","strokeLinecap","strokeLinejoin","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAUC,OAChBC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAiCF,EAA1BG,gBAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,wBACEK,EAAE,+GACFC,OAAQT,EACRU,cAAc,QACdC,eAAe,UAEjBR,wBACEK,EAAE,YACFC,OAAQT,EACRU,cAAc,QACdC,eAAe,UAEjBR,wBACEK,EAAE,2JACFC,OAAQT,EACRU,cAAc,QACdC,eAAe,WAMvBd,EAAUe,aAAe,CACvBZ,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAUgB,UAAY,CACpBb,MAAOc,EAAUC,OACjBhB,KAAMe,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDhB,YAAaa,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
1
+ {"version":3,"file":"Subdomain.js.js","sources":["../../lib/icons/Subdomain.js"],"sourcesContent":["/** Icons generated by create-react-icons. Don't edit this file directly. **/\nimport React from \"react\";\nimport PropTypes from \"prop-types\";\n\nexport function Subdomain(props) {\n const { size, color, strokeWidth, ...other } = props;\n return (\n <svg viewBox=\"0 0 24 24\" fill=\"none\" height={size} width={size} {...other}>\n <circle\n cx=\"12\"\n cy=\"12\"\n r=\"8.25\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path\n d=\"M15.25 12C15.25 14.4055 14.8152 16.5471 14.1431 18.0594C13.8066 18.8164 13.4254 19.3826 13.0399 19.7494C12.6584 20.1126 12.3082 20.25 12 20.25C11.6918 20.25 11.3416 20.1126 10.9601 19.7494C10.5746 19.3826 10.1934 18.8164 9.85693 18.0594C9.18483 16.5471 8.75 14.4055 8.75 12C8.75 9.59454 9.18483 7.45286 9.85693 5.94064C10.1934 5.18359 10.5746 4.61737 10.9601 4.25056C11.3416 3.88743 11.6918 3.75 12 3.75C12.3082 3.75 12.6584 3.88743 13.0399 4.25056C13.4254 4.61737 13.8066 5.18359 14.1431 5.94064C14.8152 7.45286 15.25 9.59454 15.25 12Z\"\n stroke={color}\n strokeWidth={strokeWidth}\n />\n <path d=\"M4 12H20\" stroke={color} strokeWidth={strokeWidth} />\n </svg>\n );\n}\n\nSubdomain.defaultProps = {\n color: \"currentColor\",\n size: 24,\n strokeWidth: \"1.5\",\n};\n\nSubdomain.propTypes = {\n color: PropTypes.string,\n size: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n strokeWidth: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),\n};\n"],"names":["Subdomain","props","size","color","strokeWidth","other","React","viewBox","fill","height","width","cx","cy","r","stroke","d","defaultProps","propTypes","PropTypes","string","oneOfType","number"],"mappings":"yFAIO,SAASA,EAAUC,OAChBC,EAAuCD,EAAvCC,KAAMC,EAAiCF,EAAjCE,MAAOC,EAA0BH,EAA1BG,YAAgBC,IAAUJ,YAE7CK,yBAAKC,QAAQ,YAAYC,KAAK,OAAOC,OAAQP,EAAMQ,MAAOR,GAAUG,GAClEC,0BACEK,GAAG,KACHC,GAAG,KACHC,EAAE,OACFC,OAAQX,EACRC,YAAaA,IAEfE,wBACES,EAAE,2hBACFD,OAAQX,EACRC,YAAaA,IAEfE,wBAAMS,EAAE,WAAWD,OAAQX,EAAOC,YAAaA,KAKrDJ,EAAUgB,aAAe,CACvBb,MAAO,eACPD,KAAM,GACNE,YAAa,OAGfJ,EAAUiB,UAAY,CACpBd,MAAOe,EAAUC,OACjBjB,KAAMgB,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG,SACvDjB,YAAac,EAAUE,UAAU,CAACF,EAAUC,OAAQD,EAAUG"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-icons",
3
- "version": "1.8.46",
3
+ "version": "1.8.47",
4
4
  "main": "./dist/neeto-icons.js",
5
5
  "author": "vinay0x",
6
6
  "license": "MIT",