@central-icons-react-native/round-outlined-radius-3-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 u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=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 I(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=B(o,e))||a.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(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 v={};g(v,{IconFeather2:()=>i,default:()=>d});module.exports=h(v);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"),i=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M3.75 16.1029V20.25C3.75 16.9746 6.5 16.1029 9 16.1029C13.1643 16.1029 16.6578 12.1147 14.0757 8.89706C17.4661 8.89706 18.856 6.41115 20.25 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),d=i;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.1029V20.25C3.75 16.9746 6.5 16.1029 9 16.1029C13.1643 16.1029 16.6578 12.1147 14.0757 8.89706C17.4661 8.89706 18.856 6.41115 20.25 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\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,kMACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,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.1029V20.25C3.75 16.9746 6.5 16.1029 9 16.1029C13.1643 16.1029 16.6578 12.1147 14.0757 8.89706C17.4661 8.89706 18.856 6.41115 20.25 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinejoin:"round"})),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.1029V20.25C3.75 16.9746 6.5 16.1029 9 16.1029C13.1643 16.1029 16.6578 12.1147 14.0757 8.89706C17.4661 8.89706 18.856 6.41115 20.25 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinejoin=\"round\"\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,kMACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,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 l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!h.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(f(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>C(i({},"__esModule",{value:!0}),r);var P={};B(P,{IconGrass:()=>c,default:()=>x});module.exports=I(P);var n=d(require("react"));var u=d(require("react")),k=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.default.createElement(k.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 t=require("react-native-svg"),c=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M1.75 19.25L22.25 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.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",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8.85294 19.25C8.80246 15.6899 8.32281 7.59449 6.5 4.25C14.0294 6.79545 14.5 14.1591 14.5 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M13 9C14.0842 6.7192 14.9314 4.91821 18.25 3.75C17.013 6 17.013 8.5 17.013 11.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.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",strokeLinecap:"round",strokeLinejoin:"round"})),x=c;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\n d=\"M1.75 19.25L22.25 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.85294 19.25C8.80246 15.6899 8.32281 7.59449 6.5 4.25C14.0294 6.79545 14.5 14.1591 14.5 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 9C14.0842 6.7192 14.9314 4.91821 18.25 3.75C17.013 6 17.013 8.5 17.013 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,QACC,EAAE,0BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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 i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var C=n=>o.createElement(t,{...n},o.createElement(e,{d:"M1.75 19.25L22.25 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{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",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8.85294 19.25C8.80246 15.6899 8.32281 7.59449 6.5 4.25C14.0294 6.79545 14.5 14.1591 14.5 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M13 9C14.0842 6.7192 14.9314 4.91821 18.25 3.75C17.013 6 17.013 8.5 17.013 11.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{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",strokeLinecap:"round",strokeLinejoin:"round"})),h=C;export{C as IconGrass,h 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\n d=\"M1.75 19.25L22.25 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8.85294 19.25C8.80246 15.6899 8.32281 7.59449 6.5 4.25C14.0294 6.79545 14.5 14.1591 14.5 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M13 9C14.0842 6.7192 14.9314 4.91821 18.25 3.75C17.013 6 17.013 8.5 17.013 11.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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 strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,CACC,EAAE,0BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6FACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kGACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uFACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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 s=Object.create;var H=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var g=(C,M)=>{for(var Z in M)H(C,Z,{get:M[Z],enumerable:!0})},L=(C,M,Z,o)=>{if(M&&typeof M=="object"||typeof M=="function")for(let r of f(M))!i.call(C,r)&&r!==Z&&H(C,r,{get:()=>M[r],enumerable:!(o=m(M,r))||o.enumerable});return C};var t=(C,M,Z)=>(Z=C!=null?s(c(C)):{},L(M||!C||!C.__esModule?H(Z,"default",{value:C,enumerable:!0}):Z,C)),u=C=>L(H({},"__esModule",{value:!0}),C);var I={};g(I,{IconSquareGridMaginfyingGlass:()=>l,default:()=>B});module.exports=u(I);var V=t(require("react"));var e=t(require("react")),n=require("react-native-svg"),p=({children:C,size:M=24,...Z})=>e.default.createElement(n.Svg,{...Z,width:typeof M=="number"?`${M}px`:M,height:typeof M=="number"?`${M}px`:M,viewBox:"0 0 24 24",fill:"none"},C);var a=require("react-native-svg"),l=C=>V.default.createElement(p,{...C},V.default.createElement(a.Path,{d:"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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=l;0&&(module.exports={IconSquareGridMaginfyingGlass});
1
+ "use strict";var s=Object.create;var H=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var c=Object.getPrototypeOf,i=Object.prototype.hasOwnProperty;var g=(C,M)=>{for(var Z in M)H(C,Z,{get:M[Z],enumerable:!0})},L=(C,M,Z,o)=>{if(M&&typeof M=="object"||typeof M=="function")for(let r of f(M))!i.call(C,r)&&r!==Z&&H(C,r,{get:()=>M[r],enumerable:!(o=m(M,r))||o.enumerable});return C};var t=(C,M,Z)=>(Z=C!=null?s(c(C)):{},L(M||!C||!C.__esModule?H(Z,"default",{value:C,enumerable:!0}):Z,C)),u=C=>L(H({},"__esModule",{value:!0}),C);var I={};g(I,{IconSquareGridMagnifyingGlass:()=>l,default:()=>B});module.exports=u(I);var V=t(require("react"));var e=t(require("react")),n=require("react-native-svg"),p=({children:C,size:M=24,...Z})=>e.default.createElement(n.Svg,{...Z,width:typeof M=="number"?`${M}px`:M,height:typeof M=="number"?`${M}px`:M,viewBox:"0 0 24 24",fill:"none"},C);var a=require("react-native-svg"),l=C=>V.default.createElement(p,{...C},V.default.createElement(a.Path,{d:"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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=l;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=\"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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,i+GACF,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=\"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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,i+GACF,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 r from"react";import V from"react";import{Svg as o}from"react-native-svg";var Z=({children:M,size:C=24,...H})=>V.createElement(o,{...H,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},M);import{Path as L}from"react-native-svg";var t=M=>r.createElement(Z,{...M},r.createElement(L,{d:"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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=t;export{t as IconSquareGridMaginfyingGlass,i as default};
1
+ import r from"react";import V from"react";import{Svg as o}from"react-native-svg";var Z=({children:M,size:C=24,...H})=>V.createElement(o,{...H,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},M);import{Path as L}from"react-native-svg";var t=M=>r.createElement(Z,{...M},r.createElement(L,{d:"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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=t;export{t 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=\"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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,i+GACF,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=\"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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,i+GACF,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 a=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var W=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,d)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(d=L(o,s))||d.enumerable});return r};var k=(r,o,e)=>(e=r!=null?a(h(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),j=r=>C(i({},"__esModule",{value:!0}),r);var I={};W(I,{IconWreathSimple:()=>c,default:()=>B});module.exports=j(I);var n=k(require("react"));var p=k(require("react")),u=require("react-native-svg"),l=({children:r,size:o=24,...e})=>p.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 t=require("react-native-svg"),c=r=>n.default.createElement(l,{...r},n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.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:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+GACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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 i from"react";import{Svg as d}from"react-native-svg";var t=({children:n,size:e=24,...s})=>i.createElement(d,{...s,width:typeof e=="number"?`${e}px`:e,height:typeof e=="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},n);import{Path as o}from"react-native-svg";var C=n=>r.createElement(t,{...n},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:"round",strokeLinejoin:"round"}),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:"round",strokeLinejoin:"round"}),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:"round",strokeLinejoin:"round"}),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:"round",strokeLinejoin:"round"}),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:"round",strokeLinejoin:"round"}),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:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(o,{d:"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),f=C;export{C as IconWreathSimple,f 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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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=\"round\"\n strokeLinejoin=\"round\"\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,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8GACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,mHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+GACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yDACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0DACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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": "round-outlined-radius-3-stroke-1.5",
9871
9871
  "componentName": "IconFeather"
9872
9872
  },
9873
+ {
9874
+ "category": "Edit",
9875
+ "svg": "<path d=\"M3.75 16.1029V20.25C3.75 16.9746 6.5 16.1029 9 16.1029C13.1643 16.1029 16.6578 12.1147 14.0757 8.89706C17.4661 8.89706 18.856 6.41115 20.25 3.75H16.1409C9.29758 3.75 3.75 9.2806 3.75 16.1029Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>",
9876
+ "iconName": "feather-2, writing",
9877
+ "variant": {
9878
+ "join": "round",
9879
+ "filled": "off",
9880
+ "radius": "3",
9881
+ "stroke": "1.5"
9882
+ },
9883
+ "createdAt": "2026-01-30T09:00:32.202564+00:00",
9884
+ "packageName": "round-outlined-radius-3-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=\"round\" stroke-linejoin=\"round\"/>",
@@ -11956,6 +11970,20 @@
11956
11970
  "packageName": "round-outlined-radius-3-stroke-1.5",
11957
11971
  "componentName": "IconGraduateCap"
11958
11972
  },
11973
+ {
11974
+ "category": "Nature & Energy",
11975
+ "svg": "<path d=\"M1.75 19.25L22.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><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\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8.85294 19.25C8.80246 15.6899 8.32281 7.59449 6.5 4.25C14.0294 6.79545 14.5 14.1591 14.5 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M13 9C14.0842 6.7192 14.9314 4.91821 18.25 3.75C17.013 6 17.013 8.5 17.013 11.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><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\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
11976
+ "iconName": "grass, logout, signout",
11977
+ "variant": {
11978
+ "join": "round",
11979
+ "filled": "off",
11980
+ "radius": "3",
11981
+ "stroke": "1.5"
11982
+ },
11983
+ "createdAt": "2026-01-30T09:00:32.202564+00:00",
11984
+ "packageName": "round-outlined-radius-3-stroke-1.5",
11985
+ "componentName": "IconGrass"
11986
+ },
11959
11987
  {
11960
11988
  "category": "Nature & Energy",
11961
11989
  "svg": "<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=\"round\" stroke-linejoin=\"round\"/><path d=\"M13.5184 8.27183C13.5184 7.78239 12.9181 7.56324 12.6151 7.94204L9.61607 11.691C9.34405 12.031 9.58059 12.5416 10.0102 12.5416H11.4816V14.7282C11.4816 15.2176 12.0819 15.4368 12.3849 15.058L15.3839 11.309C15.656 10.969 15.4194 10.4584 14.9898 10.4584H13.5184V8.27183Z\" fill=\"currentColor\"/>",
@@ -20653,7 +20681,7 @@
20653
20681
  {
20654
20682
  "category": "Interface General",
20655
20683
  "svg": "<path d=\"M10.25 3.75H11C11 3.33579 10.6642 3 10.25 3V3.75ZM10.25 10.25V11C10.6642 11 11 10.6642 11 10.25H10.25ZM3.75 10.25H3C3 10.6642 3.33579 11 3.75 11V10.25ZM5.38803 4.07698L5.04754 3.40873L5.38803 4.07698ZM4.07698 5.38803L3.40873 5.04754L4.07698 5.38803ZM13.75 3.75V3C13.3358 3 13 3.33579 13 3.75H13.75ZM20.25 10.25V11C20.6642 11 21 10.6642 21 10.25H20.25ZM13.75 10.25H13C13 10.6642 13.3358 11 13.75 11V10.25ZM18.612 4.07698L18.9525 3.40873L18.612 4.07698ZM19.923 5.38803L20.5913 5.04754L19.923 5.38803ZM3.75 13.75V13C3.33579 13 3 13.3358 3 13.75H3.75ZM10.25 13.75H11C11 13.3358 10.6642 13 10.25 13V13.75ZM10.25 20.25V21C10.6642 21 11 20.6642 11 20.25H10.25ZM5.38803 19.923L5.04754 20.5913L5.38803 19.923ZM4.07698 18.612L3.40873 18.9525L4.07698 18.612ZM20.5983 21.659C20.8912 21.9519 21.3661 21.9519 21.659 21.659C21.9519 21.3661 21.9519 20.8912 21.659 20.5984L20.5983 21.659ZM19.302 19.302L18.7708 18.7726L19.302 19.302ZM8.55 4.5H10.25V3H8.55V4.5ZM9.5 3.75V10.25H11V3.75H9.5ZM10.25 9.5H3.75V11H10.25V9.5ZM4.5 10.25V8.55H3V10.25H4.5ZM8.55 3C7.7223 3 7.05641 2.99942 6.51853 3.04336C5.97189 3.08803 5.49175 3.18238 5.04754 3.40873L5.72852 4.74524C5.92604 4.6446 6.1868 4.57546 6.64068 4.53838C7.10331 4.50058 7.69755 4.5 8.55 4.5V3ZM4.5 8.55C4.5 7.69755 4.50058 7.10331 4.53838 6.64068C4.57546 6.1868 4.6446 5.92604 4.74524 5.72852L3.40873 5.04754C3.18238 5.49175 3.08803 5.97189 3.04336 6.51853C2.99942 7.05641 3 7.7223 3 8.55H4.5ZM5.04754 3.40873C4.34193 3.76825 3.76825 4.34193 3.40873 5.04754L4.74524 5.72852C4.96095 5.30516 5.30516 4.96095 5.72852 4.74524L5.04754 3.40873ZM13.75 4.5H15.45V3H13.75V4.5ZM19.5 8.55V10.25H21V8.55H19.5ZM20.25 9.5H13.75V11H20.25V9.5ZM14.5 10.25V3.75H13V10.25H14.5ZM15.45 4.5C16.3025 4.5 16.8967 4.50058 17.3593 4.53838C17.8132 4.57546 18.074 4.6446 18.2715 4.74524L18.9525 3.40873C18.5082 3.18238 18.0281 3.08803 17.4815 3.04336C16.9436 2.99942 16.2777 3 15.45 3V4.5ZM21 8.55C21 7.7223 21.0006 7.05641 20.9566 6.51853C20.912 5.97189 20.8176 5.49175 20.5913 5.04754L19.2548 5.72852C19.3554 5.92604 19.4245 6.1868 19.4616 6.64068C19.4994 7.10331 19.5 7.69755 19.5 8.55H21ZM18.2715 4.74524C18.6948 4.96095 19.039 5.30516 19.2548 5.72852L20.5913 5.04754C20.2317 4.34193 19.6581 3.76825 18.9525 3.40873L18.2715 4.74524ZM3.75 14.5H10.25V13H3.75V14.5ZM9.5 13.75V20.25H11V13.75H9.5ZM10.25 19.5H8.55V21H10.25V19.5ZM4.5 15.45V13.75H3V15.45H4.5ZM8.55 19.5C7.69755 19.5 7.10331 19.4994 6.64068 19.4616C6.1868 19.4245 5.92604 19.3554 5.72852 19.2548L5.04754 20.5913C5.49175 20.8176 5.97189 20.912 6.51853 20.9566C7.05641 21.0006 7.7223 21 8.55 21V19.5ZM3 15.45C3 16.2777 2.99942 16.9436 3.04336 17.4815C3.08803 18.0281 3.18238 18.5082 3.40873 18.9525L4.74524 18.2715C4.6446 18.074 4.57546 17.8132 4.53838 17.3593C4.50058 16.8967 4.5 16.3025 4.5 15.45H3ZM5.72852 19.2548C5.30516 19.039 4.96095 18.6948 4.74524 18.2715L3.40873 18.9525C3.76825 19.6581 4.34193 20.2317 5.04754 20.5913L5.72852 19.2548ZM17 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": "round",
20659
20687
  "filled": "off",
@@ -20662,7 +20690,7 @@
20662
20690
  },
20663
20691
  "createdAt": "2025-02-15T21:11:34.177092+00:00",
20664
20692
  "packageName": "round-outlined-radius-3-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": "round-outlined-radius-3-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": "round",
22115
+ "filled": "off",
22116
+ "radius": "3",
22117
+ "stroke": "1.5"
22118
+ },
22119
+ "createdAt": "2026-01-30T16:01:00.89056+00:00",
22120
+ "packageName": "round-outlined-radius-3-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\" stroke-linejoin=\"round\"/><path d=\"M15.5421 4.08938C15.8566 4.54492 16.4049 4.85244 16.958 4.83026C17.0134 4.82804 17.0691 4.82692 17.125 4.82692C19.4032 4.82692 21.25 6.68666 21.25 8.98077C21.25 10.5303 20.4075 11.8816 19.1586 12.5956C18.9475 12.7162 18.7723 12.8923 18.653 13.1041C17.9442 14.3625 16.6018 15.2115 15.0625 15.2115C14.6083 15.2115 14.1712 15.1376 13.7625 15.0011C13.1733 14.8042 12.4613 14.9984 12.0068 15.4219C11.4551 15.9359 10.7171 16.25 9.90625 16.25C8.19762 16.25 6.8125 14.8552 6.8125 13.1346C6.8125 12.815 6.66735 12.5049 6.41177 12.313C5.40316 11.5558 4.75 10.3451 4.75 8.98077C4.75 6.68666 6.59683 4.82692 8.875 4.82692C8.93092 4.82692 8.98659 4.82804 9.04197 4.83026C9.59506 4.85244 10.1434 4.54492 10.4579 4.08938C11.0166 3.2799 11.9469 2.75 13 2.75C14.0531 2.75 14.9834 3.2799 15.5421 4.08938Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/>",
@@ -24080,6 +24122,20 @@
24080
24122
  "packageName": "round-outlined-radius-3-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=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/><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=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 16.7979C9.4429 19.4992 13.2165 18.7897 15.5 21.4992\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 16.7979C14.5571 19.4992 10.7835 18.7897 8.5 21.4992\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
24128
+ "iconName": "wreath-simple, laurel-leafs, winner",
24129
+ "variant": {
24130
+ "join": "round",
24131
+ "filled": "off",
24132
+ "radius": "3",
24133
+ "stroke": "1.5"
24134
+ },
24135
+ "createdAt": "2026-01-30T16:01:00.89056+00:00",
24136
+ "packageName": "round-outlined-radius-3-stroke-1.5",
24137
+ "componentName": "IconWreathSimple"
24138
+ },
24083
24139
  {
24084
24140
  "category": "Typography",
24085
24141
  "svg": "<path d=\"M7.75 21.25H11.7635L19.2432 13.7703C20.3515 12.662 20.3515 10.8651 19.2432 9.75676C18.1349 8.64846 16.338 8.64846 15.2297 9.75676L7.75 17.2365V21.25Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 3.75H20.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 7.75H10.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3.75 11.75H7.2522\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
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"