@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.196 → 1.1.197

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAnimatePath: FC<CentralIconBaseProps>;
4
+ export default IconAnimatePath;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var e=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var P=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of P(o))!x.call(r,C)&&C!==t&&e(r,C,{get:()=>o[C],enumerable:!(p=I(o,C))||p.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(u(r)):{},a(o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>a(e({},"__esModule",{value:!0}),r);var y={};g(y,{IconAnimatePath:()=>i,default:()=>v});module.exports=h(y);var n=m(require("react"));var l=m(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>l.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"),i=r=>n.default.createElement(c,{...r},n.default.createElement(f.Path,{d:"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z",fill:"currentColor"})),v=i;0&&(module.exports={IconAnimatePath});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAnimatePath/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 IconAnimatePath: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnimatePath;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kvBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAnimatePath_exports","__export","IconAnimatePath","IconAnimatePath_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAnimatePath","props","React","CentralIconBase","IconAnimatePath_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...e})=>n.createElement(p,{...e,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 m=o=>C.createElement(t,{...o},C.createElement(a,{d:"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z",fill:"currentColor"})),x=m;export{m as IconAnimatePath,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAnimatePath/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 IconAnimatePath: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAnimatePath;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kvBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAnimatePath","props","React","CentralIconBase","IconAnimatePath_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconElements: FC<CentralIconBaseProps>;
4
+ export default IconElements;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},f=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==C&&l(r,e,{get:()=>o[e],enumerable:!(p=d(o,e))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?c(I(r)):{},f(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),g=r=>f(l({},"__esModule",{value:!0}),r);var Z={};P(Z,{IconElements:()=>a,default:()=>M});module.exports=g(Z);var n=m(require("react"));var s=m(require("react")),i=require("react-native-svg"),u=({children:r,size:o=24,...C})=>s.default.createElement(i.Svg,{...C,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"),a=r=>n.default.createElement(u,{...r},n.default.createElement(t.Path,{d:"M5.90234 16.5626C6.73081 15.128 8.56525 14.6367 10 15.4649C11.4346 16.2933 11.9268 18.1278 11.0986 19.5626C10.2702 20.9972 8.43477 21.4895 7 20.6612C5.56533 19.8328 5.07415 17.9974 5.90234 16.5626Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M14 15.4649C15.4348 14.6365 17.2702 15.1278 18.0986 16.5626C18.9269 17.9974 18.4348 19.8328 17 20.6612C15.5653 21.4892 13.7307 20.9971 12.9023 19.5626C12.0742 18.1279 12.5655 16.2934 14 15.4649Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M5 9.00009C6.65681 9.00009 7.99992 10.3433 8 12.0001C8 13.6569 6.65685 15.0001 5 15.0001C3.34315 15.0001 2 13.6569 2 12.0001C2.00008 10.3433 3.3432 9.00009 5 9.00009Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M19 9.00009C20.6568 9.00009 21.9999 10.3433 22 12.0001C22 13.6569 20.6569 15.0001 19 15.0001C17.3431 15.0001 16 13.6569 16 12.0001C16.0001 10.3433 17.3432 9.00009 19 9.00009Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M12.9023 4.43857C13.7308 3.00398 15.5652 2.51271 17 3.34091C18.4346 4.16931 18.9268 6.00379 18.0986 7.43857C17.2702 8.8732 15.4348 9.36546 14 8.5372C12.5653 7.70878 12.0742 5.87336 12.9023 4.43857Z",fill:"currentColor"}),n.default.createElement(t.Path,{d:"M7 3.33994C8.43478 2.51161 10.2701 3.00294 11.0986 4.43759C11.927 5.87245 11.4348 7.70778 10 8.53623C8.56517 9.36437 6.7307 8.87235 5.90234 7.43759C5.07423 6.00286 5.56545 4.16838 7 3.33994Z",fill:"currentColor"})),M=a;0&&(module.exports={IconElements});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconElements/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 IconElements: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.90234 16.5626C6.73081 15.128 8.56525 14.6367 10 15.4649C11.4346 16.2933 11.9268 18.1278 11.0986 19.5626C10.2702 20.9972 8.43477 21.4895 7 20.6612C5.56533 19.8328 5.07415 17.9974 5.90234 16.5626Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 15.4649C15.4348 14.6365 17.2702 15.1278 18.0986 16.5626C18.9269 17.9974 18.4348 19.8328 17 20.6612C15.5653 21.4892 13.7307 20.9971 12.9023 19.5626C12.0742 18.1279 12.5655 16.2934 14 15.4649Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 9.00009C6.65681 9.00009 7.99992 10.3433 8 12.0001C8 13.6569 6.65685 15.0001 5 15.0001C3.34315 15.0001 2 13.6569 2 12.0001C2.00008 10.3433 3.3432 9.00009 5 9.00009Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19 9.00009C20.6568 9.00009 21.9999 10.3433 22 12.0001C22 13.6569 20.6569 15.0001 19 15.0001C17.3431 15.0001 16 13.6569 16 12.0001C16.0001 10.3433 17.3432 9.00009 19 9.00009Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.9023 4.43857C13.7308 3.00398 15.5652 2.51271 17 3.34091C18.4346 4.16931 18.9268 6.00379 18.0986 7.43857C17.2702 8.8732 15.4348 9.36546 14 8.5372C12.5653 7.70878 12.0742 5.87336 12.9023 4.43857Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7 3.33994C8.43478 2.51161 10.2701 3.00294 11.0986 4.43759C11.927 5.87245 11.4348 7.70778 10 8.53623C8.56517 9.36437 6.7307 8.87235 5.90234 7.43759C5.07423 6.00286 5.56545 4.16838 7 3.33994Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconElements;\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,wMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yKACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iLACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wMACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iMACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconElements_exports","__export","IconElements","IconElements_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconElements","props","React","CentralIconBase","IconElements_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...e})=>l.createElement(p,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as C}from"react-native-svg";var f=n=>r.createElement(t,{...n},r.createElement(C,{d:"M5.90234 16.5626C6.73081 15.128 8.56525 14.6367 10 15.4649C11.4346 16.2933 11.9268 18.1278 11.0986 19.5626C10.2702 20.9972 8.43477 21.4895 7 20.6612C5.56533 19.8328 5.07415 17.9974 5.90234 16.5626Z",fill:"currentColor"}),r.createElement(C,{d:"M14 15.4649C15.4348 14.6365 17.2702 15.1278 18.0986 16.5626C18.9269 17.9974 18.4348 19.8328 17 20.6612C15.5653 21.4892 13.7307 20.9971 12.9023 19.5626C12.0742 18.1279 12.5655 16.2934 14 15.4649Z",fill:"currentColor"}),r.createElement(C,{d:"M5 9.00009C6.65681 9.00009 7.99992 10.3433 8 12.0001C8 13.6569 6.65685 15.0001 5 15.0001C3.34315 15.0001 2 13.6569 2 12.0001C2.00008 10.3433 3.3432 9.00009 5 9.00009Z",fill:"currentColor"}),r.createElement(C,{d:"M19 9.00009C20.6568 9.00009 21.9999 10.3433 22 12.0001C22 13.6569 20.6569 15.0001 19 15.0001C17.3431 15.0001 16 13.6569 16 12.0001C16.0001 10.3433 17.3432 9.00009 19 9.00009Z",fill:"currentColor"}),r.createElement(C,{d:"M12.9023 4.43857C13.7308 3.00398 15.5652 2.51271 17 3.34091C18.4346 4.16931 18.9268 6.00379 18.0986 7.43857C17.2702 8.8732 15.4348 9.36546 14 8.5372C12.5653 7.70878 12.0742 5.87336 12.9023 4.43857Z",fill:"currentColor"}),r.createElement(C,{d:"M7 3.33994C8.43478 2.51161 10.2701 3.00294 11.0986 4.43759C11.927 5.87245 11.4348 7.70778 10 8.53623C8.56517 9.36437 6.7307 8.87235 5.90234 7.43759C5.07423 6.00286 5.56545 4.16838 7 3.33994Z",fill:"currentColor"})),x=f;export{f as IconElements,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconElements/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 IconElements: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5.90234 16.5626C6.73081 15.128 8.56525 14.6367 10 15.4649C11.4346 16.2933 11.9268 18.1278 11.0986 19.5626C10.2702 20.9972 8.43477 21.4895 7 20.6612C5.56533 19.8328 5.07415 17.9974 5.90234 16.5626Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M14 15.4649C15.4348 14.6365 17.2702 15.1278 18.0986 16.5626C18.9269 17.9974 18.4348 19.8328 17 20.6612C15.5653 21.4892 13.7307 20.9971 12.9023 19.5626C12.0742 18.1279 12.5655 16.2934 14 15.4649Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 9.00009C6.65681 9.00009 7.99992 10.3433 8 12.0001C8 13.6569 6.65685 15.0001 5 15.0001C3.34315 15.0001 2 13.6569 2 12.0001C2.00008 10.3433 3.3432 9.00009 5 9.00009Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M19 9.00009C20.6568 9.00009 21.9999 10.3433 22 12.0001C22 13.6569 20.6569 15.0001 19 15.0001C17.3431 15.0001 16 13.6569 16 12.0001C16.0001 10.3433 17.3432 9.00009 19 9.00009Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M12.9023 4.43857C13.7308 3.00398 15.5652 2.51271 17 3.34091C18.4346 4.16931 18.9268 6.00379 18.0986 7.43857C17.2702 8.8732 15.4348 9.36546 14 8.5372C12.5653 7.70878 12.0742 5.87336 12.9023 4.43857Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7 3.33994C8.43478 2.51161 10.2701 3.00294 11.0986 4.43759C11.927 5.87245 11.4348 7.70778 10 8.53623C8.56517 9.36437 6.7307 8.87235 5.90234 7.43759C5.07423 6.00286 5.56545 4.16838 7 3.33994Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconElements;\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,wMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yKACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iLACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wMACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iMACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconElements","props","React","CentralIconBase","IconElements_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconGhost2: FC<CentralIconBaseProps>;
4
+ export default IconGhost2;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of I(r))!v.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(p=B(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(n({},"__esModule",{value:!0}),o);var h={};x(h,{IconGhost2:()=>i,default:()=>g});module.exports=P(h);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconGhost2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGhost2/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 IconGhost2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGhost2;\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,0vBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconGhost2_exports","__export","IconGhost2","IconGhost2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconGhost2","props","React","CentralIconBase","IconGhost2_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>C.createElement(p,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z",fill:"currentColor"})),v=a;export{a as IconGhost2,v as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconGhost2/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 IconGhost2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGhost2;\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,0vBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconGhost2","props","React","CentralIconBase","IconGhost2_default"]}
package/README.md CHANGED
@@ -440,6 +440,7 @@ Below is a complete list of available icons:
440
440
  - IconAgent
441
441
  - IconAgenticCoding
442
442
  - IconAnchor
443
+ - IconAnimatePath
443
444
  - IconAnimation
444
445
  - IconAnimationAuto
445
446
  - IconAnimationEase
@@ -1504,6 +1505,7 @@ Below is a complete list of available icons:
1504
1505
  - IconFingerPrint2
1505
1506
  - IconFirewall
1506
1507
  - IconGhost
1508
+ - IconGhost2
1507
1509
  - IconKey1
1508
1510
  - IconKey2
1509
1511
  - IconKeyhole
@@ -1911,6 +1913,7 @@ Below is a complete list of available icons:
1911
1913
  - IconDiscoBall
1912
1914
  - IconDoorHanger
1913
1915
  - IconDumbell
1916
+ - IconElements
1914
1917
  - IconEmojiAstonished
1915
1918
  - IconExplosion
1916
1919
  - IconFashion
@@ -672,6 +672,20 @@
672
672
  "packageName": "square-filled-radius-0-stroke-2",
673
673
  "componentName": "IconAngularjs"
674
674
  },
675
+ {
676
+ "category": "Code",
677
+ "svg": "<path d=\"M18.5 4C20.433 4 22 5.567 22 7.5C22 9.433 20.433 11 18.5 11C17.6628 11 16.8943 10.7061 16.292 10.2158C13.307 14.0002 13 18.1701 13 19V20H11V19C11 18.095 10.732 15.4358 10.0527 13.0205C9.71265 11.8114 9.29011 10.7388 8.79395 9.99023C8.28525 9.22291 7.84467 9 7.5 9C7.15533 9 6.71475 9.22291 6.20605 9.99023C5.70989 10.7388 5.28735 11.8114 4.94727 13.0205C4.26796 15.4358 4 18.095 4 19V20H2V19C2 17.905 2.2946 15.0641 3.02148 12.4795C3.38446 11.1889 3.87618 9.88614 4.54004 8.88477C5.1915 7.90222 6.15732 7 7.5 7C8.84268 7 9.8085 7.90222 10.46 8.88477C11.1238 9.88614 11.6155 11.1889 11.9785 12.4795C12.0606 12.7713 12.1358 13.0668 12.207 13.3623C12.8243 11.7984 13.7517 10.0928 15.1367 8.4707C15.0479 8.16245 15 7.83683 15 7.5C15 5.567 16.567 4 18.5 4Z\" fill=\"currentColor\"/>",
678
+ "iconName": "animate-path, animation, jump",
679
+ "variant": {
680
+ "join": "square",
681
+ "filled": "on",
682
+ "radius": "0",
683
+ "stroke": "2"
684
+ },
685
+ "createdAt": "2026-04-17T09:02:01.842141+00:00",
686
+ "packageName": "square-filled-radius-0-stroke-2",
687
+ "componentName": "IconAnimatePath"
688
+ },
675
689
  {
676
690
  "category": "Code",
677
691
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.41436 16L3.00015 22.4142L1.58594 21L8.00015 14.5858L9.41436 16Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.9144 18.5L10.0002 22.4142L8.58594 21L12.5002 17.0858L13.9144 18.5Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.91436 11.5L3.00015 15.4142L1.58594 14L5.50015 10.0858L6.91436 11.5Z\" fill=\"currentColor\"/><path d=\"M15.0002 2C11.1342 2 8.00015 5.13401 8.00015 9C8.00015 12.866 11.1342 16 15.0002 16C18.8661 16 22.0002 12.866 22.0002 9C22.0002 5.13401 18.8661 2 15.0002 2Z\" fill=\"currentColor\"/>",
@@ -9870,6 +9884,20 @@
9870
9884
  "packageName": "square-filled-radius-0-stroke-2",
9871
9885
  "componentName": "IconElectrocardiogram"
9872
9886
  },
9887
+ {
9888
+ "category": "Things",
9889
+ "svg": "<path d=\"M5.90234 16.5626C6.73081 15.128 8.56525 14.6367 10 15.4649C11.4346 16.2933 11.9268 18.1278 11.0986 19.5626C10.2702 20.9972 8.43477 21.4895 7 20.6612C5.56533 19.8328 5.07415 17.9974 5.90234 16.5626Z\" fill=\"currentColor\"/><path d=\"M14 15.4649C15.4348 14.6365 17.2702 15.1278 18.0986 16.5626C18.9269 17.9974 18.4348 19.8328 17 20.6612C15.5653 21.4892 13.7307 20.9971 12.9023 19.5626C12.0742 18.1279 12.5655 16.2934 14 15.4649Z\" fill=\"currentColor\"/><path d=\"M5 9.00009C6.65681 9.00009 7.99992 10.3433 8 12.0001C8 13.6569 6.65685 15.0001 5 15.0001C3.34315 15.0001 2 13.6569 2 12.0001C2.00008 10.3433 3.3432 9.00009 5 9.00009Z\" fill=\"currentColor\"/><path d=\"M19 9.00009C20.6568 9.00009 21.9999 10.3433 22 12.0001C22 13.6569 20.6569 15.0001 19 15.0001C17.3431 15.0001 16 13.6569 16 12.0001C16.0001 10.3433 17.3432 9.00009 19 9.00009Z\" fill=\"currentColor\"/><path d=\"M12.9023 4.43857C13.7308 3.00398 15.5652 2.51271 17 3.34091C18.4346 4.16931 18.9268 6.00379 18.0986 7.43857C17.2702 8.8732 15.4348 9.36546 14 8.5372C12.5653 7.70878 12.0742 5.87336 12.9023 4.43857Z\" fill=\"currentColor\"/><path d=\"M7 3.33994C8.43478 2.51161 10.2701 3.00294 11.0986 4.43759C11.927 5.87245 11.4348 7.70778 10 8.53623C8.56517 9.36437 6.7307 8.87235 5.90234 7.43759C5.07423 6.00286 5.56545 4.16838 7 3.33994Z\" fill=\"currentColor\"/>",
9890
+ "iconName": "elements, materials, products, tools, teams, skills, circles",
9891
+ "variant": {
9892
+ "join": "square",
9893
+ "filled": "on",
9894
+ "radius": "0",
9895
+ "stroke": "2"
9896
+ },
9897
+ "createdAt": "2026-04-17T09:02:01.842141+00:00",
9898
+ "packageName": "square-filled-radius-0-stroke-2",
9899
+ "componentName": "IconElements"
9900
+ },
9873
9901
  {
9874
9902
  "category": "Communication",
9875
9903
  "svg": "<path d=\"M2.57918 4L12 11.7079L21.4208 4H2.57918Z\" fill=\"currentColor\"/><path d=\"M2 6.11025V20H22V6.11024L12 14.2921L2 6.11025Z\" fill=\"currentColor\"/>",
@@ -12614,6 +12642,20 @@
12614
12642
  "packageName": "square-filled-radius-0-stroke-2",
12615
12643
  "componentName": "IconGhost"
12616
12644
  },
12645
+ {
12646
+ "category": "Security",
12647
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.0015 2C16.4729 2.00025 19.9453 5.66301 20.0318 10.0635C20.0912 13.0887 20.3276 16.0264 21.0015 18.957C21.343 20.4424 19.9566 21.8753 18.4077 21.3838L15.8159 20.5605L12.7398 21.7832C12.2659 21.9714 11.7371 21.9713 11.2632 21.7832L8.18606 20.5605L5.59524 21.3838C4.04617 21.8757 2.65991 20.4425 3.00149 18.957C3.67532 16.0265 3.91178 13.0887 3.97121 10.0635C4.05766 5.66286 7.52982 2 12.0015 2ZM9.70071 7.5C8.98284 7.50018 8.4009 8.39554 8.4009 9.5C8.4009 10.6045 8.98284 11.4998 9.70071 11.5C10.4187 11.5 11.0005 10.6046 11.0005 9.5C11.0005 8.39543 10.4187 7.5 9.70071 7.5ZM14.3013 7.5C13.5833 7.5 13.0015 8.39543 13.0015 9.5C13.0015 10.6046 13.5833 11.5 14.3013 11.5C15.0191 11.4998 15.6011 10.6044 15.6011 9.5C15.6011 8.39557 15.0191 7.50022 14.3013 7.5Z\" fill=\"currentColor\"/>",
12648
+ "iconName": "ghost-2, privacy, hidden, unknown",
12649
+ "variant": {
12650
+ "join": "square",
12651
+ "filled": "on",
12652
+ "radius": "0",
12653
+ "stroke": "2"
12654
+ },
12655
+ "createdAt": "2026-04-17T09:02:01.842141+00:00",
12656
+ "packageName": "square-filled-radius-0-stroke-2",
12657
+ "componentName": "IconGhost2"
12658
+ },
12617
12659
  {
12618
12660
  "category": "Photography & Video",
12619
12661
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 20V4H22V20H2ZM10.6489 11.173C10.6489 10.939 10.6029 10.7089 10.5109 10.4826C10.4214 10.2538 10.2834 10.047 10.0968 9.86241C9.91023 9.67518 9.67253 9.52695 9.38371 9.41773C9.09745 9.30591 8.75879 9.25 8.36774 9.25C7.831 9.25 7.37988 9.35662 7.01438 9.56986C6.65144 9.7805 6.37668 10.0691 6.1901 10.4358C6.00608 10.8025 5.91406 11.2186 5.91406 11.684V12.273C5.91406 12.5981 5.95879 12.9102 6.04825 13.2092C6.1377 13.5057 6.27828 13.7696 6.46997 14.0011C6.66422 14.2325 6.91598 14.4158 7.22524 14.5511C7.53707 14.6837 7.91278 14.75 8.3524 14.75C8.76901 14.75 9.12301 14.6902 9.41438 14.5706C9.70831 14.4509 9.94601 14.291 10.1275 14.0908C10.309 13.8905 10.4406 13.6656 10.5224 13.416C10.6067 13.1637 10.6489 12.9076 10.6489 12.6475V11.6489H8.49042V12.7333H9.14218V12.7957C9.14218 12.8972 9.11534 12.9973 9.06167 13.0961C9.00799 13.1949 8.9262 13.2768 8.8163 13.3418C8.70639 13.4069 8.5671 13.4394 8.39841 13.4394C8.16326 13.4394 7.98435 13.3835 7.86167 13.2716C7.73898 13.1572 7.65464 13.0103 7.60863 12.8309C7.56518 12.6514 7.54346 12.4629 7.54346 12.2652V11.7035C7.54346 11.3343 7.61119 11.0521 7.74665 10.8571C7.88467 10.6595 8.08786 10.5606 8.35624 10.5606C8.47125 10.5606 8.57349 10.5775 8.66294 10.6113C8.7524 10.6452 8.8278 10.692 8.88914 10.7518C8.95048 10.809 8.99777 10.874 9.031 10.9468C9.06678 11.0196 9.0885 11.095 9.09617 11.173H10.6489ZM13.1217 14.6603V9.33582H11.5115V14.6603H13.1217ZM15.8054 12.823V14.6603H14.1952V9.33582H17.9141V10.6152H15.8054V11.5904H17.7109V12.823H15.8054Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -47,6 +47,7 @@ export type CentralIconName =
47
47
  | "IconAnchor1"
48
48
  | "IconAnchor2"
49
49
  | "IconAngularjs"
50
+ | "IconAnimatePath"
50
51
  | "IconAnimation"
51
52
  | "IconAnimationAuto"
52
53
  | "IconAnimationEase"
@@ -704,6 +705,7 @@ export type CentralIconName =
704
705
  | "IconEditSmall2"
705
706
  | "IconEinstein"
706
707
  | "IconElectrocardiogram"
708
+ | "IconElements"
707
709
  | "IconEmail1"
708
710
  | "IconEmail1Sparkle"
709
711
  | "IconEmail2"
@@ -900,6 +902,7 @@ export type CentralIconName =
900
902
  | "IconGenderFemale"
901
903
  | "IconGenderMale"
902
904
  | "IconGhost"
905
+ | "IconGhost2"
903
906
  | "IconGif"
904
907
  | "IconGifSquare"
905
908
  | "IconGift1"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/square-filled-radius-0-stroke-2",
3
- "version": "1.1.196",
3
+ "version": "1.1.197",
4
4
  "style": "square-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-2/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": 1951,
14
+ "totalIcons": 1954,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 77,
@@ -317,11 +317,12 @@
317
317
  ]
318
318
  },
319
319
  "Code": {
320
- "count": 64,
320
+ "count": 65,
321
321
  "icons": [
322
322
  "IconAgent",
323
323
  "IconAgenticCoding",
324
324
  "IconAnchor",
325
+ "IconAnimatePath",
325
326
  "IconAnimation",
326
327
  "IconAnimationAuto",
327
328
  "IconAnimationEase",
@@ -1417,7 +1418,7 @@
1417
1418
  ]
1418
1419
  },
1419
1420
  "Security": {
1420
- "count": 30,
1421
+ "count": 31,
1421
1422
  "icons": [
1422
1423
  "IconAnonymous",
1423
1424
  "IconAsterisk",
@@ -1426,6 +1427,7 @@
1426
1427
  "IconFingerPrint2",
1427
1428
  "IconFirewall",
1428
1429
  "IconGhost",
1430
+ "IconGhost2",
1429
1431
  "IconKey1",
1430
1432
  "IconKey2",
1431
1433
  "IconKeyhole",
@@ -1806,7 +1808,7 @@
1806
1808
  ]
1807
1809
  },
1808
1810
  "Things": {
1809
- "count": 137,
1811
+ "count": 138,
1810
1812
  "icons": [
1811
1813
  "IconAnvil",
1812
1814
  "IconApps",
@@ -1845,6 +1847,7 @@
1845
1847
  "IconDiscoBall",
1846
1848
  "IconDoorHanger",
1847
1849
  "IconDumbell",
1850
+ "IconElements",
1848
1851
  "IconEmojiAstonished",
1849
1852
  "IconExplosion",
1850
1853
  "IconFashion",
@@ -2201,6 +2204,7 @@
2201
2204
  "IconAnchor1": "anchor-1, link",
2202
2205
  "IconAnchor2": "anchor-2, link",
2203
2206
  "IconAngularjs": "angularjs",
2207
+ "IconAnimatePath": "animate-path, animation, jump",
2204
2208
  "IconAnimation": "animation",
2205
2209
  "IconAnimationAuto": "animation-auto",
2206
2210
  "IconAnimationEase": "animation-ease",
@@ -2858,6 +2862,7 @@
2858
2862
  "IconEditSmall2": "edit-small-2",
2859
2863
  "IconEinstein": "einstein, thinking, physics",
2860
2864
  "IconElectrocardiogram": "electrocardiogram, activity, notification, pulse, heartbeat, beat",
2865
+ "IconElements": "elements, materials, products, tools, teams, skills, circles",
2861
2866
  "IconEmail1": "email-1, envelope",
2862
2867
  "IconEmail1Sparkle": "email-1-sparkle, envelope",
2863
2868
  "IconEmail2": "email-2, envelope",
@@ -3054,6 +3059,7 @@
3054
3059
  "IconGenderFemale": "gender-female",
3055
3060
  "IconGenderMale": "gender-male",
3056
3061
  "IconGhost": "ghost, hidden, unknown, horror",
3062
+ "IconGhost2": "ghost-2, privacy, hidden, unknown",
3057
3063
  "IconGif": "gif",
3058
3064
  "IconGifSquare": "gif-square",
3059
3065
  "IconGift1": "gift-1, present",
package/index.d.ts CHANGED
@@ -46,6 +46,7 @@ export { IconAnchor, default as IconAnchorDefault } from "./IconAnchor";
46
46
  export { IconAnchor1, default as IconAnchor1Default } from "./IconAnchor1";
47
47
  export { IconAnchor2, default as IconAnchor2Default } from "./IconAnchor2";
48
48
  export { IconAngularjs, default as IconAngularjsDefault, } from "./IconAngularjs";
49
+ export { IconAnimatePath, default as IconAnimatePathDefault, } from "./IconAnimatePath";
49
50
  export { IconAnimation, default as IconAnimationDefault, } from "./IconAnimation";
50
51
  export { IconAnimationAuto, default as IconAnimationAutoDefault, } from "./IconAnimationAuto";
51
52
  export { IconAnimationEase, default as IconAnimationEaseDefault, } from "./IconAnimationEase";
@@ -703,6 +704,7 @@ export { IconEditSmall1, default as IconEditSmall1Default, } from "./IconEditSma
703
704
  export { IconEditSmall2, default as IconEditSmall2Default, } from "./IconEditSmall2";
704
705
  export { IconEinstein, default as IconEinsteinDefault } from "./IconEinstein";
705
706
  export { IconElectrocardiogram, default as IconElectrocardiogramDefault, } from "./IconElectrocardiogram";
707
+ export { IconElements, default as IconElementsDefault } from "./IconElements";
706
708
  export { IconEmail1, default as IconEmail1Default } from "./IconEmail1";
707
709
  export { IconEmail1Sparkle, default as IconEmail1SparkleDefault, } from "./IconEmail1Sparkle";
708
710
  export { IconEmail2, default as IconEmail2Default } from "./IconEmail2";
@@ -899,6 +901,7 @@ export { IconGemini, default as IconGeminiDefault } from "./IconGemini";
899
901
  export { IconGenderFemale, default as IconGenderFemaleDefault, } from "./IconGenderFemale";
900
902
  export { IconGenderMale, default as IconGenderMaleDefault, } from "./IconGenderMale";
901
903
  export { IconGhost, default as IconGhostDefault } from "./IconGhost";
904
+ export { IconGhost2, default as IconGhost2Default } from "./IconGhost2";
902
905
  export { IconGif, default as IconGifDefault } from "./IconGif";
903
906
  export { IconGifSquare, default as IconGifSquareDefault, } from "./IconGifSquare";
904
907
  export { IconGift1, default as IconGift1Default } from "./IconGift1";