@central-icons-react-native/round-filled-radius-0-stroke-1.5 1.1.87 → 1.1.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
1
  import { FC } from "react";
2
2
  import { type CentralIconBaseProps } from "../CentralIconBase";
3
- export declare const IconCloud1: FC<CentralIconBaseProps>;
4
- export default IconCloud1;
3
+ export declare const IconCloudApi: FC<CentralIconBaseProps>;
4
+ export default IconCloudApi;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of B(r))!v.call(o,C)&&C!==e&&t(o,C,{get:()=>r[C],enumerable:!(p=d(r,C))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(I(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var H={};x(H,{IconCloudApi:()=>i,default:()=>g});module.exports=P(H);var n=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=>n.default.createElement(c,{...o},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.6677 2 16.869 3.99 17.2041 6.56641C18.9386 6.89594 20.25 8.41963 20.25 10.25C20.25 12.3211 18.5711 14 16.5 14H12.75V15.5879C13.9424 15.8696 14.8804 16.8076 15.1621 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1642 21.6642 19.5 21.25 19.5H15.1621C14.8235 20.9332 13.5367 22 12 22C10.4633 22 9.17655 20.9332 8.83789 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3358 2.33579 18 2.75 18H8.83789C9.11964 16.8076 10.0576 15.8696 11.25 15.5879V14H8.25C5.76472 14 3.75 11.9853 3.75 9.5C3.75 7.37663 5.22012 5.59795 7.19824 5.12402C8.01392 3.28444 9.85622 2 12 2ZM12 17C11.0335 17 10.25 17.7835 10.25 18.75C10.25 19.7165 11.0335 20.5 12 20.5C12.9665 20.5 13.75 19.7165 13.75 18.75C13.75 17.7835 12.9665 17 12 17Z",fill:"currentColor"})),g=i;0&&(module.exports={IconCloudApi});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCloudApi/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 IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.6677 2 16.869 3.99 17.2041 6.56641C18.9386 6.89594 20.25 8.41963 20.25 10.25C20.25 12.3211 18.5711 14 16.5 14H12.75V15.5879C13.9424 15.8696 14.8804 16.8076 15.1621 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1642 21.6642 19.5 21.25 19.5H15.1621C14.8235 20.9332 13.5367 22 12 22C10.4633 22 9.17655 20.9332 8.83789 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3358 2.33579 18 2.75 18H8.83789C9.11964 16.8076 10.0576 15.8696 11.25 15.5879V14H8.25C5.76472 14 3.75 11.9853 3.75 9.5C3.75 7.37663 5.22012 5.59795 7.19824 5.12402C8.01392 3.28444 9.85622 2 12 2ZM12 17C11.0335 17 10.25 17.7835 10.25 18.75C10.25 19.7165 11.0335 20.5 12 20.5C12.9665 20.5 13.75 19.7165 13.75 18.75C13.75 17.7835 12.9665 17 12 17Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudApi;\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,SAAS,UACT,SAAS,UACT,EAAE,6sBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCloudApi_exports","__export","IconCloudApi","IconCloudApi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudApi","props","React","CentralIconBase","IconCloudApi_default"]}
@@ -0,0 +1,2 @@
1
+ import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>n.createElement(p,{...t,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=>C.createElement(e,{...r},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C14.6677 2 16.869 3.99 17.2041 6.56641C18.9386 6.89594 20.25 8.41963 20.25 10.25C20.25 12.3211 18.5711 14 16.5 14H12.75V15.5879C13.9424 15.8696 14.8804 16.8076 15.1621 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1642 21.6642 19.5 21.25 19.5H15.1621C14.8235 20.9332 13.5367 22 12 22C10.4633 22 9.17655 20.9332 8.83789 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3358 2.33579 18 2.75 18H8.83789C9.11964 16.8076 10.0576 15.8696 11.25 15.5879V14H8.25C5.76472 14 3.75 11.9853 3.75 9.5C3.75 7.37663 5.22012 5.59795 7.19824 5.12402C8.01392 3.28444 9.85622 2 12 2ZM12 17C11.0335 17 10.25 17.7835 10.25 18.75C10.25 19.7165 11.0335 20.5 12 20.5C12.9665 20.5 13.75 19.7165 13.75 18.75C13.75 17.7835 12.9665 17 12 17Z",fill:"currentColor"})),v=a;export{a as IconCloudApi,v as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCloudApi/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 IconCloudApi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C14.6677 2 16.869 3.99 17.2041 6.56641C18.9386 6.89594 20.25 8.41963 20.25 10.25C20.25 12.3211 18.5711 14 16.5 14H12.75V15.5879C13.9424 15.8696 14.8804 16.8076 15.1621 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1642 21.6642 19.5 21.25 19.5H15.1621C14.8235 20.9332 13.5367 22 12 22C10.4633 22 9.17655 20.9332 8.83789 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3358 2.33579 18 2.75 18H8.83789C9.11964 16.8076 10.0576 15.8696 11.25 15.5879V14H8.25C5.76472 14 3.75 11.9853 3.75 9.5C3.75 7.37663 5.22012 5.59795 7.19824 5.12402C8.01392 3.28444 9.85622 2 12 2ZM12 17C11.0335 17 10.25 17.7835 10.25 18.75C10.25 19.7165 11.0335 20.5 12 20.5C12.9665 20.5 13.75 19.7165 13.75 18.75C13.75 17.7835 12.9665 17 12 17Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudApi;\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,SAAS,UACT,SAAS,UACT,EAAE,6sBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudApi","props","React","CentralIconBase","IconCloudApi_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCloudWeather: FC<CentralIconBaseProps>;
4
+ export default IconCloudWeather;
@@ -0,0 +1,2 @@
1
+ "use strict";var B=Object.create;var n=Object.defineProperty;var I=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})},a=(r,o,t,C)=>{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:!(C=I(o,e))||C.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(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 d={};g(d,{IconCloudWeather:()=>u,default:()=>v});module.exports=h(d);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"),u=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z",fill:"currentColor"})),v=u;0&&(module.exports={IconCloudWeather});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCloudWeather/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 IconCloudWeather: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudWeather;\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,oOACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCloudWeather_exports","__export","IconCloudWeather","IconCloudWeather_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCloudWeather","props","React","CentralIconBase","IconCloudWeather_default"]}
@@ -1,2 +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:"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z",fill:"currentColor"})),P=l;export{l as IconCloud1,P as default};
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:"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z",fill:"currentColor"})),P=l;export{l as IconCloudWeather,P as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCloudWeather/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 IconCloudWeather: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudWeather;\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,oOACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudWeather","props","React","CentralIconBase","IconCloudWeather_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHandshake: FC<CentralIconBaseProps>;
4
+ export default IconHandshake;
@@ -0,0 +1,2 @@
1
+ "use strict";var I=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(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 i(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=L(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?I(u(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconHandshake:()=>B,default:()=>h});module.exports=g(v);var C=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=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.4658 23.451 6.96789 21.248 4.76485Z",fill:"currentColor"})),h=B;0&&(module.exports={IconHandshake});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconHandshake/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 IconHandshake: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.4658 23.451 6.96789 21.248 4.76485Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHandshake;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0zBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconHandshake_exports","__export","IconHandshake","IconHandshake_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHandshake","props","React","CentralIconBase","IconHandshake_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 l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.4658 23.451 6.96789 21.248 4.76485Z",fill:"currentColor"})),x=l;export{l as IconHandshake,x as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconHandshake/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 IconHandshake: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.4658 23.451 6.96789 21.248 4.76485Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHandshake;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0zBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHandshake","props","React","CentralIconBase","IconHandshake_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPeopleIdCard: FC<CentralIconBaseProps>;
4
+ export default IconPeopleIdCard;
@@ -0,0 +1,2 @@
1
+ "use strict";var i=Object.create;var C=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)C(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))!P.call(o,t)&&t!==e&&C(o,t,{get:()=>r[t],enumerable:!(p=u(r,t))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?i(B(o)):{},l(r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(C({},"__esModule",{value:!0}),o);var H={};v(H,{IconPeopleIdCard:()=>d,default:()=>g});module.exports=x(H);var n=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"),d=o=>n.default.createElement(c,{...o},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.75 2C20.1642 2 20.5 2.33579 20.5 2.75V21.25C20.5 21.6642 20.1642 22 19.75 22H4.25C3.83579 22 3.5 21.6642 3.5 21.25V2.75C3.5 2.33579 3.83579 2 4.25 2H19.75ZM12 16.5C10.2077 16.5 8.00144 17.7222 7.5625 19.7705C7.47604 20.1753 7.82128 20.5156 8.23535 20.5156H15.7656C16.1795 20.5154 16.5239 20.1752 16.4375 19.7705C15.9986 17.7222 13.7922 16.5 12 16.5ZM12 10C10.6193 10 9.5 11.1193 9.5 12.5C9.5 13.8807 10.6193 15 12 15C13.3807 15 14.5 13.8807 14.5 12.5C14.5 11.1193 13.3807 10 12 10ZM9.75 4.5C9.33579 4.5 9 4.83579 9 5.25C9 5.66421 9.33579 6 9.75 6H14.25C14.6642 6 15 5.66421 15 5.25C15 4.83579 14.6642 4.5 14.25 4.5H9.75Z",fill:"currentColor"})),g=d;0&&(module.exports={IconPeopleIdCard});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPeopleIdCard/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 IconPeopleIdCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.75 2C20.1642 2 20.5 2.33579 20.5 2.75V21.25C20.5 21.6642 20.1642 22 19.75 22H4.25C3.83579 22 3.5 21.6642 3.5 21.25V2.75C3.5 2.33579 3.83579 2 4.25 2H19.75ZM12 16.5C10.2077 16.5 8.00144 17.7222 7.5625 19.7705C7.47604 20.1753 7.82128 20.5156 8.23535 20.5156H15.7656C16.1795 20.5154 16.5239 20.1752 16.4375 19.7705C15.9986 17.7222 13.7922 16.5 12 16.5ZM12 10C10.6193 10 9.5 11.1193 9.5 12.5C9.5 13.8807 10.6193 15 12 15C13.3807 15 14.5 13.8807 14.5 12.5C14.5 11.1193 13.3807 10 12 10ZM9.75 4.5C9.33579 4.5 9 4.83579 9 5.25C9 5.66421 9.33579 6 9.75 6H14.25C14.6642 6 15 5.66421 15 5.25C15 4.83579 14.6642 4.5 14.25 4.5H9.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard;\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,SAAS,UACT,SAAS,UACT,EAAE,mnBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPeopleIdCard_exports","__export","IconPeopleIdCard","IconPeopleIdCard_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPeopleIdCard","props","React","CentralIconBase","IconPeopleIdCard_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...C})=>n.createElement(p,{...C,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:"M19.75 2C20.1642 2 20.5 2.33579 20.5 2.75V21.25C20.5 21.6642 20.1642 22 19.75 22H4.25C3.83579 22 3.5 21.6642 3.5 21.25V2.75C3.5 2.33579 3.83579 2 4.25 2H19.75ZM12 16.5C10.2077 16.5 8.00144 17.7222 7.5625 19.7705C7.47604 20.1753 7.82128 20.5156 8.23535 20.5156H15.7656C16.1795 20.5154 16.5239 20.1752 16.4375 19.7705C15.9986 17.7222 13.7922 16.5 12 16.5ZM12 10C10.6193 10 9.5 11.1193 9.5 12.5C9.5 13.8807 10.6193 15 12 15C13.3807 15 14.5 13.8807 14.5 12.5C14.5 11.1193 13.3807 10 12 10ZM9.75 4.5C9.33579 4.5 9 4.83579 9 5.25C9 5.66421 9.33579 6 9.75 6H14.25C14.6642 6 15 5.66421 15 5.25C15 4.83579 14.6642 4.5 14.25 4.5H9.75Z",fill:"currentColor"})),P=a;export{a as IconPeopleIdCard,P as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPeopleIdCard/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 IconPeopleIdCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.75 2C20.1642 2 20.5 2.33579 20.5 2.75V21.25C20.5 21.6642 20.1642 22 19.75 22H4.25C3.83579 22 3.5 21.6642 3.5 21.25V2.75C3.5 2.33579 3.83579 2 4.25 2H19.75ZM12 16.5C10.2077 16.5 8.00144 17.7222 7.5625 19.7705C7.47604 20.1753 7.82128 20.5156 8.23535 20.5156H15.7656C16.1795 20.5154 16.5239 20.1752 16.4375 19.7705C15.9986 17.7222 13.7922 16.5 12 16.5ZM12 10C10.6193 10 9.5 11.1193 9.5 12.5C9.5 13.8807 10.6193 15 12 15C13.3807 15 14.5 13.8807 14.5 12.5C14.5 11.1193 13.3807 10 12 10ZM9.75 4.5C9.33579 4.5 9 4.83579 9 5.25C9 5.66421 9.33579 6 9.75 6H14.25C14.6642 6 15 5.66421 15 5.25C15 4.83579 14.6642 4.5 14.25 4.5H9.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard;\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,SAAS,UACT,SAAS,UACT,EAAE,mnBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPeopleIdCard","props","React","CentralIconBase","IconPeopleIdCard_default"]}
package/README.md CHANGED
@@ -396,6 +396,7 @@ Below is a complete list of available icons:
396
396
  ### Clouds
397
397
 
398
398
  - IconCloud
399
+ - IconCloudApi
399
400
  - IconCloudCheck
400
401
  - IconCloudDownload
401
402
  - IconCloudOff
@@ -916,6 +917,7 @@ Below is a complete list of available icons:
916
917
  - IconFistbump
917
918
  - IconHand4Finger
918
919
  - IconHand5Finger
920
+ - IconHandshake
919
921
  - IconHumanMashine
920
922
  - IconMagicHands
921
923
  - IconMoneyHand
@@ -1244,6 +1246,7 @@ Below is a complete list of available icons:
1244
1246
  - IconPeopleCopy
1245
1247
  - IconPeopleEdit
1246
1248
  - IconPeopleGear
1249
+ - IconPeopleIdCard
1247
1250
  - IconPeopleLike
1248
1251
  - IconPeopleRemove
1249
1252
  - IconPeopleRemove2
@@ -1918,8 +1921,8 @@ Below is a complete list of available icons:
1918
1921
 
1919
1922
  ### Weather
1920
1923
 
1921
- - IconCloud1
1922
1924
  - IconCloudSnow
1925
+ - IconCloudWeather
1923
1926
  - IconCloudy
1924
1927
  - IconCloudySun
1925
1928
  - IconDrop
@@ -6513,7 +6513,7 @@
6513
6513
  {
6514
6514
  "category": "Clouds",
6515
6515
  "svg": "<path d=\"M12 4C9.20241 4 6.80396 5.70153 5.77996 8.12427C3.05102 8.68825 1 11.1041 1 14C1 17.3137 3.68629 20 7 20H18.125C20.8174 20 23 17.8174 23 15.125C23 12.639 21.1392 10.5876 18.7344 10.2877C18.4969 6.77542 15.5725 4 12 4Z\" fill=\"currentColor\"/>",
6516
- "iconName": "cloud-",
6516
+ "iconName": "cloud",
6517
6517
  "variant": {
6518
6518
  "join": "round",
6519
6519
  "filled": "on",
@@ -6525,18 +6525,18 @@
6525
6525
  "componentName": "IconCloud"
6526
6526
  },
6527
6527
  {
6528
- "category": "Weather",
6529
- "svg": "<path d=\"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z\" fill=\"currentColor\"/>",
6530
- "iconName": "cloud, clouds",
6528
+ "category": "Clouds",
6529
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C14.6677 2 16.869 3.99 17.2041 6.56641C18.9386 6.89594 20.25 8.41963 20.25 10.25C20.25 12.3211 18.5711 14 16.5 14H12.75V15.5879C13.9424 15.8696 14.8804 16.8076 15.1621 18H21.25C21.6642 18 22 18.3358 22 18.75C22 19.1642 21.6642 19.5 21.25 19.5H15.1621C14.8235 20.9332 13.5367 22 12 22C10.4633 22 9.17655 20.9332 8.83789 19.5H2.75C2.33579 19.5 2 19.1642 2 18.75C2 18.3358 2.33579 18 2.75 18H8.83789C9.11964 16.8076 10.0576 15.8696 11.25 15.5879V14H8.25C5.76472 14 3.75 11.9853 3.75 9.5C3.75 7.37663 5.22012 5.59795 7.19824 5.12402C8.01392 3.28444 9.85622 2 12 2ZM12 17C11.0335 17 10.25 17.7835 10.25 18.75C10.25 19.7165 11.0335 20.5 12 20.5C12.9665 20.5 13.75 19.7165 13.75 18.75C13.75 17.7835 12.9665 17 12 17Z\" fill=\"currentColor\"/>",
6530
+ "iconName": "cloud-api, cloud-network",
6531
6531
  "variant": {
6532
6532
  "join": "round",
6533
6533
  "filled": "on",
6534
6534
  "radius": "0",
6535
6535
  "stroke": "1.5"
6536
6536
  },
6537
- "createdAt": "2025-02-15T21:11:34.065631+00:00",
6537
+ "createdAt": "2026-01-09T16:01:07.432786+00:00",
6538
6538
  "packageName": "round-filled-radius-0-stroke-1.5",
6539
- "componentName": "IconCloud1"
6539
+ "componentName": "IconCloudApi"
6540
6540
  },
6541
6541
  {
6542
6542
  "category": "Clouds",
@@ -6692,6 +6692,20 @@
6692
6692
  "packageName": "round-filled-radius-0-stroke-1.5",
6693
6693
  "componentName": "IconCloudUpload"
6694
6694
  },
6695
+ {
6696
+ "category": "Weather",
6697
+ "svg": "<path d=\"M8.925 4C4.54081 4 1 7.58909 1 12C1 16.4109 4.54081 20 8.925 20H17.125C20.377 20 23 17.3383 23 14.0714C23 10.8045 20.377 8.14286 17.125 8.14286C16.7177 8.14286 16.3195 8.1848 15.9347 8.26476C14.6075 5.73199 11.9695 4 8.925 4Z\" fill=\"currentColor\"/>",
6698
+ "iconName": "cloud-weather, clouds",
6699
+ "variant": {
6700
+ "join": "round",
6701
+ "filled": "on",
6702
+ "radius": "0",
6703
+ "stroke": "1.5"
6704
+ },
6705
+ "createdAt": "2025-02-15T21:11:34.065631+00:00",
6706
+ "packageName": "round-filled-radius-0-stroke-1.5",
6707
+ "componentName": "IconCloudWeather"
6708
+ },
6695
6709
  {
6696
6710
  "category": "Weather",
6697
6711
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4903 6.28083C9.98427 6.16249 9.45738 6.1 8.91667 6.1C5.09289 6.1 2 9.21544 2 13.05C2 16.8846 5.09289 20 8.91667 20H16.625C19.5973 20 22 17.5785 22 14.6C22 12.6634 20.985 10.9643 19.4597 10.0113C19.7703 9.36765 19.9444 8.64529 19.9444 7.88333C19.9444 5.19016 17.7719 3 15.0833 3C12.9547 3 11.1501 4.37275 10.4903 6.28083ZM11.9046 6.78036C13.1377 7.3746 14.167 8.3245 14.8624 9.49725C15.4151 9.30459 16.0084 9.2 16.625 9.2C17.1313 9.2 17.622 9.27052 18.0876 9.40252C18.3159 8.94618 18.4444 8.43055 18.4444 7.88333C18.4444 6.01095 16.9358 4.5 15.0833 4.5C13.6134 4.5 12.3594 5.45154 11.9046 6.78036Z\" fill=\"currentColor\"/>",
@@ -11774,6 +11788,20 @@
11774
11788
  "packageName": "round-filled-radius-0-stroke-1.5",
11775
11789
  "componentName": "IconHandBell"
11776
11790
  },
11791
+ {
11792
+ "category": "Hands",
11793
+ "svg": "<path d=\"M10.9238 4.44454C8.55616 2.41939 4.9923 2.52465 2.75189 4.76485C0.548847 6.9679 0.389072 10.4658 2.46869 12.7082C5.30352 15.7646 8.3098 19.0922 11.5226 21.8464C11.7976 22.0821 12.2025 22.0822 12.4763 21.8452C14.9663 19.69 17.3301 17.0428 19.5878 14.7395L16.0306 11.1548C15.7379 10.8599 15.2613 10.859 14.9676 11.1529L14.3682 11.7529C12.6982 13.4229 9.99028 13.4229 8.32031 11.7529L7.56497 11.008C6.67598 10.1312 6.67096 8.69818 7.55379 7.81518L10.9238 4.44454ZM21.248 4.76485C18.8946 2.41171 15.0789 2.41172 12.7255 4.76485L8.61013 8.87938C8.31466 9.17479 8.31756 9.65471 8.61658 9.94652L9.38086 10.6924C10.465 11.7766 12.2234 11.7766 13.3076 10.6924L13.9043 10.0957C14.7848 9.21519 16.2131 9.21731 17.091 10.1004L20.6308 13.6613C20.9319 13.345 21.2339 13.0288 21.5312 12.7082C23.6108 10.4658 23.451 6.96789 21.248 4.76485Z\" fill=\"currentColor\"/>",
11794
+ "iconName": "handshake, heart",
11795
+ "variant": {
11796
+ "join": "round",
11797
+ "filled": "on",
11798
+ "radius": "0",
11799
+ "stroke": "1.5"
11800
+ },
11801
+ "createdAt": "2026-01-09T15:00:38.162674+00:00",
11802
+ "packageName": "round-filled-radius-0-stroke-1.5",
11803
+ "componentName": "IconHandshake"
11804
+ },
11777
11805
  {
11778
11806
  "category": "Devices & Signals",
11779
11807
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.30523 9.50117C3.86611 9.76669 3.33777 10 2.75 10C2.33579 10 2 9.66421 2 9.25C2 8.83579 2.33579 8.5 2.75 8.5C2.94339 8.5 3.19298 8.42081 3.52907 8.21758C3.86431 8.01487 4.20974 7.73714 4.6035 7.41762C4.61402 7.40908 4.62458 7.40051 4.63519 7.3919C5.00222 7.09399 5.41507 6.7589 5.8368 6.50087C6.26916 6.23634 6.79252 6 7.375 6C7.96055 6 8.4868 6.23456 8.9231 6.49968C9.35333 6.76112 9.77246 7.10128 10.1437 7.40254L10.1623 7.41763C10.5569 7.73789 10.9012 8.01573 11.2347 8.21876C11.5694 8.42254 11.814 8.5 12 8.5C12.1825 8.5 12.4248 8.42337 12.7589 8.21931C13.0916 8.01613 13.4353 7.73823 13.8304 7.41763L13.8429 7.40749C14.216 7.10467 14.6381 6.76215 15.0723 6.49914C15.5104 6.23375 16.038 6 16.625 6C17.2062 6 17.7284 6.23708 18.1592 6.50135C18.5775 6.75799 18.9878 7.09104 19.3531 7.38759L19.3901 7.41761C19.7835 7.73684 20.1294 8.01452 20.4654 8.21711C20.8021 8.42013 21.0537 8.5 21.25 8.5C21.6642 8.5 22 8.83579 22 9.25C22 9.66421 21.6642 10 21.25 10C20.661 10 20.1315 9.76737 19.6908 9.50164C19.2509 9.23638 18.8247 8.89051 18.4488 8.58549L18.445 8.58239C18.0493 8.26129 17.7063 7.98331 17.3747 7.7799C17.0415 7.57542 16.8025 7.5 16.625 7.5C16.4335 7.5 16.1852 7.57875 15.8495 7.78211C15.5147 7.98491 15.1695 8.26266 14.7756 8.58237L14.7473 8.60535C14.3791 8.90413 13.9647 9.24053 13.5408 9.49944C13.1074 9.76413 12.5833 10 12 10C11.4153 10 10.8898 9.76496 10.4546 9.49999C10.0267 9.23949 9.60936 8.90074 9.2393 8.6004L9.21708 8.58237C8.82269 8.26232 8.47811 7.9845 8.14415 7.78157C7.80905 7.57794 7.56305 7.5 7.375 7.5C7.19444 7.5 6.95344 7.57616 6.61965 7.78038C6.28742 7.98365 5.94399 8.26158 5.54867 8.58238L5.53954 8.58978C5.16532 8.89346 4.74163 9.23728 4.30523 9.50117ZM4.30523 17.5012C3.86611 17.7667 3.33777 18 2.75 18C2.33579 18 2 17.6642 2 17.25C2 16.8358 2.33579 16.5 2.75 16.5C2.94339 16.5 3.19298 16.4208 3.52907 16.2176C3.86431 16.0149 4.20974 15.7371 4.6035 15.4176L4.6352 15.3919C5.00223 15.094 5.41507 14.7589 5.8368 14.5009C6.26916 14.2363 6.79252 14 7.375 14C7.96055 14 8.4868 14.2346 8.9231 14.4997C9.35334 14.7611 9.77247 15.1013 10.1437 15.4025L10.1623 15.4176C10.5569 15.7379 10.9012 16.0157 11.2347 16.2188C11.5694 16.4225 11.814 16.5 12 16.5C12.1825 16.5 12.4248 16.4234 12.7589 16.2193C13.0916 16.0161 13.4353 15.7382 13.8304 15.4176L13.8429 15.4075C14.216 15.1047 14.6381 14.7622 15.0723 14.4991C15.5104 14.2337 16.038 14 16.625 14C17.2062 14 17.7284 14.2371 18.1592 14.5014C18.5775 14.758 18.9878 15.091 19.3531 15.3876C19.3655 15.3976 19.3778 15.4076 19.3901 15.4176C19.7835 15.7368 20.1294 16.0145 20.4654 16.2171C20.8021 16.4201 21.0537 16.5 21.25 16.5C21.6642 16.5 22 16.8358 22 17.25C22 17.6642 21.6642 18 21.25 18C20.661 18 20.1315 17.7674 19.6908 17.5016C19.2509 17.2364 18.8247 16.8905 18.4488 16.5855L18.445 16.5824C18.0493 16.2613 17.7063 15.9833 17.3747 15.7799C17.0415 15.5754 16.8025 15.5 16.625 15.5C16.4335 15.5 16.1852 15.5788 15.8495 15.7821C15.5147 15.9849 15.1695 16.2627 14.7756 16.5824L14.7472 16.6054C14.3791 16.9041 13.9647 17.2405 13.5408 17.4994C13.1074 17.7641 12.5833 18 12 18C11.4153 18 10.8898 17.765 10.4546 17.5C10.0267 17.2395 9.60936 16.9007 9.2393 16.6004L9.21708 16.5824C8.82269 16.2623 8.47811 15.9845 8.14415 15.7816C7.80905 15.5779 7.56305 15.5 7.375 15.5C7.19444 15.5 6.95344 15.5762 6.61965 15.7804C6.28742 15.9837 5.94399 16.2616 5.54867 16.5824L5.53955 16.5898C5.16533 16.8935 4.74164 17.2373 4.30523 17.5012Z\" fill=\"currentColor\"/>",
@@ -16100,6 +16128,20 @@
16100
16128
  "packageName": "round-filled-radius-0-stroke-1.5",
16101
16129
  "componentName": "IconPeopleGear"
16102
16130
  },
16131
+ {
16132
+ "category": "People",
16133
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.75 2C20.1642 2 20.5 2.33579 20.5 2.75V21.25C20.5 21.6642 20.1642 22 19.75 22H4.25C3.83579 22 3.5 21.6642 3.5 21.25V2.75C3.5 2.33579 3.83579 2 4.25 2H19.75ZM12 16.5C10.2077 16.5 8.00144 17.7222 7.5625 19.7705C7.47604 20.1753 7.82128 20.5156 8.23535 20.5156H15.7656C16.1795 20.5154 16.5239 20.1752 16.4375 19.7705C15.9986 17.7222 13.7922 16.5 12 16.5ZM12 10C10.6193 10 9.5 11.1193 9.5 12.5C9.5 13.8807 10.6193 15 12 15C13.3807 15 14.5 13.8807 14.5 12.5C14.5 11.1193 13.3807 10 12 10ZM9.75 4.5C9.33579 4.5 9 4.83579 9 5.25C9 5.66421 9.33579 6 9.75 6H14.25C14.6642 6 15 5.66421 15 5.25C15 4.83579 14.6642 4.5 14.25 4.5H9.75Z\" fill=\"currentColor\"/>",
16134
+ "iconName": "people-id-card, profile, user-account, badge, person",
16135
+ "variant": {
16136
+ "join": "round",
16137
+ "filled": "on",
16138
+ "radius": "0",
16139
+ "stroke": "1.5"
16140
+ },
16141
+ "createdAt": "2026-01-09T15:00:38.162674+00:00",
16142
+ "packageName": "round-filled-radius-0-stroke-1.5",
16143
+ "componentName": "IconPeopleIdCard"
16144
+ },
16103
16145
  {
16104
16146
  "category": "People",
16105
16147
  "svg": "<path d=\"M11.9999 1.94641C9.48499 1.94641 7.44629 3.98511 7.44629 6.49998C7.44629 9.01485 9.48499 11.0536 11.9999 11.0536C14.5147 11.0536 16.5534 9.01485 16.5534 6.49998C16.5534 3.98511 14.5147 1.94641 11.9999 1.94641Z\" fill=\"currentColor\"/><path d=\"M12 12.5C7.38412 12.5 4.15473 15.9097 3.7533 20.1798C3.73354 20.39 3.80328 20.5988 3.94541 20.7549C4.08754 20.911 4.28888 21 4.5 21H13.8331C13.1405 20.1863 12.5 19.0626 12.5 17.6667C12.5 16.4636 12.8853 15.3428 13.6728 14.5028C14.2421 13.8955 14.9595 13.5052 15.7176 13.3402C14.6268 12.8025 13.3749 12.5 12 12.5Z\" fill=\"currentColor\"/><path d=\"M18 22C17.3 22 14 20.2 14 17.6C14 15.7 15.3 14.7 16.6 14.7C17.2 14.7 17.7 14.9 18 15.1C18.3 14.9 18.8 14.7 19.4 14.7C20.7 14.7 22 15.7 22 17.6C22 20.2 18.7 22 18 22Z\" fill=\"currentColor\"/>",
package/icons/index.d.ts CHANGED
@@ -465,7 +465,7 @@ export type CentralIconName =
465
465
  | "IconCloseQuote1"
466
466
  | "IconCloseQuote2"
467
467
  | "IconCloud"
468
- | "IconCloud1"
468
+ | "IconCloudApi"
469
469
  | "IconCloudCheck"
470
470
  | "IconCloudDownload"
471
471
  | "IconCloudOff"
@@ -477,6 +477,7 @@ export type CentralIconName =
477
477
  | "IconCloudSnow"
478
478
  | "IconCloudSync"
479
479
  | "IconCloudUpload"
480
+ | "IconCloudWeather"
480
481
  | "IconCloudy"
481
482
  | "IconCloudySparkle"
482
483
  | "IconCloudySun"
@@ -840,6 +841,7 @@ export type CentralIconName =
840
841
  | "IconHand4Finger"
841
842
  | "IconHand5Finger"
842
843
  | "IconHandBell"
844
+ | "IconHandshake"
843
845
  | "IconHaptic"
844
846
  | "IconHashtag"
845
847
  | "IconHatBunny"
@@ -1149,6 +1151,7 @@ export type CentralIconName =
1149
1151
  | "IconPeopleCopy"
1150
1152
  | "IconPeopleEdit"
1151
1153
  | "IconPeopleGear"
1154
+ | "IconPeopleIdCard"
1152
1155
  | "IconPeopleLike"
1153
1156
  | "IconPeopleRemove"
1154
1157
  | "IconPeopleRemove2"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-0-stroke-1.5",
3
- "version": "1.1.87",
3
+ "version": "1.1.89",
4
4
  "style": "round-filled-radius-0-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-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": 1686,
14
+ "totalIcons": 1689,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 66,
@@ -273,9 +273,10 @@
273
273
  ]
274
274
  },
275
275
  "Clouds": {
276
- "count": 11,
276
+ "count": 12,
277
277
  "icons": [
278
278
  "IconCloud",
279
+ "IconCloudApi",
279
280
  "IconCloudCheck",
280
281
  "IconCloudDownload",
281
282
  "IconCloudOff",
@@ -814,12 +815,13 @@
814
815
  ]
815
816
  },
816
817
  "Hands": {
817
- "count": 19,
818
+ "count": 20,
818
819
  "icons": [
819
820
  "IconBlip",
820
821
  "IconFistbump",
821
822
  "IconHand4Finger",
822
823
  "IconHand5Finger",
824
+ "IconHandshake",
823
825
  "IconHumanMashine",
824
826
  "IconMagicHands",
825
827
  "IconMoneyHand",
@@ -1135,7 +1137,7 @@
1135
1137
  ]
1136
1138
  },
1137
1139
  "People": {
1138
- "count": 38,
1140
+ "count": 39,
1139
1141
  "icons": [
1140
1142
  "IconAura",
1141
1143
  "IconBathMan1",
@@ -1160,6 +1162,7 @@
1160
1162
  "IconPeopleCopy",
1161
1163
  "IconPeopleEdit",
1162
1164
  "IconPeopleGear",
1165
+ "IconPeopleIdCard",
1163
1166
  "IconPeopleLike",
1164
1167
  "IconPeopleRemove",
1165
1168
  "IconPeopleRemove2",
@@ -1858,8 +1861,8 @@
1858
1861
  "Weather": {
1859
1862
  "count": 19,
1860
1863
  "icons": [
1861
- "IconCloud1",
1862
1864
  "IconCloudSnow",
1865
+ "IconCloudWeather",
1863
1866
  "IconCloudy",
1864
1867
  "IconCloudySun",
1865
1868
  "IconDrop",
@@ -2346,8 +2349,8 @@
2346
2349
  "IconClosedCaptioning": "closed-captioning, cc",
2347
2350
  "IconCloseQuote1": "close-quote-1, blockquote",
2348
2351
  "IconCloseQuote2": "close-quote-2, blockquote",
2349
- "IconCloud": "cloud-",
2350
- "IconCloud1": "cloud, clouds",
2352
+ "IconCloud": "cloud",
2353
+ "IconCloudApi": "cloud-api, cloud-network",
2351
2354
  "IconCloudCheck": "cloud-check, save",
2352
2355
  "IconCloudDownload": "cloud-download",
2353
2356
  "IconCloudOff": "cloud-off, offline",
@@ -2359,6 +2362,7 @@
2359
2362
  "IconCloudSnow": "cloud-snow",
2360
2363
  "IconCloudSync": "cloud-sync",
2361
2364
  "IconCloudUpload": "cloud-upload",
2365
+ "IconCloudWeather": "cloud-weather, clouds",
2362
2366
  "IconCloudy": "cloudy, clouds",
2363
2367
  "IconCloudySparkle": "cloudy-sparkle, clouds",
2364
2368
  "IconCloudySun": "cloudy-sun, clouds",
@@ -2722,6 +2726,7 @@
2722
2726
  "IconHand4Finger": "hand-4-finger, select",
2723
2727
  "IconHand5Finger": "hand-5-finger, select",
2724
2728
  "IconHandBell": "hand-bell",
2729
+ "IconHandshake": "handshake, heart",
2725
2730
  "IconHaptic": "haptic, waves",
2726
2731
  "IconHashtag": "hashtag, #",
2727
2732
  "IconHatBunny": "hat-bunny, surprise, magic hat",
@@ -3031,6 +3036,7 @@
3031
3036
  "IconPeopleCopy": "people-copy, members",
3032
3037
  "IconPeopleEdit": "people-edit, edit-user, edit-rights, user-rights",
3033
3038
  "IconPeopleGear": "people-gear, user-settings, preferences, person",
3039
+ "IconPeopleIdCard": "people-id-card, profile, user-account, badge, person",
3034
3040
  "IconPeopleLike": "people-like, inner circle",
3035
3041
  "IconPeopleRemove": "people-remove, user-remove",
3036
3042
  "IconPeopleRemove2": "people-remove-2",
package/index.d.ts CHANGED
@@ -464,7 +464,7 @@ export { IconCloseQuote1, default as IconCloseQuote1Default, } from "./IconClose
464
464
  export { IconCloseQuote2, default as IconCloseQuote2Default, } from "./IconCloseQuote2";
465
465
  export { IconClosedCaptioning, default as IconClosedCaptioningDefault, } from "./IconClosedCaptioning";
466
466
  export { IconCloud, default as IconCloudDefault } from "./IconCloud";
467
- export { IconCloud1, default as IconCloud1Default } from "./IconCloud1";
467
+ export { IconCloudApi, default as IconCloudApiDefault } from "./IconCloudApi";
468
468
  export { IconCloudCheck, default as IconCloudCheckDefault, } from "./IconCloudCheck";
469
469
  export { IconCloudDownload, default as IconCloudDownloadDefault, } from "./IconCloudDownload";
470
470
  export { IconCloudOff, default as IconCloudOffDefault } from "./IconCloudOff";
@@ -476,6 +476,7 @@ export { IconCloudSimpleUpload, default as IconCloudSimpleUploadDefault, } from
476
476
  export { IconCloudSnow, default as IconCloudSnowDefault, } from "./IconCloudSnow";
477
477
  export { IconCloudSync, default as IconCloudSyncDefault, } from "./IconCloudSync";
478
478
  export { IconCloudUpload, default as IconCloudUploadDefault, } from "./IconCloudUpload";
479
+ export { IconCloudWeather, default as IconCloudWeatherDefault, } from "./IconCloudWeather";
479
480
  export { IconCloudy, default as IconCloudyDefault } from "./IconCloudy";
480
481
  export { IconCloudySparkle, default as IconCloudySparkleDefault, } from "./IconCloudySparkle";
481
482
  export { IconCloudySun, default as IconCloudySunDefault, } from "./IconCloudySun";
@@ -839,6 +840,7 @@ export { IconHammer, default as IconHammerDefault } from "./IconHammer";
839
840
  export { IconHand4Finger, default as IconHand4FingerDefault, } from "./IconHand4Finger";
840
841
  export { IconHand5Finger, default as IconHand5FingerDefault, } from "./IconHand5Finger";
841
842
  export { IconHandBell, default as IconHandBellDefault } from "./IconHandBell";
843
+ export { IconHandshake, default as IconHandshakeDefault, } from "./IconHandshake";
842
844
  export { IconHaptic, default as IconHapticDefault } from "./IconHaptic";
843
845
  export { IconHashtag, default as IconHashtagDefault } from "./IconHashtag";
844
846
  export { IconHatBunny, default as IconHatBunnyDefault } from "./IconHatBunny";
@@ -1148,6 +1150,7 @@ export { IconPeopleCircle, default as IconPeopleCircleDefault, } from "./IconPeo
1148
1150
  export { IconPeopleCopy, default as IconPeopleCopyDefault, } from "./IconPeopleCopy";
1149
1151
  export { IconPeopleEdit, default as IconPeopleEditDefault, } from "./IconPeopleEdit";
1150
1152
  export { IconPeopleGear, default as IconPeopleGearDefault, } from "./IconPeopleGear";
1153
+ export { IconPeopleIdCard, default as IconPeopleIdCardDefault, } from "./IconPeopleIdCard";
1151
1154
  export { IconPeopleLike, default as IconPeopleLikeDefault, } from "./IconPeopleLike";
1152
1155
  export { IconPeopleRemove, default as IconPeopleRemoveDefault, } from "./IconPeopleRemove";
1153
1156
  export { IconPeopleRemove2, default as IconPeopleRemove2Default, } from "./IconPeopleRemove2";