@central-icons-react-native/square-filled-radius-0-stroke-1.5 1.1.109 → 1.1.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconFeather2/index.d.ts +4 -0
- package/IconFeather2/index.js +2 -0
- package/IconFeather2/index.js.map +1 -0
- package/IconFeather2/index.mjs +2 -0
- package/IconFeather2/index.mjs.map +1 -0
- package/IconGrass/index.d.ts +4 -0
- package/IconGrass/index.js +2 -0
- package/IconGrass/index.js.map +1 -0
- package/IconGrass/index.mjs +2 -0
- package/IconGrass/index.mjs.map +1 -0
- package/IconSquareGridMagnifyingGlass/index.d.ts +4 -0
- package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.js +1 -1
- package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.js.map +1 -1
- package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.mjs +1 -1
- package/{IconSquareGridMaginfyingGlass → IconSquareGridMagnifyingGlass}/index.mjs.map +1 -1
- package/README.md +3 -1
- package/filtered-icons.json +30 -2
- package/icons/index.d.ts +3 -1
- package/icons-index.json +10 -6
- package/index.d.ts +3 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +17 -3
- package/IconSquareGridMaginfyingGlass/index.d.ts +0 -4
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=i(o,e))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>a(n({},"__esModule",{value:!0}),r);var F={};g(F,{IconFeather2:()=>B,default:()=>v});module.exports=h(F);var p=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M20.2646 4.09766C20.0948 4.42193 19.934 4.74507 19.7734 5.06836C19.614 5.38932 19.4537 5.71313 19.29 6.02539C18.9638 6.64766 18.6061 7.26062 18.166 7.79688C17.4671 8.64853 16.5817 9.27326 15.3496 9.52441C16.0937 11.1122 15.8532 12.7853 14.9551 14.124C13.8682 15.7439 11.8452 16.8525 9.5293 16.8525C6.78355 16.8525 4.5 18.52 4.5 21.25H3V16.1025C3.00022 8.86409 8.88554 3.00014 16.1406 3H20.8398L20.2646 4.09766Z",fill:"currentColor"})),v=B;0&&(module.exports={IconFeather2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFeather2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconFeather2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.2646 4.09766C20.0948 4.42193 19.934 4.74507 19.7734 5.06836C19.614 5.38932 19.4537 5.71313 19.29 6.02539C18.9638 6.64766 18.6061 7.26062 18.166 7.79688C17.4671 8.64853 16.5817 9.27326 15.3496 9.52441C16.0937 11.1122 15.8532 12.7853 14.9551 14.124C13.8682 15.7439 11.8452 16.8525 9.5293 16.8525C6.78355 16.8525 4.5 18.52 4.5 21.25H3V16.1025C3.00022 8.86409 8.88554 3.00014 16.1406 3H20.8398L20.2646 4.09766Z\"\n fill=\"currentColor\"\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,6ZACF,KAAK,eACP,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 C}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(C,{...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 a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M20.2646 4.09766C20.0948 4.42193 19.934 4.74507 19.7734 5.06836C19.614 5.38932 19.4537 5.71313 19.29 6.02539C18.9638 6.64766 18.6061 7.26062 18.166 7.79688C17.4671 8.64853 16.5817 9.27326 15.3496 9.52441C16.0937 11.1122 15.8532 12.7853 14.9551 14.124C13.8682 15.7439 11.8452 16.8525 9.5293 16.8525C6.78355 16.8525 4.5 18.52 4.5 21.25H3V16.1025C3.00022 8.86409 8.88554 3.00014 16.1406 3H20.8398L20.2646 4.09766Z",fill:"currentColor"})),P=l;export{l 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=\"M20.2646 4.09766C20.0948 4.42193 19.934 4.74507 19.7734 5.06836C19.614 5.38932 19.4537 5.71313 19.29 6.02539C18.9638 6.64766 18.6061 7.26062 18.166 7.79688C17.4671 8.64853 16.5817 9.27326 15.3496 9.52441C16.0937 11.1122 15.8532 12.7853 14.9551 14.124C13.8682 15.7439 11.8452 16.8525 9.5293 16.8525C6.78355 16.8525 4.5 18.52 4.5 21.25H3V16.1025C3.00022 8.86409 8.88554 3.00014 16.1406 3H20.8398L20.2646 4.09766Z\"\n fill=\"currentColor\"\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,6ZACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFeather2","props","React","CentralIconBase","IconFeather2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=i(o,e))||p.enumerable});return r};var s=(r,o,t)=>(t=r!=null?I(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconGrass:()=>B,default:()=>H});module.exports=v(h);var C=s(require("react"));var l=s(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...t})=>l.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),B=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M6 4C13 5.55357 14.5 11.6316 14.5 18.5H15.5C15.5 13.7632 16.8571 10.4737 22 8.5C20.5474 11.6119 20.0402 15.1875 20 18.5H23V20H1V18.5H4C3.95978 15.1875 3.45255 11.6119 2 8.5C7.14286 10.4737 8.5 13.7632 8.5 18.5H9.5C9.45978 13.6969 8.5 8.66071 6 4ZM19 3C17.3804 5.91529 16.4096 8.98314 15.9141 12.043C15.6164 12.5564 15.3747 13.0935 15.1816 13.6533C14.9232 11.9192 14.483 10.2764 13.7676 8.81152C13.4643 8.19065 13.1142 7.60488 12.7119 7.06055C14.0062 5.09278 15.9961 3.64373 19 3Z",fill:"currentColor"})),H=B;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=\"M6 4C13 5.55357 14.5 11.6316 14.5 18.5H15.5C15.5 13.7632 16.8571 10.4737 22 8.5C20.5474 11.6119 20.0402 15.1875 20 18.5H23V20H1V18.5H4C3.95978 15.1875 3.45255 11.6119 2 8.5C7.14286 10.4737 8.5 13.7632 8.5 18.5H9.5C9.45978 13.6969 8.5 8.66071 6 4ZM19 3C17.3804 5.91529 16.4096 8.98314 15.9141 12.043C15.6164 12.5564 15.3747 13.0935 15.1816 13.6533C14.9232 11.9192 14.483 10.2764 13.7676 8.81152C13.4643 8.19065 13.1142 7.60488 12.7119 7.06055C14.0062 5.09278 15.9961 3.64373 19 3Z\"\n fill=\"currentColor\"\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,keACF,KAAK,eACP,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 e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...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 a}from"react-native-svg";var s=o=>e.createElement(t,{...o},e.createElement(a,{d:"M6 4C13 5.55357 14.5 11.6316 14.5 18.5H15.5C15.5 13.7632 16.8571 10.4737 22 8.5C20.5474 11.6119 20.0402 15.1875 20 18.5H23V20H1V18.5H4C3.95978 15.1875 3.45255 11.6119 2 8.5C7.14286 10.4737 8.5 13.7632 8.5 18.5H9.5C9.45978 13.6969 8.5 8.66071 6 4ZM19 3C17.3804 5.91529 16.4096 8.98314 15.9141 12.043C15.6164 12.5564 15.3747 13.0935 15.1816 13.6533C14.9232 11.9192 14.483 10.2764 13.7676 8.81152C13.4643 8.19065 13.1142 7.60488 12.7119 7.06055C14.0062 5.09278 15.9961 3.64373 19 3Z",fill:"currentColor"})),P=s;export{s as IconGrass,P 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=\"M6 4C13 5.55357 14.5 11.6316 14.5 18.5H15.5C15.5 13.7632 16.8571 10.4737 22 8.5C20.5474 11.6119 20.0402 15.1875 20 18.5H23V20H1V18.5H4C3.95978 15.1875 3.45255 11.6119 2 8.5C7.14286 10.4737 8.5 13.7632 8.5 18.5H9.5C9.45978 13.6969 8.5 8.66071 6 4ZM19 3C17.3804 5.91529 16.4096 8.98314 15.9141 12.043C15.6164 12.5564 15.3747 13.0935 15.1816 13.6533C14.9232 11.9192 14.483 10.2764 13.7676 8.81152C13.4643 8.19065 13.1142 7.60488 12.7119 7.06055C14.0062 5.09278 15.9961 3.64373 19 3Z\"\n fill=\"currentColor\"\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,keACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGrass","props","React","CentralIconBase","IconGrass_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var c=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of g(o))!I.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?c(B(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(C({},"__esModule",{value:!0}),r);var H={};v(H,{
|
|
1
|
+
"use strict";var c=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of g(o))!I.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(p=d(o,t))||p.enumerable});return r};var f=(r,o,e)=>(e=r!=null?c(B(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>a(C({},"__esModule",{value:!0}),r);var H={};v(H,{IconSquareGridMagnifyingGlass:()=>u,default:()=>P});module.exports=x(H);var n=f(require("react"));var i=f(require("react")),s=require("react-native-svg"),m=({children:r,size:o=24,...e})=>i.default.createElement(s.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 l=require("react-native-svg"),u=r=>n.default.createElement(m,{...r},n.default.createElement(l.Path,{d:"M3 3H11V11H3V3Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M13 3H21V11H13V3Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M3 13H11V21H3V13Z",fill:"currentColor"}),n.default.createElement(l.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z",fill:"currentColor"})),P=u;0&&(module.exports={IconSquareGridMagnifyingGlass});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
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 d=\"M3 3H11V11H3V3Z\" fill=\"currentColor\" />\n <Path d=\"M13 3H21V11H13V3Z\" fill=\"currentColor\" />\n <Path d=\"M3 13H11V21H3V13Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z\"\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,QAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChD,EAAAA,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,seACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSquareGridMagnifyingGlass_exports","__export","IconSquareGridMagnifyingGlass","IconSquareGridMagnifyingGlass_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSquareGridMagnifyingGlass","props","React","CentralIconBase","IconSquareGridMagnifyingGlass_default"]}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...l})=>C.createElement(p,{...l,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 a=n=>o.createElement(t,{...n},o.createElement(e,{d:"M3 3H11V11H3V3Z",fill:"currentColor"}),o.createElement(e,{d:"M13 3H21V11H13V3Z",fill:"currentColor"}),o.createElement(e,{d:"M3 13H11V21H3V13Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z",fill:"currentColor"})),I=a;export{a as
|
|
1
|
+
import o from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...l})=>C.createElement(p,{...l,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 a=n=>o.createElement(t,{...n},o.createElement(e,{d:"M3 3H11V11H3V3Z",fill:"currentColor"}),o.createElement(e,{d:"M13 3H21V11H13V3Z",fill:"currentColor"}),o.createElement(e,{d:"M3 13H11V21H3V13Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z",fill:"currentColor"})),I=a;export{a as IconSquareGridMagnifyingGlass,I as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/
|
|
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 d=\"M3 3H11V11H3V3Z\" fill=\"currentColor\" />\n <Path d=\"M13 3H21V11H13V3Z\" fill=\"currentColor\" />\n <Path d=\"M3 13H11V21H3V13Z\" fill=\"currentColor\" />\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z\"\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,CAAK,EAAE,kBAAkB,KAAK,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDG,EAAA,cAACH,EAAA,CAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDG,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,seACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSquareGridMagnifyingGlass","props","React","CentralIconBase","IconSquareGridMagnifyingGlass_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
|
-
-
|
|
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
|
package/filtered-icons.json
CHANGED
|
@@ -9870,6 +9870,20 @@
|
|
|
9870
9870
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
9871
9871
|
"componentName": "IconFeather"
|
|
9872
9872
|
},
|
|
9873
|
+
{
|
|
9874
|
+
"category": "Edit",
|
|
9875
|
+
"svg": "<path d=\"M20.2646 4.09766C20.0948 4.42193 19.934 4.74507 19.7734 5.06836C19.614 5.38932 19.4537 5.71313 19.29 6.02539C18.9638 6.64766 18.6061 7.26062 18.166 7.79688C17.4671 8.64853 16.5817 9.27326 15.3496 9.52441C16.0937 11.1122 15.8532 12.7853 14.9551 14.124C13.8682 15.7439 11.8452 16.8525 9.5293 16.8525C6.78355 16.8525 4.5 18.52 4.5 21.25H3V16.1025C3.00022 8.86409 8.88554 3.00014 16.1406 3H20.8398L20.2646 4.09766Z\" fill=\"currentColor\"/>",
|
|
9876
|
+
"iconName": "feather-2, writing",
|
|
9877
|
+
"variant": {
|
|
9878
|
+
"join": "square",
|
|
9879
|
+
"filled": "on",
|
|
9880
|
+
"radius": "0",
|
|
9881
|
+
"stroke": "1.5"
|
|
9882
|
+
},
|
|
9883
|
+
"createdAt": "2026-01-30T09:00:32.202564+00:00",
|
|
9884
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
9885
|
+
"componentName": "IconFeather2"
|
|
9886
|
+
},
|
|
9873
9887
|
{
|
|
9874
9888
|
"category": "Interface General",
|
|
9875
9889
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.75 1V9H11.25V1H12.75ZM6 4.93934L9.06066 8L8 9.06066L4.93934 6L6 4.93934ZM19.0607 6L16 9.06066L14.9393 8L18 4.93934L19.0607 6ZM1 11.25H9V12.75H1V11.25ZM15 11.25H23V12.75H15V11.25ZM9.06066 16L6 19.0607L4.93934 18L8 14.9393L9.06066 16ZM16 14.9393L19.0607 18L18 19.0607L14.9393 16L16 14.9393ZM12.75 15V23H11.25V15H12.75Z\" fill=\"currentColor\"/>",
|
|
@@ -11956,6 +11970,20 @@
|
|
|
11956
11970
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
11957
11971
|
"componentName": "IconGraduateCap"
|
|
11958
11972
|
},
|
|
11973
|
+
{
|
|
11974
|
+
"category": "Nature & Energy",
|
|
11975
|
+
"svg": "<path d=\"M6 4C13 5.55357 14.5 11.6316 14.5 18.5H15.5C15.5 13.7632 16.8571 10.4737 22 8.5C20.5474 11.6119 20.0402 15.1875 20 18.5H23V20H1V18.5H4C3.95978 15.1875 3.45255 11.6119 2 8.5C7.14286 10.4737 8.5 13.7632 8.5 18.5H9.5C9.45978 13.6969 8.5 8.66071 6 4ZM19 3C17.3804 5.91529 16.4096 8.98314 15.9141 12.043C15.6164 12.5564 15.3747 13.0935 15.1816 13.6533C14.9232 11.9192 14.483 10.2764 13.7676 8.81152C13.4643 8.19065 13.1142 7.60488 12.7119 7.06055C14.0062 5.09278 15.9961 3.64373 19 3Z\" fill=\"currentColor\"/>",
|
|
11976
|
+
"iconName": "grass, logout, signout",
|
|
11977
|
+
"variant": {
|
|
11978
|
+
"join": "square",
|
|
11979
|
+
"filled": "on",
|
|
11980
|
+
"radius": "0",
|
|
11981
|
+
"stroke": "1.5"
|
|
11982
|
+
},
|
|
11983
|
+
"createdAt": "2026-01-30T09:00:32.202564+00:00",
|
|
11984
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
11985
|
+
"componentName": "IconGrass"
|
|
11986
|
+
},
|
|
11959
11987
|
{
|
|
11960
11988
|
"category": "Nature & Energy",
|
|
11961
11989
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.16101 17.7687C2.13125 13.7222 2.34173 9.272 5.10511 6.23444C7.9505 3.10675 13.303 1.69666 19.9208 3.54964L20.3271 3.66339L20.4408 4.06965C22.2937 10.6875 20.8836 16.04 17.7559 18.8853C14.7184 21.6487 10.2682 21.8591 6.22167 18.8294L3.74816 21.3029L2.6875 20.2423L5.16101 17.7687ZM9.00049 12.5001L13.5005 7.00006V10.5001H16.0005L11.5005 16.0001V12.5001H9.00049Z\" fill=\"currentColor\"/>",
|
|
@@ -20653,7 +20681,7 @@
|
|
|
20653
20681
|
{
|
|
20654
20682
|
"category": "Interface General",
|
|
20655
20683
|
"svg": "<path d=\"M3 3H11V11H3V3Z\" fill=\"currentColor\"/><path d=\"M13 3H21V11H13V3Z\" fill=\"currentColor\"/><path d=\"M3 13H11V21H3V13Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17 13.0078C14.7909 13.0078 13 14.7987 13 17.0078C13 19.217 14.7909 21.0078 17 21.0078C17.8352 21.0078 18.6113 20.7513 19.2528 20.3134L21.1287 22.1893L22.1893 21.1287L20.312 19.2513C20.7459 18.6116 21 17.839 21 17.0078C21 14.7987 19.2091 13.0078 17 13.0078ZM14.5 17.0078C14.5 15.6271 15.6193 14.5078 17 14.5078C18.3807 14.5078 19.5 15.6271 19.5 17.0078C19.5 17.6969 19.2222 18.3196 18.7708 18.7726C18.3173 19.2276 17.6921 19.5078 17 19.5078C15.6193 19.5078 14.5 18.3885 14.5 17.0078Z\" fill=\"currentColor\"/>",
|
|
20656
|
-
"iconName": "square-grid-
|
|
20684
|
+
"iconName": "square-grid-magnifying-glass, layout, grid, list, search, find, magifier",
|
|
20657
20685
|
"variant": {
|
|
20658
20686
|
"join": "square",
|
|
20659
20687
|
"filled": "on",
|
|
@@ -20662,7 +20690,7 @@
|
|
|
20662
20690
|
},
|
|
20663
20691
|
"createdAt": "2025-02-15T21:11:34.177092+00:00",
|
|
20664
20692
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
20665
|
-
"componentName": "
|
|
20693
|
+
"componentName": "IconSquareGridMagnifyingGlass"
|
|
20666
20694
|
},
|
|
20667
20695
|
{
|
|
20668
20696
|
"category": "Interface General",
|
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
|
-
| "
|
|
1479
|
+
| "IconSquareGridMagnifyingGlass"
|
|
1478
1480
|
| "IconSquareInfo"
|
|
1479
1481
|
| "IconSquareLines"
|
|
1480
1482
|
| "IconSquareLinesBottom"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.110",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1.5/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1734,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 66,
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
]
|
|
509
509
|
},
|
|
510
510
|
"Edit": {
|
|
511
|
-
"count":
|
|
511
|
+
"count": 81,
|
|
512
512
|
"icons": [
|
|
513
513
|
"Icon3d",
|
|
514
514
|
"IconAddKeyframe",
|
|
@@ -545,6 +545,7 @@
|
|
|
545
545
|
"IconEraser",
|
|
546
546
|
"IconEraserSimple",
|
|
547
547
|
"IconFeather",
|
|
548
|
+
"IconFeather2",
|
|
548
549
|
"IconGlass",
|
|
549
550
|
"IconGooey",
|
|
550
551
|
"IconHdr",
|
|
@@ -1024,7 +1025,7 @@
|
|
|
1024
1025
|
"IconSquareCircleTopRight",
|
|
1025
1026
|
"IconSquareDotedBehindSquare",
|
|
1026
1027
|
"IconSquareGridCircle",
|
|
1027
|
-
"
|
|
1028
|
+
"IconSquareGridMagnifyingGlass",
|
|
1028
1029
|
"IconSquareInfo",
|
|
1029
1030
|
"IconSquareLines",
|
|
1030
1031
|
"IconSquareMinus",
|
|
@@ -1152,13 +1153,14 @@
|
|
|
1152
1153
|
]
|
|
1153
1154
|
},
|
|
1154
1155
|
"Nature & Energy": {
|
|
1155
|
-
"count":
|
|
1156
|
+
"count": 19,
|
|
1156
1157
|
"icons": [
|
|
1157
1158
|
"IconAtom",
|
|
1158
1159
|
"IconBlossom",
|
|
1159
1160
|
"IconChargingStation",
|
|
1160
1161
|
"IconDrillingRig",
|
|
1161
1162
|
"IconExposure2",
|
|
1163
|
+
"IconGrass",
|
|
1162
1164
|
"IconGreenPower",
|
|
1163
1165
|
"IconGrowth",
|
|
1164
1166
|
"IconHomeEnergy",
|
|
@@ -2637,6 +2639,7 @@
|
|
|
2637
2639
|
"IconFastForward5s": "fast-forward-5s",
|
|
2638
2640
|
"IconFastShipping": "fast-shipping, truck, delivery",
|
|
2639
2641
|
"IconFeather": "feather, writing",
|
|
2642
|
+
"IconFeather2": "feather-2, writing",
|
|
2640
2643
|
"IconFeature": "feature, shine",
|
|
2641
2644
|
"IconFigma": "figma",
|
|
2642
2645
|
"IconFigmaSimple": "figma-simple",
|
|
@@ -2786,6 +2789,7 @@
|
|
|
2786
2789
|
"IconGoose": "goose",
|
|
2787
2790
|
"IconGovernment": "government, bank, building",
|
|
2788
2791
|
"IconGraduateCap": "graduate-cap, study, education, academic, student",
|
|
2792
|
+
"IconGrass": "grass, logout, signout",
|
|
2789
2793
|
"IconGreenPower": "green-power, green-energy",
|
|
2790
2794
|
"IconGrok": "grok",
|
|
2791
2795
|
"IconGroup1": "group-1, users",
|
|
@@ -3407,7 +3411,7 @@
|
|
|
3407
3411
|
"IconSquareCursor": "square-cursor, cursor box, arrow",
|
|
3408
3412
|
"IconSquareDotedBehindSquare": "square-doted-behind-square, copy, layers, pages",
|
|
3409
3413
|
"IconSquareGridCircle": "square-grid-circle, layout, grid, list, category, categories",
|
|
3410
|
-
"
|
|
3414
|
+
"IconSquareGridMagnifyingGlass": "square-grid-magnifying-glass, layout, grid, list, search, find, magifier",
|
|
3411
3415
|
"IconSquareInfo": "square-info, information, tooltip",
|
|
3412
3416
|
"IconSquareLines": "square-lines, note, card, text",
|
|
3413
3417
|
"IconSquareLinesBottom": "square-lines-bottom, transcription",
|
package/index.d.ts
CHANGED
|
@@ -703,6 +703,7 @@ export { IconFastForward30s, default as IconFastForward30sDefault, } from "./Ico
|
|
|
703
703
|
export { IconFastForward5s, default as IconFastForward5sDefault, } from "./IconFastForward5s";
|
|
704
704
|
export { IconFastShipping, default as IconFastShippingDefault, } from "./IconFastShipping";
|
|
705
705
|
export { IconFeather, default as IconFeatherDefault } from "./IconFeather";
|
|
706
|
+
export { IconFeather2, default as IconFeather2Default } from "./IconFeather2";
|
|
706
707
|
export { IconFeature, default as IconFeatureDefault } from "./IconFeature";
|
|
707
708
|
export { IconFigma, default as IconFigmaDefault } from "./IconFigma";
|
|
708
709
|
export { IconFigmaSimple, default as IconFigmaSimpleDefault, } from "./IconFigmaSimple";
|
|
@@ -852,6 +853,7 @@ export { IconGooglePlayStore, default as IconGooglePlayStoreDefault, } from "./I
|
|
|
852
853
|
export { IconGoose, default as IconGooseDefault } from "./IconGoose";
|
|
853
854
|
export { IconGovernment, default as IconGovernmentDefault, } from "./IconGovernment";
|
|
854
855
|
export { IconGraduateCap, default as IconGraduateCapDefault, } from "./IconGraduateCap";
|
|
856
|
+
export { IconGrass, default as IconGrassDefault } from "./IconGrass";
|
|
855
857
|
export { IconGreenPower, default as IconGreenPowerDefault, } from "./IconGreenPower";
|
|
856
858
|
export { IconGrok, default as IconGrokDefault } from "./IconGrok";
|
|
857
859
|
export { IconGroup1, default as IconGroup1Default } from "./IconGroup1";
|
|
@@ -1473,7 +1475,7 @@ export { IconSquareCircleTopRight, default as IconSquareCircleTopRightDefault, }
|
|
|
1473
1475
|
export { IconSquareCursor, default as IconSquareCursorDefault, } from "./IconSquareCursor";
|
|
1474
1476
|
export { IconSquareDotedBehindSquare, default as IconSquareDotedBehindSquareDefault, } from "./IconSquareDotedBehindSquare";
|
|
1475
1477
|
export { IconSquareGridCircle, default as IconSquareGridCircleDefault, } from "./IconSquareGridCircle";
|
|
1476
|
-
export {
|
|
1478
|
+
export { IconSquareGridMagnifyingGlass, default as IconSquareGridMagnifyingGlassDefault, } from "./IconSquareGridMagnifyingGlass";
|
|
1477
1479
|
export { IconSquareInfo, default as IconSquareInfoDefault, } from "./IconSquareInfo";
|
|
1478
1480
|
export { IconSquareLines, default as IconSquareLinesDefault, } from "./IconSquareLines";
|
|
1479
1481
|
export { IconSquareLinesBottom, default as IconSquareLinesBottomDefault, } from "./IconSquareLinesBottom";
|