@central-icons-react-native/square-outlined-radius-0-stroke-1.5 1.1.109 → 1.1.111

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/IconFeather2/index.d.ts +4 -0
  2. package/IconFeather2/index.js +2 -0
  3. package/IconFeather2/index.js.map +1 -0
  4. package/IconFeather2/index.mjs +2 -0
  5. package/IconFeather2/index.mjs.map +1 -0
  6. package/IconGrass/index.d.ts +4 -0
  7. package/IconGrass/index.js +2 -0
  8. package/IconGrass/index.js.map +1 -0
  9. package/IconGrass/index.mjs +2 -0
  10. package/IconGrass/index.mjs.map +1 -0
  11. package/IconSquareGridMagnifyingGlass/index.d.ts +4 -0
  12. package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.js +1 -1
  13. package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.js.map +1 -1
  14. package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.mjs +1 -1
  15. package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.mjs.map +1 -1
  16. package/IconThings/index.d.ts +4 -0
  17. package/IconThings/index.js +2 -0
  18. package/IconThings/index.js.map +1 -0
  19. package/IconThings/index.mjs +2 -0
  20. package/IconThings/index.mjs.map +1 -0
  21. package/IconWreathSimple/index.d.ts +4 -0
  22. package/IconWreathSimple/index.js +2 -0
  23. package/IconWreathSimple/index.js.map +1 -0
  24. package/IconWreathSimple/index.mjs +2 -0
  25. package/IconWreathSimple/index.mjs.map +1 -0
  26. package/README.md +5 -1
  27. package/filtered-icons.json +58 -2
  28. package/icons/index.d.ts +5 -1
  29. package/icons-index.json +17 -9
  30. package/index.d.ts +5 -1
  31. package/index.js +1 -1
  32. package/index.js.map +1 -1
  33. package/index.mjs +1 -1
  34. package/index.mjs.map +1 -1
  35. package/license-check.js +1 -1
  36. package/package.json +1 -1
  37. package/tsx-icons.json +31 -3
  38. package/IconSquareGridMaginfyingGlass/index.d.ts +0 -4
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFeather2: FC<CentralIconBaseProps>;
4
+ export default IconFeather2;
@@ -0,0 +1,2 @@
1
+ "use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=i(o,e))||a.enumerable});return r};var s=(r,o,t)=>(t=r!=null?I(x(r)):{},C(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>C(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFeather2:()=>B,default:()=>v});module.exports=h(F);var p=s(require("react"));var m=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(l.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M3.75 16.1029V21.25C3.75 17.9746 6.51382 15.75 9.52918 15.75C13.3388 15.75 16.1409 12 14.0757 8.89706C17.4661 8.89706 18.206 6.41115 19.6 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z",stroke:"currentColor",strokeWidth:"1.5"})),v=B;0&&(module.exports={IconFeather2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFeather2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFeather2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 16.1029V21.25C3.75 17.9746 6.51382 15.75 9.52918 15.75C13.3388 15.75 16.1409 12 14.0757 8.89706C17.4661 8.89706 18.206 6.41115 19.6 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFeather2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gMACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconFeather2_exports","__export","IconFeather2","IconFeather2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFeather2","props","React","CentralIconBase","IconFeather2_default"]}
@@ -0,0 +1,2 @@
1
+ import e from"react";import p from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(a,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as C}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(C,{d:"M3.75 16.1029V21.25C3.75 17.9746 6.51382 15.75 9.52918 15.75C13.3388 15.75 16.1409 12 14.0757 8.89706C17.4661 8.89706 18.206 6.41115 19.6 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z",stroke:"currentColor",strokeWidth:"1.5"})),P=s;export{s as IconFeather2,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFeather2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFeather2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 16.1029V21.25C3.75 17.9746 6.51382 15.75 9.52918 15.75C13.3388 15.75 16.1409 12 14.0757 8.89706C17.4661 8.89706 18.206 6.41115 19.6 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFeather2;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gMACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFeather2","props","React","CentralIconBase","IconFeather2_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGrass: FC<CentralIconBaseProps>;
4
+ export default IconGrass;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var C=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!B.call(r,s)&&s!==t&&C(r,s,{get:()=>o[s],enumerable:!(p=k(o,s))||p.enumerable});return r};var m=(r,o,t)=>(t=r!=null?c(h(r)):{},l(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(C({},"__esModule",{value:!0}),r);var g={};I(g,{IconGrass:()=>u,default:()=>P});module.exports=x(g);var e=m(require("react"));var a=m(require("react")),d=require("react-native-svg"),i=({children:r,size:o=24,...t})=>a.default.createElement(d.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),u=r=>e.default.createElement(i,{...r},e.default.createElement(n.Path,{d:"M1 19.25L23 19.25",stroke:"currentColor",strokeWidth:"1.5"}),e.default.createElement(n.Path,{d:"M4.10714 18.75C4.06357 15.4283 3.8236 12.3705 2.25 9.25C7.82143 11.2292 8.75 14 8.75 18.75",stroke:"currentColor",strokeWidth:"1.5"}),e.default.createElement(n.Path,{d:"M8.85294 19.25C8.80246 15.6899 8.32281 8.59449 6.5 5.25C14.0294 7.79545 14.5 14.1591 14.5 19.25",stroke:"currentColor",strokeWidth:"1.5"}),e.default.createElement(n.Path,{d:"M12.5 9.625C13.5842 7.3442 14.9314 5.91821 18.25 4.75C17.3605 6.44939 17.3541 8.56981 17.013 11.25",stroke:"currentColor",strokeWidth:"1.5"}),e.default.createElement(n.Path,{d:"M19.8571 19C19.9074 15.3286 20.1843 11.949 22 8.5C15.6376 10.9805 14.5 13.75 14.5 19",stroke:"currentColor",strokeWidth:"1.5"})),P=u;0&&(module.exports={IconGrass});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGrass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGrass: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1 19.25L23 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path\n d=\"M4.10714 18.75C4.06357 15.4283 3.8236 12.3705 2.25 9.25C7.82143 11.2292 8.75 14 8.75 18.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M8.85294 19.25C8.80246 15.6899 8.32281 8.59449 6.5 5.25C14.0294 7.79545 14.5 14.1591 14.5 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M12.5 9.625C13.5842 7.3442 14.9314 5.91821 18.25 4.75C17.3605 6.44939 17.3541 8.56981 17.013 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M19.8571 19C19.9074 15.3286 20.1843 11.949 22 8.5C15.6376 10.9805 14.5 13.75 14.5 19\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGrass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,oBAAoB,OAAO,eAAe,YAAY,MAAM,EACpE,EAAAA,QAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qGACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uFACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconGrass_exports","__export","IconGrass","IconGrass_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGrass","props","React","CentralIconBase","IconGrass_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...s})=>C.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M1 19.25L23 19.25",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(t,{d:"M4.10714 18.75C4.06357 15.4283 3.8236 12.3705 2.25 9.25C7.82143 11.2292 8.75 14 8.75 18.75",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(t,{d:"M8.85294 19.25C8.80246 15.6899 8.32281 8.59449 6.5 5.25C14.0294 7.79545 14.5 14.1591 14.5 19.25",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(t,{d:"M12.5 9.625C13.5842 7.3442 14.9314 5.91821 18.25 4.75C17.3605 6.44939 17.3541 8.56981 17.013 11.25",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement(t,{d:"M19.8571 19C19.9074 15.3286 20.1843 11.949 22 8.5C15.6376 10.9805 14.5 13.75 14.5 19",stroke:"currentColor",strokeWidth:"1.5"})),B=l;export{l as IconGrass,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGrass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconGrass: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M1 19.25L23 19.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <Path\n d=\"M4.10714 18.75C4.06357 15.4283 3.8236 12.3705 2.25 9.25C7.82143 11.2292 8.75 14 8.75 18.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M8.85294 19.25C8.80246 15.6899 8.32281 8.59449 6.5 5.25C14.0294 7.79545 14.5 14.1591 14.5 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M12.5 9.625C13.5842 7.3442 14.9314 5.91821 18.25 4.75C17.3605 6.44939 17.3541 8.56981 17.013 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <Path\n d=\"M19.8571 19C19.9074 15.3286 20.1843 11.949 22 8.5C15.6376 10.9805 14.5 13.75 14.5 19\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGrass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,OAAO,eAAe,YAAY,MAAM,EACpEG,EAAA,cAACH,EAAA,CACC,EAAE,6FACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qGACF,OAAO,eACP,YAAY,MACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uFACF,OAAO,eACP,YAAY,MACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGrass","props","React","CentralIconBase","IconGrass_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconSquareGridMagnifyingGlass: FC<CentralIconBaseProps>;
4
+ export default IconSquareGridMagnifyingGlass;
@@ -1,2 +1,2 @@
1
- "use strict";var m=Object.create;var M=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var g=(H,V)=>{for(var r in V)M(H,r,{get:V[r],enumerable:!0})},e=(H,V,r,t)=>{if(V&&typeof V=="object"||typeof V=="function")for(let o of f(V))!i.call(H,o)&&o!==r&&M(H,o,{get:()=>V[o],enumerable:!(t=L(V,o))||t.enumerable});return H};var n=(H,V,r)=>(r=H!=null?m(c(H)):{},e(V||!H||!H.__esModule?M(r,"default",{value:H,enumerable:!0}):r,H)),u=H=>e(M({},"__esModule",{value:!0}),H);var I={};g(I,{IconSquareGridMaginfyingGlass:()=>s,default:()=>B});module.exports=u(I);var Z=n(require("react"));var C=n(require("react")),p=require("react-native-svg"),a=({children:H,size:V=24,...r})=>C.default.createElement(p.Svg,{...r,width:typeof V=="number"?`${V}px`:V,height:typeof V=="number"?`${V}px`:V,viewBox:"0 0 24 24",fill:"none"},H);var l=require("react-native-svg"),s=H=>Z.default.createElement(a,{...H},Z.default.createElement(l.Path,{d:"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z",fill:"currentColor"})),B=s;0&&(module.exports={IconSquareGridMaginfyingGlass});
1
+ "use strict";var m=Object.create;var M=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var g=(H,V)=>{for(var r in V)M(H,r,{get:V[r],enumerable:!0})},e=(H,V,r,t)=>{if(V&&typeof V=="object"||typeof V=="function")for(let o of f(V))!i.call(H,o)&&o!==r&&M(H,o,{get:()=>V[o],enumerable:!(t=L(V,o))||t.enumerable});return H};var n=(H,V,r)=>(r=H!=null?m(c(H)):{},e(V||!H||!H.__esModule?M(r,"default",{value:H,enumerable:!0}):r,H)),u=H=>e(M({},"__esModule",{value:!0}),H);var I={};g(I,{IconSquareGridMagnifyingGlass:()=>s,default:()=>B});module.exports=u(I);var Z=n(require("react"));var C=n(require("react")),p=require("react-native-svg"),a=({children:H,size:V=24,...r})=>C.default.createElement(p.Svg,{...r,width:typeof V=="number"?`${V}px`:V,height:typeof V=="number"?`${V}px`:V,viewBox:"0 0 24 24",fill:"none"},H);var l=require("react-native-svg"),s=H=>Z.default.createElement(a,{...H},Z.default.createElement(l.Path,{d:"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z",fill:"currentColor"})),B=s;0&&(module.exports={IconSquareGridMagnifyingGlass});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconSquareGridMaginfyingGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSquareGridMaginfyingGlass: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSquareGridMaginfyingGlass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mCAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,y7CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSquareGridMaginfyingGlass_exports","__export","IconSquareGridMaginfyingGlass","IconSquareGridMaginfyingGlass_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSquareGridMaginfyingGlass","props","React","CentralIconBase","IconSquareGridMaginfyingGlass_default"]}
1
+ {"version":3,"sources":["../src/IconSquareGridMagnifyingGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSquareGridMagnifyingGlass: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSquareGridMagnifyingGlass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mCAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,y7CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSquareGridMagnifyingGlass_exports","__export","IconSquareGridMagnifyingGlass","IconSquareGridMagnifyingGlass_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSquareGridMagnifyingGlass","props","React","CentralIconBase","IconSquareGridMagnifyingGlass_default"]}
@@ -1,2 +1,2 @@
1
- import o from"react";import Z from"react";import{Svg as t}from"react-native-svg";var r=({children:V,size:H=24,...M})=>Z.createElement(t,{...M,width:typeof H=="number"?`${H}px`:H,height:typeof H=="number"?`${H}px`:H,viewBox:"0 0 24 24",fill:"none"},V);import{Path as e}from"react-native-svg";var n=V=>o.createElement(r,{...V},o.createElement(e,{d:"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z",fill:"currentColor"})),i=n;export{n as IconSquareGridMaginfyingGlass,i as default};
1
+ import o from"react";import Z from"react";import{Svg as t}from"react-native-svg";var r=({children:V,size:H=24,...M})=>Z.createElement(t,{...M,width:typeof H=="number"?`${H}px`:H,height:typeof H=="number"?`${H}px`:H,viewBox:"0 0 24 24",fill:"none"},V);import{Path as e}from"react-native-svg";var n=V=>o.createElement(r,{...V},o.createElement(e,{d:"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z",fill:"currentColor"})),i=n;export{n as IconSquareGridMagnifyingGlass,i as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconSquareGridMaginfyingGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSquareGridMaginfyingGlass: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSquareGridMaginfyingGlass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,y7CACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSquareGridMaginfyingGlass","props","React","CentralIconBase","IconSquareGridMaginfyingGlass_default"]}
1
+ {"version":3,"sources":["../src/IconSquareGridMagnifyingGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconSquareGridMagnifyingGlass: FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSquareGridMagnifyingGlass;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EACXC,GAGEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,y7CACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSquareGridMagnifyingGlass","props","React","CentralIconBase","IconSquareGridMagnifyingGlass_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconThings: FC<CentralIconBaseProps>;
4
+ export default IconThings;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(C,o)=>{for(var r in o)n(C,r,{get:o[r],enumerable:!0})},L=(C,o,r,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of d(o))!I.call(C,e)&&e!==r&&n(C,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return C};var a=(C,o,r)=>(r=C!=null?i(B(C)):{},L(o||!C||!C.__esModule?n(r,"default",{value:C,enumerable:!0}):r,C)),g=C=>L(n({},"__esModule",{value:!0}),C);var x={};V(x,{IconThings:()=>f,default:()=>v});module.exports=g(x);var t=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:C,size:o=24,...r})=>m.default.createElement(s.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var p=require("react-native-svg"),f=C=>t.default.createElement(c,{...C},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.8607 2.25047C16.8771 2.25045 19.0796 2.12893 20.1576 4.16844C20.5557 4.92183 20.5765 5.91099 20.6186 7.88817L20.6908 11.2466C20.7128 12.2783 20.7235 12.7947 20.7123 13.31C20.7024 13.7683 20.6791 14.2272 20.643 14.6841C20.6023 15.198 20.539 15.7106 20.4135 16.7348L20.4018 16.8315C20.1884 18.5725 20.0815 19.4439 19.6732 20.1001C19.3135 20.678 18.7926 21.1386 18.1752 21.4253C17.4743 21.7505 16.5969 21.7505 14.8432 21.7505H9.15469C7.40089 21.7505 6.52358 21.7506 5.82266 21.4253C5.20526 21.1386 4.6843 20.678 4.32461 20.1001C3.91641 19.4439 3.8095 18.5724 3.5961 16.8315L3.58438 16.7348C3.45882 15.7106 3.39558 15.198 3.35489 14.6841C3.31872 14.2272 3.2955 13.7683 3.28555 13.31C3.27438 12.7947 3.28606 12.2783 3.30801 11.2466L3.3793 7.88817C3.42137 5.91099 3.44213 4.92183 3.84024 4.16844C4.91832 2.12866 7.12153 2.25047 9.13809 2.25047H14.8607ZM8.392 5.75047C7.29023 5.75047 6.73869 5.75033 6.31485 5.96336C5.9421 6.1508 5.63694 6.45052 5.44278 6.81981C5.22221 7.23965 5.21182 7.79083 5.1918 8.89207L5.09903 14.0005C5.09902 14.2324 5.09978 14.3491 5.10977 14.4487C5.1992 15.3376 5.86711 16.0596 6.74649 16.2173C6.84511 16.2349 6.96133 16.2443 7.19278 16.2622L7.83243 16.311C8.24856 16.3431 8.45708 16.3595 8.62149 16.436C8.85868 16.5465 9.04308 16.7458 9.13516 16.9907C9.19886 17.1605 9.19961 17.3703 9.19961 17.7876V17.8999C9.19961 18.4597 9.19913 18.7407 9.30801 18.9546C9.40387 19.1426 9.55751 19.2953 9.74551 19.3911C9.95939 19.5 10.2394 19.5005 10.7992 19.5005H13.1996C13.7594 19.5005 14.0395 19.5001 14.2533 19.3911C14.4412 19.2953 14.594 19.1425 14.6898 18.9546C14.7988 18.7407 14.7992 18.4598 14.7992 17.8999V17.8452C14.7992 17.3404 14.799 17.0874 14.893 16.8862C14.9759 16.7089 15.1099 16.5598 15.2768 16.4575C15.4662 16.3414 15.7172 16.3122 16.2191 16.2554L16.9496 16.1733C16.9726 16.1725 16.9847 16.1718 16.9945 16.1714C18.0531 16.121 18.8881 15.2536 18.8988 14.1938C18.8989 14.184 18.8998 14.1718 18.8998 14.1489V14.0005L18.809 8.89305C18.7894 7.79131 18.7796 7.23984 18.559 6.81981C18.3649 6.45043 18.0597 6.15087 17.6869 5.96336C17.263 5.75026 16.7109 5.75047 15.6088 5.75047H8.392ZM14.8725 8.05516C15.0628 8.04081 15.3006 8.04244 15.5092 8.2241C15.6488 8.34599 15.7538 8.5331 15.7641 8.73289V8.80907C15.7593 8.88457 15.7407 8.95944 15.7094 9.02879C15.6779 9.0984 15.6208 9.18216 15.5629 9.26121C15.5022 9.344 15.4293 9.43593 15.3559 9.52586C15.1992 9.7177 15.0616 9.87649 14.976 9.98289H14.975C14.2733 10.8482 13.6082 11.743 12.9809 12.6636L12.9799 12.6645C12.7877 12.9447 12.6025 13.2359 12.4145 13.5268L12.4135 13.5259C12.3112 13.6909 12.1685 13.9608 11.9867 14.1538C11.8917 14.2546 11.7755 14.3479 11.6332 14.4018C11.4871 14.4572 11.3244 14.4665 11.1498 14.4175C10.951 14.3614 10.7616 14.2158 10.6088 14.0786L10.1967 13.6743L9.25235 12.7651V12.7641C9.04276 12.5656 8.74103 12.3131 8.55899 12.0259C8.47803 11.898 8.45102 11.7313 8.46133 11.5854C8.47161 11.4413 8.52246 11.27 8.64883 11.1548C8.81744 11.0012 8.99752 10.9207 9.18496 10.9106C9.36866 10.9009 9.53648 10.9602 9.68106 11.0415C9.82488 11.1225 9.95774 11.2321 10.0746 11.3384C10.1333 11.3917 10.1904 11.4463 10.2436 11.4975C10.2976 11.5495 10.3481 11.5981 10.3959 11.6421L11.1957 12.3764C11.398 12.0717 11.6405 11.7436 11.8471 11.4595C12.4493 10.6295 13.0843 9.823 13.7494 9.04246L14.1098 8.62157C14.2381 8.47662 14.3731 8.33288 14.5092 8.21141C14.6186 8.11382 14.7508 8.07802 14.8471 8.05809L14.8588 8.05614L14.8725 8.05516ZM10.3354 13.5307C10.4506 13.6426 10.5923 13.7943 10.7426 13.9292C10.5922 13.7942 10.4506 13.6416 10.3354 13.5298L9.39102 12.6206L10.3354 13.5307ZM12.2455 13.4175C12.2232 13.4534 12.2005 13.4915 12.1772 13.5307C12.2004 13.4917 12.2233 13.4541 12.2455 13.4184L12.8148 12.5513V12.5503C12.6205 12.8336 12.4328 13.1276 12.2455 13.4175ZM8.70059 11.4223C8.69991 11.424 8.69929 11.4256 8.69864 11.4272C8.70831 11.4034 8.72047 11.3813 8.73379 11.3608L8.70059 11.4223Z",fill:"currentColor"}),t.default.createElement(p.Path,{opacity:"0.4",d:"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z",fill:"currentColor"})),v=f;0&&(module.exports={IconThings});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconThings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconThings: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.8607 2.25047C16.8771 2.25045 19.0796 2.12893 20.1576 4.16844C20.5557 4.92183 20.5765 5.91099 20.6186 7.88817L20.6908 11.2466C20.7128 12.2783 20.7235 12.7947 20.7123 13.31C20.7024 13.7683 20.6791 14.2272 20.643 14.6841C20.6023 15.198 20.539 15.7106 20.4135 16.7348L20.4018 16.8315C20.1884 18.5725 20.0815 19.4439 19.6732 20.1001C19.3135 20.678 18.7926 21.1386 18.1752 21.4253C17.4743 21.7505 16.5969 21.7505 14.8432 21.7505H9.15469C7.40089 21.7505 6.52358 21.7506 5.82266 21.4253C5.20526 21.1386 4.6843 20.678 4.32461 20.1001C3.91641 19.4439 3.8095 18.5724 3.5961 16.8315L3.58438 16.7348C3.45882 15.7106 3.39558 15.198 3.35489 14.6841C3.31872 14.2272 3.2955 13.7683 3.28555 13.31C3.27438 12.7947 3.28606 12.2783 3.30801 11.2466L3.3793 7.88817C3.42137 5.91099 3.44213 4.92183 3.84024 4.16844C4.91832 2.12866 7.12153 2.25047 9.13809 2.25047H14.8607ZM8.392 5.75047C7.29023 5.75047 6.73869 5.75033 6.31485 5.96336C5.9421 6.1508 5.63694 6.45052 5.44278 6.81981C5.22221 7.23965 5.21182 7.79083 5.1918 8.89207L5.09903 14.0005C5.09902 14.2324 5.09978 14.3491 5.10977 14.4487C5.1992 15.3376 5.86711 16.0596 6.74649 16.2173C6.84511 16.2349 6.96133 16.2443 7.19278 16.2622L7.83243 16.311C8.24856 16.3431 8.45708 16.3595 8.62149 16.436C8.85868 16.5465 9.04308 16.7458 9.13516 16.9907C9.19886 17.1605 9.19961 17.3703 9.19961 17.7876V17.8999C9.19961 18.4597 9.19913 18.7407 9.30801 18.9546C9.40387 19.1426 9.55751 19.2953 9.74551 19.3911C9.95939 19.5 10.2394 19.5005 10.7992 19.5005H13.1996C13.7594 19.5005 14.0395 19.5001 14.2533 19.3911C14.4412 19.2953 14.594 19.1425 14.6898 18.9546C14.7988 18.7407 14.7992 18.4598 14.7992 17.8999V17.8452C14.7992 17.3404 14.799 17.0874 14.893 16.8862C14.9759 16.7089 15.1099 16.5598 15.2768 16.4575C15.4662 16.3414 15.7172 16.3122 16.2191 16.2554L16.9496 16.1733C16.9726 16.1725 16.9847 16.1718 16.9945 16.1714C18.0531 16.121 18.8881 15.2536 18.8988 14.1938C18.8989 14.184 18.8998 14.1718 18.8998 14.1489V14.0005L18.809 8.89305C18.7894 7.79131 18.7796 7.23984 18.559 6.81981C18.3649 6.45043 18.0597 6.15087 17.6869 5.96336C17.263 5.75026 16.7109 5.75047 15.6088 5.75047H8.392ZM14.8725 8.05516C15.0628 8.04081 15.3006 8.04244 15.5092 8.2241C15.6488 8.34599 15.7538 8.5331 15.7641 8.73289V8.80907C15.7593 8.88457 15.7407 8.95944 15.7094 9.02879C15.6779 9.0984 15.6208 9.18216 15.5629 9.26121C15.5022 9.344 15.4293 9.43593 15.3559 9.52586C15.1992 9.7177 15.0616 9.87649 14.976 9.98289H14.975C14.2733 10.8482 13.6082 11.743 12.9809 12.6636L12.9799 12.6645C12.7877 12.9447 12.6025 13.2359 12.4145 13.5268L12.4135 13.5259C12.3112 13.6909 12.1685 13.9608 11.9867 14.1538C11.8917 14.2546 11.7755 14.3479 11.6332 14.4018C11.4871 14.4572 11.3244 14.4665 11.1498 14.4175C10.951 14.3614 10.7616 14.2158 10.6088 14.0786L10.1967 13.6743L9.25235 12.7651V12.7641C9.04276 12.5656 8.74103 12.3131 8.55899 12.0259C8.47803 11.898 8.45102 11.7313 8.46133 11.5854C8.47161 11.4413 8.52246 11.27 8.64883 11.1548C8.81744 11.0012 8.99752 10.9207 9.18496 10.9106C9.36866 10.9009 9.53648 10.9602 9.68106 11.0415C9.82488 11.1225 9.95774 11.2321 10.0746 11.3384C10.1333 11.3917 10.1904 11.4463 10.2436 11.4975C10.2976 11.5495 10.3481 11.5981 10.3959 11.6421L11.1957 12.3764C11.398 12.0717 11.6405 11.7436 11.8471 11.4595C12.4493 10.6295 13.0843 9.823 13.7494 9.04246L14.1098 8.62157C14.2381 8.47662 14.3731 8.33288 14.5092 8.21141C14.6186 8.11382 14.7508 8.07802 14.8471 8.05809L14.8588 8.05614L14.8725 8.05516ZM10.3354 13.5307C10.4506 13.6426 10.5923 13.7943 10.7426 13.9292C10.5922 13.7942 10.4506 13.6416 10.3354 13.5298L9.39102 12.6206L10.3354 13.5307ZM12.2455 13.4175C12.2232 13.4534 12.2005 13.4915 12.1772 13.5307C12.2004 13.4917 12.2233 13.4541 12.2455 13.4184L12.8148 12.5513V12.5503C12.6205 12.8336 12.4328 13.1276 12.2455 13.4175ZM8.70059 11.4223C8.69991 11.424 8.69929 11.4256 8.69864 11.4272C8.70831 11.4034 8.72047 11.3813 8.73379 11.3608L8.70059 11.4223Z\"\n fill=\"currentColor\"\n />\n <Path\n opacity=\"0.4\"\n d=\"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconThings;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,gBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,4xHACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,QAAQ,MACR,EAAE,+ZACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconThings_exports","__export","IconThings","IconThings_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconThings","props","React","CentralIconBase","IconThings_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:C=24,...t})=>p.createElement(l,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var L=o=>r.createElement(e,{...o},r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M14.8607 2.25047C16.8771 2.25045 19.0796 2.12893 20.1576 4.16844C20.5557 4.92183 20.5765 5.91099 20.6186 7.88817L20.6908 11.2466C20.7128 12.2783 20.7235 12.7947 20.7123 13.31C20.7024 13.7683 20.6791 14.2272 20.643 14.6841C20.6023 15.198 20.539 15.7106 20.4135 16.7348L20.4018 16.8315C20.1884 18.5725 20.0815 19.4439 19.6732 20.1001C19.3135 20.678 18.7926 21.1386 18.1752 21.4253C17.4743 21.7505 16.5969 21.7505 14.8432 21.7505H9.15469C7.40089 21.7505 6.52358 21.7506 5.82266 21.4253C5.20526 21.1386 4.6843 20.678 4.32461 20.1001C3.91641 19.4439 3.8095 18.5724 3.5961 16.8315L3.58438 16.7348C3.45882 15.7106 3.39558 15.198 3.35489 14.6841C3.31872 14.2272 3.2955 13.7683 3.28555 13.31C3.27438 12.7947 3.28606 12.2783 3.30801 11.2466L3.3793 7.88817C3.42137 5.91099 3.44213 4.92183 3.84024 4.16844C4.91832 2.12866 7.12153 2.25047 9.13809 2.25047H14.8607ZM8.392 5.75047C7.29023 5.75047 6.73869 5.75033 6.31485 5.96336C5.9421 6.1508 5.63694 6.45052 5.44278 6.81981C5.22221 7.23965 5.21182 7.79083 5.1918 8.89207L5.09903 14.0005C5.09902 14.2324 5.09978 14.3491 5.10977 14.4487C5.1992 15.3376 5.86711 16.0596 6.74649 16.2173C6.84511 16.2349 6.96133 16.2443 7.19278 16.2622L7.83243 16.311C8.24856 16.3431 8.45708 16.3595 8.62149 16.436C8.85868 16.5465 9.04308 16.7458 9.13516 16.9907C9.19886 17.1605 9.19961 17.3703 9.19961 17.7876V17.8999C9.19961 18.4597 9.19913 18.7407 9.30801 18.9546C9.40387 19.1426 9.55751 19.2953 9.74551 19.3911C9.95939 19.5 10.2394 19.5005 10.7992 19.5005H13.1996C13.7594 19.5005 14.0395 19.5001 14.2533 19.3911C14.4412 19.2953 14.594 19.1425 14.6898 18.9546C14.7988 18.7407 14.7992 18.4598 14.7992 17.8999V17.8452C14.7992 17.3404 14.799 17.0874 14.893 16.8862C14.9759 16.7089 15.1099 16.5598 15.2768 16.4575C15.4662 16.3414 15.7172 16.3122 16.2191 16.2554L16.9496 16.1733C16.9726 16.1725 16.9847 16.1718 16.9945 16.1714C18.0531 16.121 18.8881 15.2536 18.8988 14.1938C18.8989 14.184 18.8998 14.1718 18.8998 14.1489V14.0005L18.809 8.89305C18.7894 7.79131 18.7796 7.23984 18.559 6.81981C18.3649 6.45043 18.0597 6.15087 17.6869 5.96336C17.263 5.75026 16.7109 5.75047 15.6088 5.75047H8.392ZM14.8725 8.05516C15.0628 8.04081 15.3006 8.04244 15.5092 8.2241C15.6488 8.34599 15.7538 8.5331 15.7641 8.73289V8.80907C15.7593 8.88457 15.7407 8.95944 15.7094 9.02879C15.6779 9.0984 15.6208 9.18216 15.5629 9.26121C15.5022 9.344 15.4293 9.43593 15.3559 9.52586C15.1992 9.7177 15.0616 9.87649 14.976 9.98289H14.975C14.2733 10.8482 13.6082 11.743 12.9809 12.6636L12.9799 12.6645C12.7877 12.9447 12.6025 13.2359 12.4145 13.5268L12.4135 13.5259C12.3112 13.6909 12.1685 13.9608 11.9867 14.1538C11.8917 14.2546 11.7755 14.3479 11.6332 14.4018C11.4871 14.4572 11.3244 14.4665 11.1498 14.4175C10.951 14.3614 10.7616 14.2158 10.6088 14.0786L10.1967 13.6743L9.25235 12.7651V12.7641C9.04276 12.5656 8.74103 12.3131 8.55899 12.0259C8.47803 11.898 8.45102 11.7313 8.46133 11.5854C8.47161 11.4413 8.52246 11.27 8.64883 11.1548C8.81744 11.0012 8.99752 10.9207 9.18496 10.9106C9.36866 10.9009 9.53648 10.9602 9.68106 11.0415C9.82488 11.1225 9.95774 11.2321 10.0746 11.3384C10.1333 11.3917 10.1904 11.4463 10.2436 11.4975C10.2976 11.5495 10.3481 11.5981 10.3959 11.6421L11.1957 12.3764C11.398 12.0717 11.6405 11.7436 11.8471 11.4595C12.4493 10.6295 13.0843 9.823 13.7494 9.04246L14.1098 8.62157C14.2381 8.47662 14.3731 8.33288 14.5092 8.21141C14.6186 8.11382 14.7508 8.07802 14.8471 8.05809L14.8588 8.05614L14.8725 8.05516ZM10.3354 13.5307C10.4506 13.6426 10.5923 13.7943 10.7426 13.9292C10.5922 13.7942 10.4506 13.6416 10.3354 13.5298L9.39102 12.6206L10.3354 13.5307ZM12.2455 13.4175C12.2232 13.4534 12.2005 13.4915 12.1772 13.5307C12.2004 13.4917 12.2233 13.4541 12.2455 13.4184L12.8148 12.5513V12.5503C12.6205 12.8336 12.4328 13.1276 12.2455 13.4175ZM8.70059 11.4223C8.69991 11.424 8.69929 11.4256 8.69864 11.4272C8.70831 11.4034 8.72047 11.3813 8.73379 11.3608L8.70059 11.4223Z",fill:"currentColor"}),r.createElement(n,{opacity:"0.4",d:"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z",fill:"currentColor"})),I=L;export{L as IconThings,I as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconThings/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconThings: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M14.8607 2.25047C16.8771 2.25045 19.0796 2.12893 20.1576 4.16844C20.5557 4.92183 20.5765 5.91099 20.6186 7.88817L20.6908 11.2466C20.7128 12.2783 20.7235 12.7947 20.7123 13.31C20.7024 13.7683 20.6791 14.2272 20.643 14.6841C20.6023 15.198 20.539 15.7106 20.4135 16.7348L20.4018 16.8315C20.1884 18.5725 20.0815 19.4439 19.6732 20.1001C19.3135 20.678 18.7926 21.1386 18.1752 21.4253C17.4743 21.7505 16.5969 21.7505 14.8432 21.7505H9.15469C7.40089 21.7505 6.52358 21.7506 5.82266 21.4253C5.20526 21.1386 4.6843 20.678 4.32461 20.1001C3.91641 19.4439 3.8095 18.5724 3.5961 16.8315L3.58438 16.7348C3.45882 15.7106 3.39558 15.198 3.35489 14.6841C3.31872 14.2272 3.2955 13.7683 3.28555 13.31C3.27438 12.7947 3.28606 12.2783 3.30801 11.2466L3.3793 7.88817C3.42137 5.91099 3.44213 4.92183 3.84024 4.16844C4.91832 2.12866 7.12153 2.25047 9.13809 2.25047H14.8607ZM8.392 5.75047C7.29023 5.75047 6.73869 5.75033 6.31485 5.96336C5.9421 6.1508 5.63694 6.45052 5.44278 6.81981C5.22221 7.23965 5.21182 7.79083 5.1918 8.89207L5.09903 14.0005C5.09902 14.2324 5.09978 14.3491 5.10977 14.4487C5.1992 15.3376 5.86711 16.0596 6.74649 16.2173C6.84511 16.2349 6.96133 16.2443 7.19278 16.2622L7.83243 16.311C8.24856 16.3431 8.45708 16.3595 8.62149 16.436C8.85868 16.5465 9.04308 16.7458 9.13516 16.9907C9.19886 17.1605 9.19961 17.3703 9.19961 17.7876V17.8999C9.19961 18.4597 9.19913 18.7407 9.30801 18.9546C9.40387 19.1426 9.55751 19.2953 9.74551 19.3911C9.95939 19.5 10.2394 19.5005 10.7992 19.5005H13.1996C13.7594 19.5005 14.0395 19.5001 14.2533 19.3911C14.4412 19.2953 14.594 19.1425 14.6898 18.9546C14.7988 18.7407 14.7992 18.4598 14.7992 17.8999V17.8452C14.7992 17.3404 14.799 17.0874 14.893 16.8862C14.9759 16.7089 15.1099 16.5598 15.2768 16.4575C15.4662 16.3414 15.7172 16.3122 16.2191 16.2554L16.9496 16.1733C16.9726 16.1725 16.9847 16.1718 16.9945 16.1714C18.0531 16.121 18.8881 15.2536 18.8988 14.1938C18.8989 14.184 18.8998 14.1718 18.8998 14.1489V14.0005L18.809 8.89305C18.7894 7.79131 18.7796 7.23984 18.559 6.81981C18.3649 6.45043 18.0597 6.15087 17.6869 5.96336C17.263 5.75026 16.7109 5.75047 15.6088 5.75047H8.392ZM14.8725 8.05516C15.0628 8.04081 15.3006 8.04244 15.5092 8.2241C15.6488 8.34599 15.7538 8.5331 15.7641 8.73289V8.80907C15.7593 8.88457 15.7407 8.95944 15.7094 9.02879C15.6779 9.0984 15.6208 9.18216 15.5629 9.26121C15.5022 9.344 15.4293 9.43593 15.3559 9.52586C15.1992 9.7177 15.0616 9.87649 14.976 9.98289H14.975C14.2733 10.8482 13.6082 11.743 12.9809 12.6636L12.9799 12.6645C12.7877 12.9447 12.6025 13.2359 12.4145 13.5268L12.4135 13.5259C12.3112 13.6909 12.1685 13.9608 11.9867 14.1538C11.8917 14.2546 11.7755 14.3479 11.6332 14.4018C11.4871 14.4572 11.3244 14.4665 11.1498 14.4175C10.951 14.3614 10.7616 14.2158 10.6088 14.0786L10.1967 13.6743L9.25235 12.7651V12.7641C9.04276 12.5656 8.74103 12.3131 8.55899 12.0259C8.47803 11.898 8.45102 11.7313 8.46133 11.5854C8.47161 11.4413 8.52246 11.27 8.64883 11.1548C8.81744 11.0012 8.99752 10.9207 9.18496 10.9106C9.36866 10.9009 9.53648 10.9602 9.68106 11.0415C9.82488 11.1225 9.95774 11.2321 10.0746 11.3384C10.1333 11.3917 10.1904 11.4463 10.2436 11.4975C10.2976 11.5495 10.3481 11.5981 10.3959 11.6421L11.1957 12.3764C11.398 12.0717 11.6405 11.7436 11.8471 11.4595C12.4493 10.6295 13.0843 9.823 13.7494 9.04246L14.1098 8.62157C14.2381 8.47662 14.3731 8.33288 14.5092 8.21141C14.6186 8.11382 14.7508 8.07802 14.8471 8.05809L14.8588 8.05614L14.8725 8.05516ZM10.3354 13.5307C10.4506 13.6426 10.5923 13.7943 10.7426 13.9292C10.5922 13.7942 10.4506 13.6416 10.3354 13.5298L9.39102 12.6206L10.3354 13.5307ZM12.2455 13.4175C12.2232 13.4534 12.2005 13.4915 12.1772 13.5307C12.2004 13.4917 12.2233 13.4541 12.2455 13.4184L12.8148 12.5513V12.5503C12.6205 12.8336 12.4328 13.1276 12.2455 13.4175ZM8.70059 11.4223C8.69991 11.424 8.69929 11.4256 8.69864 11.4272C8.70831 11.4034 8.72047 11.3813 8.73379 11.3608L8.70059 11.4223Z\"\n fill=\"currentColor\"\n />\n <Path\n opacity=\"0.4\"\n d=\"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconThings;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,4xHACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,QAAQ,MACR,EAAE,+ZACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconThings","props","React","CentralIconBase","IconThings_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWreathSimple: FC<CentralIconBaseProps>;
4
+ export default IconWreathSimple;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var C=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,W=Object.prototype.hasOwnProperty;var q=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of h(o))!W.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(p=m(o,n))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?d(f(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>a(C({},"__esModule",{value:!0}),r);var L={};q(L,{IconWreathSimple:()=>c,default:()=>I});module.exports=B(L);var t=k(require("react"));var i=k(require("react")),u=require("react-native-svg"),l=({children:r,size:o=24,...e})=>i.default.createElement(u.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),c=r=>t.default.createElement(l,{...r},t.default.createElement(s.Path,{d:"M6.55211 3.25C5.65611 5.69807 6.48402 7.13205 9.05211 7.58013C9.94812 5.13205 9.12021 3.69807 6.55211 3.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M3.05998 8.17912C2.82812 10.7757 3.99896 11.9465 6.59552 11.7147C6.82738 9.1181 5.65654 7.94726 3.05998 8.17912Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M2.67188 14.2992C3.11995 16.8673 4.55393 17.6952 7.002 16.7992C6.55393 14.2311 5.11995 13.4032 2.67188 14.2992Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M17.4506 3.25C18.3466 5.69807 17.5186 7.13205 14.9506 7.58013C14.0545 5.13205 14.8825 3.69807 17.4506 3.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M20.9315 8.17912C21.1633 10.7757 19.9925 11.9465 17.3959 11.7147C17.1641 9.1181 18.3349 7.94726 20.9315 8.17912Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M21.3301 14.2982C20.8821 16.8663 19.4481 17.6942 17 16.7982C17.4481 14.2301 18.8821 13.4022 21.3301 14.2982Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),t.default.createElement(s.Path,{d:"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),I=c;0&&(module.exports={IconWreathSimple});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconWreathSimple/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWreathSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.55211 3.25C5.65611 5.69807 6.48402 7.13205 9.05211 7.58013C9.94812 5.13205 9.12021 3.69807 6.55211 3.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3.05998 8.17912C2.82812 10.7757 3.99896 11.9465 6.59552 11.7147C6.82738 9.1181 5.65654 7.94726 3.05998 8.17912Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M2.67188 14.2992C3.11995 16.8673 4.55393 17.6952 7.002 16.7992C6.55393 14.2311 5.11995 13.4032 2.67188 14.2992Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17.4506 3.25C18.3466 5.69807 17.5186 7.13205 14.9506 7.58013C14.0545 5.13205 14.8825 3.69807 17.4506 3.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20.9315 8.17912C21.1633 10.7757 19.9925 11.9465 17.3959 11.7147C17.1641 9.1181 18.3349 7.94726 20.9315 8.17912Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21.3301 14.2982C20.8821 16.8663 19.4481 17.6942 17 16.7982C17.4481 14.2301 18.8821 13.4022 21.3301 14.2982Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWreathSimple;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconWreathSimple_exports","__export","IconWreathSimple","IconWreathSimple_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconWreathSimple","props","React","CentralIconBase","IconWreathSimple_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import C from"react";import{Svg as p}from"react-native-svg";var s=({children:t,size:e=24,...n})=>C.createElement(p,{...n,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},t);import{Path as o}from"react-native-svg";var a=t=>r.createElement(s,{...t},r.createElement(o,{d:"M6.55211 3.25C5.65611 5.69807 6.48402 7.13205 9.05211 7.58013C9.94812 5.13205 9.12021 3.69807 6.55211 3.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M3.05998 8.17912C2.82812 10.7757 3.99896 11.9465 6.59552 11.7147C6.82738 9.1181 5.65654 7.94726 3.05998 8.17912Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M2.67188 14.2992C3.11995 16.8673 4.55393 17.6952 7.002 16.7992C6.55393 14.2311 5.11995 13.4032 2.67188 14.2992Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M17.4506 3.25C18.3466 5.69807 17.5186 7.13205 14.9506 7.58013C14.0545 5.13205 14.8825 3.69807 17.4506 3.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M20.9315 8.17912C21.1633 10.7757 19.9925 11.9465 17.3959 11.7147C17.1641 9.1181 18.3349 7.94726 20.9315 8.17912Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M21.3301 14.2982C20.8821 16.8663 19.4481 17.6942 17 16.7982C17.4481 14.2301 18.8821 13.4022 21.3301 14.2982Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement(o,{d:"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),W=a;export{a as IconWreathSimple,W as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconWreathSimple/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWreathSimple: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.55211 3.25C5.65611 5.69807 6.48402 7.13205 9.05211 7.58013C9.94812 5.13205 9.12021 3.69807 6.55211 3.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M3.05998 8.17912C2.82812 10.7757 3.99896 11.9465 6.59552 11.7147C6.82738 9.1181 5.65654 7.94726 3.05998 8.17912Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M2.67188 14.2992C3.11995 16.8673 4.55393 17.6952 7.002 16.7992C6.55393 14.2311 5.11995 13.4032 2.67188 14.2992Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17.4506 3.25C18.3466 5.69807 17.5186 7.13205 14.9506 7.58013C14.0545 5.13205 14.8825 3.69807 17.4506 3.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M20.9315 8.17912C21.1633 10.7757 19.9925 11.9465 17.3959 11.7147C17.1641 9.1181 18.3349 7.94726 20.9315 8.17912Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M21.3301 14.2982C20.8821 16.8663 19.4481 17.6942 17 16.7982C17.4481 14.2301 18.8821 13.4022 21.3301 14.2982Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconWreathSimple;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+GACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yDACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconWreathSimple","props","React","CentralIconBase","IconWreathSimple_default"]}
package/README.md CHANGED
@@ -655,6 +655,7 @@ Below is a complete list of available icons:
655
655
  - IconEraser
656
656
  - IconEraserSimple
657
657
  - IconFeather
658
+ - IconFeather2
658
659
  - IconGlass
659
660
  - IconGooey
660
661
  - IconHdr
@@ -1116,7 +1117,7 @@ Below is a complete list of available icons:
1116
1117
  - IconSquareCircleTopRight
1117
1118
  - IconSquareDotedBehindSquare
1118
1119
  - IconSquareGridCircle
1119
- - IconSquareGridMaginfyingGlass
1120
+ - IconSquareGridMagnifyingGlass
1120
1121
  - IconSquareInfo
1121
1122
  - IconSquareLines
1122
1123
  - IconSquareMinus
@@ -1243,6 +1244,7 @@ Below is a complete list of available icons:
1243
1244
  - IconChargingStation
1244
1245
  - IconDrillingRig
1245
1246
  - IconExposure2
1247
+ - IconGrass
1246
1248
  - IconGreenPower
1247
1249
  - IconGrowth
1248
1250
  - IconHomeEnergy
@@ -1592,6 +1594,7 @@ Below is a complete list of available icons:
1592
1594
  - IconSubstack
1593
1595
  - IconSupabase
1594
1596
  - IconTelegram
1597
+ - IconThings
1595
1598
  - IconThreads
1596
1599
  - IconTiktok
1597
1600
  - IconTumblr
@@ -1829,6 +1832,7 @@ Below is a complete list of available icons:
1829
1832
  - IconWeight
1830
1833
  - IconWip
1831
1834
  - IconWreath
1835
+ - IconWreathSimple
1832
1836
 
1833
1837
  ### Time & Date
1834
1838
 
@@ -9870,6 +9870,20 @@
9870
9870
  "packageName": "square-outlined-radius-0-stroke-1.5",
9871
9871
  "componentName": "IconFeather"
9872
9872
  },
9873
+ {
9874
+ "category": "Edit",
9875
+ "svg": "<path d=\"M3.75 16.1029V21.25C3.75 17.9746 6.51382 15.75 9.52918 15.75C13.3388 15.75 16.1409 12 14.0757 8.89706C17.4661 8.89706 18.206 6.41115 19.6 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
9876
+ "iconName": "feather-2, writing",
9877
+ "variant": {
9878
+ "join": "square",
9879
+ "filled": "off",
9880
+ "radius": "0",
9881
+ "stroke": "1.5"
9882
+ },
9883
+ "createdAt": "2026-01-30T09:00:32.202564+00:00",
9884
+ "packageName": "square-outlined-radius-0-stroke-1.5",
9885
+ "componentName": "IconFeather2"
9886
+ },
9873
9887
  {
9874
9888
  "category": "Interface General",
9875
9889
  "svg": "<path d=\"M12 1.75V8.25M12 15.75V22.25M8.25 12H1.75M15.75 12H22.25M8 8L6 6M16 8L18 6M16 16L18 18M8 16L6 18\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>",
@@ -11956,6 +11970,20 @@
11956
11970
  "packageName": "square-outlined-radius-0-stroke-1.5",
11957
11971
  "componentName": "IconGraduateCap"
11958
11972
  },
11973
+ {
11974
+ "category": "Nature & Energy",
11975
+ "svg": "<path d=\"M1 19.25L23 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M4.10714 18.75C4.06357 15.4283 3.8236 12.3705 2.25 9.25C7.82143 11.2292 8.75 14 8.75 18.75\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M8.85294 19.25C8.80246 15.6899 8.32281 8.59449 6.5 5.25C14.0294 7.79545 14.5 14.1591 14.5 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M12.5 9.625C13.5842 7.3442 14.9314 5.91821 18.25 4.75C17.3605 6.44939 17.3541 8.56981 17.013 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M19.8571 19C19.9074 15.3286 20.1843 11.949 22 8.5C15.6376 10.9805 14.5 13.75 14.5 19\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
11976
+ "iconName": "grass, logout, signout",
11977
+ "variant": {
11978
+ "join": "square",
11979
+ "filled": "off",
11980
+ "radius": "0",
11981
+ "stroke": "1.5"
11982
+ },
11983
+ "createdAt": "2026-01-30T09:00:32.202564+00:00",
11984
+ "packageName": "square-outlined-radius-0-stroke-1.5",
11985
+ "componentName": "IconGrass"
11986
+ },
11959
11987
  {
11960
11988
  "category": "Nature & Energy",
11961
11989
  "svg": "<path d=\"M13.5 7L9 12.5H11.5V16L16 10.5H13.5V7Z\" fill=\"currentColor\"/><path d=\"M3.74869 20.2422L6.16294 17.828M6.16294 17.828C-0.372693 9.93872 6.83979 0.665628 19.7191 4.27183C23.3252 17.1512 14.0521 24.3636 6.16294 17.828Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>",
@@ -20653,7 +20681,7 @@
20653
20681
  {
20654
20682
  "category": "Interface General",
20655
20683
  "svg": "<path d=\"M3.75 3.75V3H3V3.75H3.75ZM10.25 3.75H11V3H10.25V3.75ZM10.25 10.25V11H11V10.25H10.25ZM3.75 10.25H3V11H3.75V10.25ZM13.75 3.75V3H13V3.75H13.75ZM20.25 3.75H21V3H20.25V3.75ZM20.25 10.25V11H21V10.25H20.25ZM13.75 10.25H13V11H13.75V10.25ZM3.75 13.75V13H3V13.75H3.75ZM10.25 13.75H11V13H10.25V13.75ZM10.25 20.25V21H11V20.25H10.25ZM3.75 20.25H3V21H3.75V20.25ZM20.5983 21.659L21.1287 22.1893L22.1893 21.1287L21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM3.75 4.5H10.25V3H3.75V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V3.75H3V10.25H4.5ZM13.75 4.5H20.25V3H13.75V4.5ZM19.5 3.75V10.25H21V3.75H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H3.75V21H10.25V19.5ZM4.5 20.25V13.75H3V20.25H4.5ZM17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078H13C13 19.217 14.7909 21.0078 17 21.0078V19.5078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078V13.0078C14.7909 13.0078 13 14.7987 13 17.0078H14.5ZM17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078H21C21 14.7987 19.2091 13.0078 17 13.0078V14.5078ZM18.7717 19.8323L20.5983 21.659L21.659 20.5984L19.8323 18.7717L18.7717 19.8323ZM19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726L19.8332 19.8314C20.5534 19.1088 21 18.1097 21 17.0078H19.5ZM18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078V21.0078C18.1068 21.0078 19.1098 20.5573 19.8332 19.8314L18.7708 18.7726Z\" fill=\"currentColor\"/>",
20656
- "iconName": "square-grid-maginfying-glass, layout, grid, list, search, find, magifier",
20684
+ "iconName": "square-grid-magnifying-glass, layout, grid, list, search, find, magifier",
20657
20685
  "variant": {
20658
20686
  "join": "square",
20659
20687
  "filled": "off",
@@ -20662,7 +20690,7 @@
20662
20690
  },
20663
20691
  "createdAt": "2025-02-15T21:11:34.177092+00:00",
20664
20692
  "packageName": "square-outlined-radius-0-stroke-1.5",
20665
- "componentName": "IconSquareGridMaginfyingGlass"
20693
+ "componentName": "IconSquareGridMagnifyingGlass"
20666
20694
  },
20667
20695
  {
20668
20696
  "category": "Interface General",
@@ -22078,6 +22106,20 @@
22078
22106
  "packageName": "square-outlined-radius-0-stroke-1.5",
22079
22107
  "componentName": "IconThermostat"
22080
22108
  },
22109
+ {
22110
+ "category": "Social Media & Brands",
22111
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8607 2.25047C16.8771 2.25045 19.0796 2.12893 20.1576 4.16844C20.5557 4.92183 20.5765 5.91099 20.6186 7.88817L20.6908 11.2466C20.7128 12.2783 20.7235 12.7947 20.7123 13.31C20.7024 13.7683 20.6791 14.2272 20.643 14.6841C20.6023 15.198 20.539 15.7106 20.4135 16.7348L20.4018 16.8315C20.1884 18.5725 20.0815 19.4439 19.6732 20.1001C19.3135 20.678 18.7926 21.1386 18.1752 21.4253C17.4743 21.7505 16.5969 21.7505 14.8432 21.7505H9.15469C7.40089 21.7505 6.52358 21.7506 5.82266 21.4253C5.20526 21.1386 4.6843 20.678 4.32461 20.1001C3.91641 19.4439 3.8095 18.5724 3.5961 16.8315L3.58438 16.7348C3.45882 15.7106 3.39558 15.198 3.35489 14.6841C3.31872 14.2272 3.2955 13.7683 3.28555 13.31C3.27438 12.7947 3.28606 12.2783 3.30801 11.2466L3.3793 7.88817C3.42137 5.91099 3.44213 4.92183 3.84024 4.16844C4.91832 2.12866 7.12153 2.25047 9.13809 2.25047H14.8607ZM8.392 5.75047C7.29023 5.75047 6.73869 5.75033 6.31485 5.96336C5.9421 6.1508 5.63694 6.45052 5.44278 6.81981C5.22221 7.23965 5.21182 7.79083 5.1918 8.89207L5.09903 14.0005C5.09902 14.2324 5.09978 14.3491 5.10977 14.4487C5.1992 15.3376 5.86711 16.0596 6.74649 16.2173C6.84511 16.2349 6.96133 16.2443 7.19278 16.2622L7.83243 16.311C8.24856 16.3431 8.45708 16.3595 8.62149 16.436C8.85868 16.5465 9.04308 16.7458 9.13516 16.9907C9.19886 17.1605 9.19961 17.3703 9.19961 17.7876V17.8999C9.19961 18.4597 9.19913 18.7407 9.30801 18.9546C9.40387 19.1426 9.55751 19.2953 9.74551 19.3911C9.95939 19.5 10.2394 19.5005 10.7992 19.5005H13.1996C13.7594 19.5005 14.0395 19.5001 14.2533 19.3911C14.4412 19.2953 14.594 19.1425 14.6898 18.9546C14.7988 18.7407 14.7992 18.4598 14.7992 17.8999V17.8452C14.7992 17.3404 14.799 17.0874 14.893 16.8862C14.9759 16.7089 15.1099 16.5598 15.2768 16.4575C15.4662 16.3414 15.7172 16.3122 16.2191 16.2554L16.9496 16.1733C16.9726 16.1725 16.9847 16.1718 16.9945 16.1714C18.0531 16.121 18.8881 15.2536 18.8988 14.1938C18.8989 14.184 18.8998 14.1718 18.8998 14.1489V14.0005L18.809 8.89305C18.7894 7.79131 18.7796 7.23984 18.559 6.81981C18.3649 6.45043 18.0597 6.15087 17.6869 5.96336C17.263 5.75026 16.7109 5.75047 15.6088 5.75047H8.392ZM14.8725 8.05516C15.0628 8.04081 15.3006 8.04244 15.5092 8.2241C15.6488 8.34599 15.7538 8.5331 15.7641 8.73289V8.80907C15.7593 8.88457 15.7407 8.95944 15.7094 9.02879C15.6779 9.0984 15.6208 9.18216 15.5629 9.26121C15.5022 9.344 15.4293 9.43593 15.3559 9.52586C15.1992 9.7177 15.0616 9.87649 14.976 9.98289H14.975C14.2733 10.8482 13.6082 11.743 12.9809 12.6636L12.9799 12.6645C12.7877 12.9447 12.6025 13.2359 12.4145 13.5268L12.4135 13.5259C12.3112 13.6909 12.1685 13.9608 11.9867 14.1538C11.8917 14.2546 11.7755 14.3479 11.6332 14.4018C11.4871 14.4572 11.3244 14.4665 11.1498 14.4175C10.951 14.3614 10.7616 14.2158 10.6088 14.0786L10.1967 13.6743L9.25235 12.7651V12.7641C9.04276 12.5656 8.74103 12.3131 8.55899 12.0259C8.47803 11.898 8.45102 11.7313 8.46133 11.5854C8.47161 11.4413 8.52246 11.27 8.64883 11.1548C8.81744 11.0012 8.99752 10.9207 9.18496 10.9106C9.36866 10.9009 9.53648 10.9602 9.68106 11.0415C9.82488 11.1225 9.95774 11.2321 10.0746 11.3384C10.1333 11.3917 10.1904 11.4463 10.2436 11.4975C10.2976 11.5495 10.3481 11.5981 10.3959 11.6421L11.1957 12.3764C11.398 12.0717 11.6405 11.7436 11.8471 11.4595C12.4493 10.6295 13.0843 9.823 13.7494 9.04246L14.1098 8.62157C14.2381 8.47662 14.3731 8.33288 14.5092 8.21141C14.6186 8.11382 14.7508 8.07802 14.8471 8.05809L14.8588 8.05614L14.8725 8.05516ZM10.3354 13.5307C10.4506 13.6426 10.5923 13.7943 10.7426 13.9292C10.5922 13.7942 10.4506 13.6416 10.3354 13.5298L9.39102 12.6206L10.3354 13.5307ZM12.2455 13.4175C12.2232 13.4534 12.2005 13.4915 12.1772 13.5307C12.2004 13.4917 12.2233 13.4541 12.2455 13.4184L12.8148 12.5513V12.5503C12.6205 12.8336 12.4328 13.1276 12.2455 13.4175ZM8.70059 11.4223C8.69991 11.424 8.69929 11.4256 8.69864 11.4272C8.70831 11.4034 8.72047 11.3813 8.73379 11.3608L8.70059 11.4223Z\" fill=\"currentColor\"/><path opacity=\"0.4\" d=\"M14.8555 17C14.8033 17.1858 14.8027 17.4306 14.8027 17.8457V17.9004C14.8027 18.4598 14.8021 18.7403 14.6934 18.9541C14.5976 19.1419 14.4446 19.2948 14.2568 19.3906C14.043 19.4995 13.7626 19.5 13.2031 19.5H10.8027C10.243 19.5 9.96288 19.4995 9.74902 19.3906C9.56103 19.2947 9.40734 19.1421 9.31152 18.9541C9.20277 18.7403 9.20312 18.4598 9.20312 17.9004V17.7871C9.20312 17.3766 9.20133 17.1683 9.14062 17H14.8555Z\" fill=\"currentColor\"/>",
22112
+ "iconName": "things",
22113
+ "variant": {
22114
+ "join": "square",
22115
+ "filled": "off",
22116
+ "radius": "0",
22117
+ "stroke": "1.5"
22118
+ },
22119
+ "createdAt": "2026-01-30T16:01:00.89056+00:00",
22120
+ "packageName": "square-outlined-radius-0-stroke-1.5",
22121
+ "componentName": "IconThings"
22122
+ },
22081
22123
  {
22082
22124
  "category": "Things",
22083
22125
  "svg": "<path d=\"M7.25 19C7.25 20.2426 6.24264 21.25 5 21.25C3.75736 21.25 2.75 20.2426 2.75 19C2.75 17.7574 3.75736 16.75 5 16.75C6.24264 16.75 7.25 17.7574 7.25 19Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/><path d=\"M15.9705 4.99182C16.3368 4.88447 16.7242 4.82692 17.125 4.82692C19.4032 4.82692 21.25 6.68666 21.25 8.98077C21.25 10.6654 20.2542 12.1157 18.8229 12.7675C18.1757 14.2087 16.7354 15.2115 15.0625 15.2115C14.1855 15.2115 13.3724 14.9359 12.704 14.4661C12.2083 15.5206 11.1418 16.25 9.90625 16.25C8.19762 16.25 6.8125 14.8552 6.8125 13.1346C6.8125 12.9539 6.82778 12.7768 6.85711 12.6045C5.59958 11.8929 4.75 10.5367 4.75 8.98077C4.75 6.68666 6.59683 4.82692 8.875 4.82692C9.27576 4.82692 9.66317 4.88447 10.0295 4.99181C10.4046 3.69645 11.5925 2.75 13 2.75C14.4075 2.75 15.5954 3.69645 15.9705 4.99182Z\" stroke=\"currentColor\" stroke-width=\"1.5\"/>",
@@ -24080,6 +24122,20 @@
24080
24122
  "packageName": "square-outlined-radius-0-stroke-1.5",
24081
24123
  "componentName": "IconWreath"
24082
24124
  },
24125
+ {
24126
+ "category": "Things",
24127
+ "svg": "<path d=\"M6.55211 3.25C5.65611 5.69807 6.48402 7.13205 9.05211 7.58013C9.94812 5.13205 9.12021 3.69807 6.55211 3.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M3.05998 8.17912C2.82812 10.7757 3.99896 11.9465 6.59552 11.7147C6.82738 9.1181 5.65654 7.94726 3.05998 8.17912Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M2.67188 14.2992C3.11995 16.8673 4.55393 17.6952 7.002 16.7992C6.55393 14.2311 5.11995 13.4032 2.67188 14.2992Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M17.4506 3.25C18.3466 5.69807 17.5186 7.13205 14.9506 7.58013C14.0545 5.13205 14.8825 3.69807 17.4506 3.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M20.9315 8.17912C21.1633 10.7757 19.9925 11.9465 17.3959 11.7147C17.1641 9.1181 18.3349 7.94726 20.9315 8.17912Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M21.3301 14.2982C20.8821 16.8663 19.4481 17.6942 17 16.7982C17.4481 14.2301 18.8821 13.4022 21.3301 14.2982Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>",
24128
+ "iconName": "wreath-simple, laurel-leafs, winner",
24129
+ "variant": {
24130
+ "join": "square",
24131
+ "filled": "off",
24132
+ "radius": "0",
24133
+ "stroke": "1.5"
24134
+ },
24135
+ "createdAt": "2026-01-30T16:01:00.89056+00:00",
24136
+ "packageName": "square-outlined-radius-0-stroke-1.5",
24137
+ "componentName": "IconWreathSimple"
24138
+ },
24083
24139
  {
24084
24140
  "category": "Typography",
24085
24141
  "svg": "<path d=\"M21.25 11.7635L17.2365 7.75L7.75 17.2365V21.25H11.7635L21.25 11.7635Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M3.75 3.75H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M3.75 7.75H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/><path d=\"M3.75 11.75H7.2522\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\"/>",
package/icons/index.d.ts CHANGED
@@ -704,6 +704,7 @@ export type CentralIconName =
704
704
  | "IconFastForward5s"
705
705
  | "IconFastShipping"
706
706
  | "IconFeather"
707
+ | "IconFeather2"
707
708
  | "IconFeature"
708
709
  | "IconFigma"
709
710
  | "IconFigmaSimple"
@@ -853,6 +854,7 @@ export type CentralIconName =
853
854
  | "IconGoose"
854
855
  | "IconGovernment"
855
856
  | "IconGraduateCap"
857
+ | "IconGrass"
856
858
  | "IconGreenPower"
857
859
  | "IconGrok"
858
860
  | "IconGroup1"
@@ -1474,7 +1476,7 @@ export type CentralIconName =
1474
1476
  | "IconSquareCursor"
1475
1477
  | "IconSquareDotedBehindSquare"
1476
1478
  | "IconSquareGridCircle"
1477
- | "IconSquareGridMaginfyingGlass"
1479
+ | "IconSquareGridMagnifyingGlass"
1478
1480
  | "IconSquareInfo"
1479
1481
  | "IconSquareLines"
1480
1482
  | "IconSquareLinesBottom"
@@ -1576,6 +1578,7 @@ export type CentralIconName =
1576
1578
  | "IconTextToImage"
1577
1579
  | "IconTextToSpeach"
1578
1580
  | "IconThermostat"
1581
+ | "IconThings"
1579
1582
  | "IconThinkingBubble"
1580
1583
  | "IconThinkingBubble1"
1581
1584
  | "IconThread"
@@ -1719,6 +1722,7 @@ export type CentralIconName =
1719
1722
  | "IconWizardHat"
1720
1723
  | "IconWorld"
1721
1724
  | "IconWreath"
1725
+ | "IconWreathSimple"
1722
1726
  | "IconWrite"
1723
1727
  | "IconWrite1"
1724
1728
  | "IconWrite2"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-outlined-radius-0-stroke-1.5",
3
- "version": "1.1.109",
3
+ "version": "1.1.111",
4
4
  "style": "square-outlined-radius-0-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1.5/IconHome';",
@@ -11,7 +11,7 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1732,
14
+ "totalIcons": 1736,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 66,
@@ -508,7 +508,7 @@
508
508
  ]
509
509
  },
510
510
  "Edit": {
511
- "count": 80,
511
+ "count": 81,
512
512
  "icons": [
513
513
  "Icon3d",
514
514
  "IconAddKeyframe",
@@ -545,6 +545,7 @@
545
545
  "IconEraser",
546
546
  "IconEraserSimple",
547
547
  "IconFeather",
548
+ "IconFeather2",
548
549
  "IconGlass",
549
550
  "IconGooey",
550
551
  "IconHdr",
@@ -1024,7 +1025,7 @@
1024
1025
  "IconSquareCircleTopRight",
1025
1026
  "IconSquareDotedBehindSquare",
1026
1027
  "IconSquareGridCircle",
1027
- "IconSquareGridMaginfyingGlass",
1028
+ "IconSquareGridMagnifyingGlass",
1028
1029
  "IconSquareInfo",
1029
1030
  "IconSquareLines",
1030
1031
  "IconSquareMinus",
@@ -1152,13 +1153,14 @@
1152
1153
  ]
1153
1154
  },
1154
1155
  "Nature & Energy": {
1155
- "count": 18,
1156
+ "count": 19,
1156
1157
  "icons": [
1157
1158
  "IconAtom",
1158
1159
  "IconBlossom",
1159
1160
  "IconChargingStation",
1160
1161
  "IconDrillingRig",
1161
1162
  "IconExposure2",
1163
+ "IconGrass",
1162
1164
  "IconGreenPower",
1163
1165
  "IconGrowth",
1164
1166
  "IconHomeEnergy",
@@ -1412,7 +1414,7 @@
1412
1414
  ]
1413
1415
  },
1414
1416
  "Social Media & Brands": {
1415
- "count": 121,
1417
+ "count": 122,
1416
1418
  "icons": [
1417
1419
  "IconAdobeAcrobat",
1418
1420
  "IconAffinity",
@@ -1518,6 +1520,7 @@
1518
1520
  "IconSubstack",
1519
1521
  "IconSupabase",
1520
1522
  "IconTelegram",
1523
+ "IconThings",
1521
1524
  "IconThreads",
1522
1525
  "IconTiktok",
1523
1526
  "IconTumblr",
@@ -1644,7 +1647,7 @@
1644
1647
  ]
1645
1648
  },
1646
1649
  "Things": {
1647
- "count": 117,
1650
+ "count": 118,
1648
1651
  "icons": [
1649
1652
  "IconAnvil",
1650
1653
  "IconBackpack",
@@ -1762,7 +1765,8 @@
1762
1765
  "IconWaste",
1763
1766
  "IconWeight",
1764
1767
  "IconWip",
1765
- "IconWreath"
1768
+ "IconWreath",
1769
+ "IconWreathSimple"
1766
1770
  ]
1767
1771
  },
1768
1772
  "Time & Date": {
@@ -2637,6 +2641,7 @@
2637
2641
  "IconFastForward5s": "fast-forward-5s",
2638
2642
  "IconFastShipping": "fast-shipping, truck, delivery",
2639
2643
  "IconFeather": "feather, writing",
2644
+ "IconFeather2": "feather-2, writing",
2640
2645
  "IconFeature": "feature, shine",
2641
2646
  "IconFigma": "figma",
2642
2647
  "IconFigmaSimple": "figma-simple",
@@ -2786,6 +2791,7 @@
2786
2791
  "IconGoose": "goose",
2787
2792
  "IconGovernment": "government, bank, building",
2788
2793
  "IconGraduateCap": "graduate-cap, study, education, academic, student",
2794
+ "IconGrass": "grass, logout, signout",
2789
2795
  "IconGreenPower": "green-power, green-energy",
2790
2796
  "IconGrok": "grok",
2791
2797
  "IconGroup1": "group-1, users",
@@ -3407,7 +3413,7 @@
3407
3413
  "IconSquareCursor": "square-cursor, cursor box, arrow",
3408
3414
  "IconSquareDotedBehindSquare": "square-doted-behind-square, copy, layers, pages",
3409
3415
  "IconSquareGridCircle": "square-grid-circle, layout, grid, list, category, categories",
3410
- "IconSquareGridMaginfyingGlass": "square-grid-maginfying-glass, layout, grid, list, search, find, magifier",
3416
+ "IconSquareGridMagnifyingGlass": "square-grid-magnifying-glass, layout, grid, list, search, find, magifier",
3411
3417
  "IconSquareInfo": "square-info, information, tooltip",
3412
3418
  "IconSquareLines": "square-lines, note, card, text",
3413
3419
  "IconSquareLinesBottom": "square-lines-bottom, transcription",
@@ -3509,6 +3515,7 @@
3509
3515
  "IconTextToImage": "text-to-image",
3510
3516
  "IconTextToSpeach": "text-to-speach",
3511
3517
  "IconThermostat": "thermostat, temprature",
3518
+ "IconThings": "things",
3512
3519
  "IconThinkingBubble": "thinking-bubble",
3513
3520
  "IconThinkingBubble1": "thinking-bubble-1, thoughts",
3514
3521
  "IconThread": "thread",
@@ -3652,6 +3659,7 @@
3652
3659
  "IconWizardHat": "wizard-hat, magician, fantasy",
3653
3660
  "IconWorld": "world, globus, internet, web, globe",
3654
3661
  "IconWreath": "wreath, crown, laurel-leafs",
3662
+ "IconWreathSimple": "wreath-simple, laurel-leafs, winner",
3655
3663
  "IconWrite": "write, edit-list, list",
3656
3664
  "IconWrite1": "write-1, fountain-pen",
3657
3665
  "IconWrite2": "write-2, fountain-pen",