@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.86 → 1.1.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{IconCloud1 → IconBlocks}/index.d.ts +2 -2
- package/IconBlocks/index.js +2 -0
- package/IconBlocks/index.js.map +1 -0
- package/IconBlocks/index.mjs +2 -0
- package/IconBlocks/index.mjs.map +1 -0
- package/IconCloudWeather/index.d.ts +4 -0
- package/IconCloudWeather/index.js +2 -0
- package/IconCloudWeather/index.js.map +1 -0
- package/{IconCloud1 → IconCloudWeather}/index.mjs +1 -1
- package/IconCloudWeather/index.mjs.map +1 -0
- package/IconFolderShield/index.d.ts +4 -0
- package/IconFolderShield/index.js +2 -0
- package/IconFolderShield/index.js.map +1 -0
- package/IconFolderShield/index.mjs +2 -0
- package/IconFolderShield/index.mjs.map +1 -0
- package/IconHandshake/index.d.ts +4 -0
- package/IconHandshake/index.js +2 -0
- package/IconHandshake/index.js.map +1 -0
- package/IconHandshake/index.mjs +2 -0
- package/IconHandshake/index.mjs.map +1 -0
- package/IconMarker2/index.d.ts +4 -0
- package/IconMarker2/index.js +2 -0
- package/IconMarker2/index.js.map +1 -0
- package/IconMarker2/index.mjs +2 -0
- package/IconMarker2/index.mjs.map +1 -0
- package/IconMoveFolder/index.d.ts +4 -0
- package/IconMoveFolder/index.js +2 -0
- package/IconMoveFolder/index.js.map +1 -0
- package/IconMoveFolder/index.mjs +2 -0
- package/IconMoveFolder/index.mjs.map +1 -0
- package/IconPeopleIdCard/index.d.ts +4 -0
- package/IconPeopleIdCard/index.js +2 -0
- package/IconPeopleIdCard/index.js.map +1 -0
- package/IconPeopleIdCard/index.mjs +2 -0
- package/IconPeopleIdCard/index.mjs.map +1 -0
- package/README.md +7 -1
- package/filtered-icons.json +98 -14
- package/icons/index.d.ts +7 -1
- package/icons-index.json +21 -9
- package/index.d.ts +7 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +49 -7
- package/IconCloud1/index.js +0 -2
- package/IconCloud1/index.js.map +0 -1
- package/IconCloud1/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconBlocks: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconBlocks;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(a=I(o,e))||a.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(P(r)):{},l(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),H=r=>l(n({},"__esModule",{value:!0}),r);var v={};i(v,{IconBlocks:()=>B,default:()=>V});module.exports=H(v);var p=m(require("react"));var C=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>C.default.createElement(c.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 s=require("react-native-svg"),B=r=>p.default.createElement(f,{...r},p.default.createElement(s.Path,{d:"M10.5 20.5V6.5H3.5V13.5M10.5 20.5H17.5V13.5H3.5M10.5 20.5H3.5V13.5",stroke:"currentColor"}),p.default.createElement(s.Path,{d:"M20.5 3.5H13.5V10.5H20.5V3.5Z",stroke:"currentColor"})),V=B;0&&(module.exports={IconBlocks});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBlocks/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 IconBlocks: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 20.5V6.5H3.5V13.5M10.5 20.5H17.5V13.5H3.5M10.5 20.5H3.5V13.5\"\n stroke=\"currentColor\"\n />\n <Path d=\"M20.5 3.5H13.5V10.5H20.5V3.5Z\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBlocks;\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,EAAE,qEACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,gCAAgC,OAAO,eAAe,CAChE,EAIGE,EAAQJ","names":["IconBlocks_exports","__export","IconBlocks","IconBlocks_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBlocks","props","React","CentralIconBase","IconBlocks_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import s from"react";import{Svg as a}from"react-native-svg";var e=({children:o,size:r=24,...p})=>s.createElement(a,{...p,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 n}from"react-native-svg";var l=o=>t.createElement(e,{...o},t.createElement(n,{d:"M10.5 20.5V6.5H3.5V13.5M10.5 20.5H17.5V13.5H3.5M10.5 20.5H3.5V13.5",stroke:"currentColor"}),t.createElement(n,{d:"M20.5 3.5H13.5V10.5H20.5V3.5Z",stroke:"currentColor"})),g=l;export{l as IconBlocks,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconBlocks/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 IconBlocks: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M10.5 20.5V6.5H3.5V13.5M10.5 20.5H17.5V13.5H3.5M10.5 20.5H3.5V13.5\"\n stroke=\"currentColor\"\n />\n <Path d=\"M20.5 3.5H13.5V10.5H20.5V3.5Z\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBlocks;\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,EAAE,qEACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,gCAAgC,OAAO,eAAe,CAChE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBlocks","props","React","CentralIconBase","IconBlocks_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(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 x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=I(o,e))||C.enumerable});return r};var m=(r,o,t)=>(t=r!=null?B(P(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={};i(d,{IconCloudWeather:()=>u,default:()=>v});module.exports=h(d);var p=m(require("react"));var s=m(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>s.default.createElement(l.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),u=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z",stroke:"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=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\"\n stroke=\"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,8PACF,OAAO,eACT,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 m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z",stroke:"currentColor"})),g=m;export{m as
|
|
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 m=o=>e.createElement(t,{...o},e.createElement(a,{d:"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z",stroke:"currentColor"})),g=m;export{m as IconCloudWeather,g 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=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\"\n stroke=\"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,8PACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCloudWeather","props","React","CentralIconBase","IconCloudWeather_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=B(o,t))||s.enumerable});return r};var l=(r,o,e)=>(e=r!=null?i(x(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>C(n({},"__esModule",{value:!0}),r);var h={};d(h,{IconFolderShield:()=>u,default:()=>L});module.exports=g(h);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var a=require("react-native-svg"),u=r=>p.default.createElement(f,{...r},p.default.createElement(a.Path,{d:"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M19 12L15.5 13.5V16.3624C15.5 17.9625 16.4536 19.4087 17.9243 20.039L19 20.5L20.0757 20.039C21.5464 19.4087 22.5 17.9625 22.5 16.3624V13.5L19 12Z",stroke:"currentColor"})),L=u;0&&(module.exports={IconFolderShield});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolderShield/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 IconFolderShield: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M19 12L15.5 13.5V16.3624C15.5 17.9625 16.4536 19.4087 17.9243 20.039L19 20.5L20.0757 20.039C21.5464 19.4087 22.5 17.9625 22.5 16.3624V13.5L19 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolderShield;\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,wCACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oJACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconFolderShield_exports","__export","IconFolderShield","IconFolderShield_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconFolderShield","props","React","CentralIconBase","IconFolderShield_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import a from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>a.createElement(s,{...p,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 n}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(n,{d:"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V9.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M19 12L15.5 13.5V16.3624C15.5 17.9625 16.4536 19.4087 17.9243 20.039L19 20.5L20.0757 20.039C21.5464 19.4087 22.5 17.9625 22.5 16.3624V13.5L19 12Z",stroke:"currentColor"})),P=C;export{C as IconFolderShield,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFolderShield/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 IconFolderShield: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M19 12L15.5 13.5V16.3624C15.5 17.9625 16.4536 19.4087 17.9243 20.039L19 20.5L20.0757 20.039C21.5464 19.4087 22.5 17.9625 22.5 16.3624V13.5L19 12Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFolderShield;\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,wCACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oJACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconFolderShield","props","React","CentralIconBase","IconFolderShield_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(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 x(o))!g.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(C=u(o,e))||C.enumerable});return r};var s=(r,o,t)=>(t=r!=null?I(P(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={};i(d,{IconHandshake:()=>B,default:()=>v});module.exports=h(d);var p=s(require("react"));var m=s(require("react")),l=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(l.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var f=require("react-native-svg"),B=r=>p.default.createElement(c,{...r},p.default.createElement(f.Path,{d:"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5",stroke:"currentColor"})),v=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=\"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5\"\n stroke=\"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,yZACF,OAAO,eACT,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 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 s=o=>e.createElement(t,{...o},e.createElement(a,{d:"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5",stroke:"currentColor"})),g=s;export{s as IconHandshake,g 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=\"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5\"\n stroke=\"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,yZACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconHandshake","props","React","CentralIconBase","IconHandshake_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},m=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=i(o,t))||s.enumerable});return r};var C=(r,o,e)=>(e=r!=null?f(I(r)):{},m(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>m(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconMarker2:()=>L,default:()=>k});module.exports=g(v);var p=C(require("react"));var c=C(require("react")),l=require("react-native-svg"),u=({children:r,size:o=24,...e})=>c.default.createElement(l.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var a=require("react-native-svg"),L=r=>p.default.createElement(u,{...r},p.default.createElement(a.Path,{d:"M20.5 12.5L17.5 9.5L13.5 8.5L7.5 14.5L8.5 18.5L11.5 21.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(a.Path,{d:"M8 14L5 11L6.5 2.5L13 9",stroke:"currentColor",strokeLinecap:"square"})),k=L;0&&(module.exports={IconMarker2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarker2/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 IconMarker2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.5 12.5L17.5 9.5L13.5 8.5L7.5 14.5L8.5 18.5L11.5 21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M8 14L5 11L6.5 2.5L13 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarker2;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2DACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconMarker2_exports","__export","IconMarker2","IconMarker2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMarker2","props","React","CentralIconBase","IconMarker2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import a from"react";import{Svg as s}from"react-native-svg";var t=({children:o,size:r=24,...p})=>a.createElement(s,{...p,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 n}from"react-native-svg";var m=o=>e.createElement(t,{...o},e.createElement(n,{d:"M20.5 12.5L17.5 9.5L13.5 8.5L7.5 14.5L8.5 18.5L11.5 21.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M8 14L5 11L6.5 2.5L13 9",stroke:"currentColor",strokeLinecap:"square"})),x=m;export{m as IconMarker2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarker2/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 IconMarker2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M20.5 12.5L17.5 9.5L13.5 8.5L7.5 14.5L8.5 18.5L11.5 21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M8 14L5 11L6.5 2.5L13 9\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarker2;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2DACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0BACF,OAAO,eACP,cAAc,SAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMarker2","props","React","CentralIconBase","IconMarker2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var p=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!P.call(r,t)&&t!==e&&p(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?i(x(r)):{},l(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>l(p({},"__esModule",{value:!0}),r);var k={};d(k,{IconMoveFolder:()=>f,default:()=>v});module.exports=g(k);var n=C(require("react"));var m=C(require("react")),c=require("react-native-svg"),u=({children:r,size:o=24,...e})=>m.default.createElement(c.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),f=r=>n.default.createElement(u,{...r},n.default.createElement(s.Path,{d:"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V11.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M15.5 17.5H18.5H21.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement(s.Path,{d:"M19.5 14.5L22.5 17.5L19.5 20.5",stroke:"currentColor"})),v=f;0&&(module.exports={IconMoveFolder});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMoveFolder/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 IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.5 17.5H18.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M19.5 14.5L22.5 17.5L19.5 20.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconMoveFolder;\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,oBAAAE,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,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yCACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iCAAiC,OAAO,eAAe,CACjE,EAIGE,EAAQJ","names":["IconMoveFolder_exports","__export","IconMoveFolder","IconMoveFolder_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconMoveFolder","props","React","CentralIconBase","IconMoveFolder_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as a}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(a,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V11.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(t,{d:"M15.5 17.5H18.5H21.5",stroke:"currentColor",strokeLinecap:"square"}),o.createElement(t,{d:"M19.5 14.5L22.5 17.5L19.5 20.5",stroke:"currentColor"})),P=l;export{l as IconMoveFolder,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMoveFolder/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 IconMoveFolder: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V11.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M15.5 17.5H18.5H21.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path d=\"M19.5 14.5L22.5 17.5L19.5 20.5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconMoveFolder;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yCACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uBACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,iCAAiC,OAAO,eAAe,CACjE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconMoveFolder","props","React","CentralIconBase","IconMoveFolder_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var I=Object.create;var C=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of B(o))!d.call(r,p)&&p!==e&&C(r,p,{get:()=>o[p],enumerable:!(l=x(o,p))||l.enumerable});return r};var a=(r,o,e)=>(e=r!=null?I(P(r)):{},s(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(C({},"__esModule",{value:!0}),r);var y={};i(y,{IconPeopleIdCard:()=>f,default:()=>v});module.exports=g(y);var t=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),u=({children:r,size:o=24,...e})=>c.default.createElement(m.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),f=r=>t.default.createElement(u,{...r},t.default.createElement(n.Path,{d:"M19.5 2.5H4.5V21.5H19.5V2.5Z",stroke:"currentColor"}),t.default.createElement(n.Circle,{cx:"12",cy:"11.5",r:"2.5",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M9 5.5H15",stroke:"currentColor"})),v=f;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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconPeopleIdCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M19.5 2.5H4.5V21.5H19.5V2.5Z\" stroke=\"currentColor\" />\n <Circle cx=\"12\" cy=\"11.5\" r=\"2.5\" stroke=\"currentColor\" />\n <Path\n d=\"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21\"\n stroke=\"currentColor\"\n />\n <Path d=\"M9 5.5H15\" stroke=\"currentColor\" />\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,EAA6B,4BAEhBC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,MAAM,OAAO,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,+DACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,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 o from"react";import C from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...p})=>C.createElement(l,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Circle as s,Path as t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{d:"M19.5 2.5H4.5V21.5H19.5V2.5Z",stroke:"currentColor"}),o.createElement(s,{cx:"12",cy:"11.5",r:"2.5",stroke:"currentColor"}),o.createElement(t,{d:"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21",stroke:"currentColor"}),o.createElement(t,{d:"M9 5.5H15",stroke:"currentColor"})),i=a;export{a as IconPeopleIdCard,i 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconPeopleIdCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path d=\"M19.5 2.5H4.5V21.5H19.5V2.5Z\" stroke=\"currentColor\" />\n <Circle cx=\"12\" cy=\"11.5\" r=\"2.5\" stroke=\"currentColor\" />\n <Path\n d=\"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21\"\n stroke=\"currentColor\"\n />\n <Path d=\"M9 5.5H15\" stroke=\"currentColor\" />\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DG,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,OAAO,EAAE,MAAM,OAAO,eAAe,EACxDI,EAAA,cAACH,EAAA,CACC,EAAE,+DACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconPeopleIdCard","props","React","CentralIconBase","IconPeopleIdCard_default"]}
|
package/README.md
CHANGED
|
@@ -655,6 +655,7 @@ Below is a complete list of available icons:
|
|
|
655
655
|
- IconMagnet
|
|
656
656
|
- IconMarkdown
|
|
657
657
|
- IconMarker
|
|
658
|
+
- IconMarker2
|
|
658
659
|
- IconMarkerCircle
|
|
659
660
|
- IconMarkup
|
|
660
661
|
- IconPaintBrush
|
|
@@ -776,9 +777,11 @@ Below is a complete list of available icons:
|
|
|
776
777
|
- IconFolderRestricted
|
|
777
778
|
- IconFolders
|
|
778
779
|
- IconFolderShared
|
|
780
|
+
- IconFolderShield
|
|
779
781
|
- IconFolderUpload
|
|
780
782
|
- IconLibrary
|
|
781
783
|
- IconListBullets
|
|
784
|
+
- IconMoveFolder
|
|
782
785
|
- IconNote1
|
|
783
786
|
- IconNote2
|
|
784
787
|
- IconNotebook
|
|
@@ -913,6 +916,7 @@ Below is a complete list of available icons:
|
|
|
913
916
|
- IconFistbump
|
|
914
917
|
- IconHand4Finger
|
|
915
918
|
- IconHand5Finger
|
|
919
|
+
- IconHandshake
|
|
916
920
|
- IconHumanMashine
|
|
917
921
|
- IconMagicHands
|
|
918
922
|
- IconMoneyHand
|
|
@@ -1241,6 +1245,7 @@ Below is a complete list of available icons:
|
|
|
1241
1245
|
- IconPeopleCopy
|
|
1242
1246
|
- IconPeopleEdit
|
|
1243
1247
|
- IconPeopleGear
|
|
1248
|
+
- IconPeopleIdCard
|
|
1244
1249
|
- IconPeopleLike
|
|
1245
1250
|
- IconPeopleRemove
|
|
1246
1251
|
- IconPeopleRemove2
|
|
@@ -1671,6 +1676,7 @@ Below is a complete list of available icons:
|
|
|
1671
1676
|
- IconBean
|
|
1672
1677
|
- IconBee
|
|
1673
1678
|
- IconBlackHole
|
|
1679
|
+
- IconBlocks
|
|
1674
1680
|
- IconBomb
|
|
1675
1681
|
- IconBooks
|
|
1676
1682
|
- IconBronceMedal
|
|
@@ -1914,8 +1920,8 @@ Below is a complete list of available icons:
|
|
|
1914
1920
|
|
|
1915
1921
|
### Weather
|
|
1916
1922
|
|
|
1917
|
-
- IconCloud1
|
|
1918
1923
|
- IconCloudSnow
|
|
1924
|
+
- IconCloudWeather
|
|
1919
1925
|
- IconCloudy
|
|
1920
1926
|
- IconCloudySun
|
|
1921
1927
|
- IconDrop
|
package/filtered-icons.json
CHANGED
|
@@ -3206,6 +3206,20 @@
|
|
|
3206
3206
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3207
3207
|
"componentName": "IconBlock"
|
|
3208
3208
|
},
|
|
3209
|
+
{
|
|
3210
|
+
"category": "Things",
|
|
3211
|
+
"svg": "<path d=\"M10.5 20.5V6.5H3.5V13.5M10.5 20.5H17.5V13.5H3.5M10.5 20.5H3.5V13.5\" stroke=\"currentColor\"/><path d=\"M20.5 3.5H13.5V10.5H20.5V3.5Z\" stroke=\"currentColor\"/>",
|
|
3212
|
+
"iconName": "blocks, integration, apps",
|
|
3213
|
+
"variant": {
|
|
3214
|
+
"join": "square",
|
|
3215
|
+
"filled": "off",
|
|
3216
|
+
"radius": "0",
|
|
3217
|
+
"stroke": "1"
|
|
3218
|
+
},
|
|
3219
|
+
"createdAt": "2026-01-09T12:01:13.575765+00:00",
|
|
3220
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3221
|
+
"componentName": "IconBlocks"
|
|
3222
|
+
},
|
|
3209
3223
|
{
|
|
3210
3224
|
"category": "Filter & Settings",
|
|
3211
3225
|
"svg": "<path d=\"M10.5 3.5H3.5V10.5H10.5V3.5Z\" stroke=\"currentColor\"/><path d=\"M10.5 13.5H3.5V20.5H10.5V13.5Z\" stroke=\"currentColor\"/><path d=\"M17.5 18V7\" stroke=\"currentColor\"/><path d=\"M13 11L17.5 6.5L22 11\" stroke=\"currentColor\"/>",
|
|
@@ -6510,20 +6524,6 @@
|
|
|
6510
6524
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
6511
6525
|
"componentName": "IconCloud"
|
|
6512
6526
|
},
|
|
6513
|
-
{
|
|
6514
|
-
"category": "Weather",
|
|
6515
|
-
"svg": "<path d=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\" stroke=\"currentColor\"/>",
|
|
6516
|
-
"iconName": "cloud, clouds",
|
|
6517
|
-
"variant": {
|
|
6518
|
-
"join": "square",
|
|
6519
|
-
"filled": "off",
|
|
6520
|
-
"radius": "0",
|
|
6521
|
-
"stroke": "1"
|
|
6522
|
-
},
|
|
6523
|
-
"createdAt": "2025-02-15T21:11:34.065631+00:00",
|
|
6524
|
-
"packageName": "square-outlined-radius-0-stroke-1",
|
|
6525
|
-
"componentName": "IconCloud1"
|
|
6526
|
-
},
|
|
6527
6527
|
{
|
|
6528
6528
|
"category": "Clouds",
|
|
6529
6529
|
"svg": "<path d=\"M4.79793 19.14C2.86509 18.3483 1.5 16.4159 1.5 14.1577C1.5 11.4399 3.47732 9.19405 6.04196 8.8407C6.89331 6.31478 9.23929 4.5 12 4.5C14.7607 4.5 17.1067 6.31478 17.958 8.8407C20.5227 9.19405 22.5 11.4399 22.5 14.1577C22.5 16.4159 21.1349 18.3483 19.2021 19.14\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.5 17L11.1667 20L16.5 14\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -6678,6 +6678,20 @@
|
|
|
6678
6678
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
6679
6679
|
"componentName": "IconCloudUpload"
|
|
6680
6680
|
},
|
|
6681
|
+
{
|
|
6682
|
+
"category": "Weather",
|
|
6683
|
+
"svg": "<path d=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\" stroke=\"currentColor\"/>",
|
|
6684
|
+
"iconName": "cloud-weather, clouds",
|
|
6685
|
+
"variant": {
|
|
6686
|
+
"join": "square",
|
|
6687
|
+
"filled": "off",
|
|
6688
|
+
"radius": "0",
|
|
6689
|
+
"stroke": "1"
|
|
6690
|
+
},
|
|
6691
|
+
"createdAt": "2025-02-15T21:11:34.065631+00:00",
|
|
6692
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
6693
|
+
"componentName": "IconCloudWeather"
|
|
6694
|
+
},
|
|
6681
6695
|
{
|
|
6682
6696
|
"category": "Weather",
|
|
6683
6697
|
"svg": "<path d=\"M18.765 10C19.1607 9.35037 19.3889 8.58545 19.3889 7.76667C19.3889 5.41025 17.4985 3.5 15.1667 3.5C13.1613 3.5 11.4824 4.91281 11.0516 6.80719M8.83333 19.5C5.33553 19.5 2.5 16.6346 2.5 13.1C2.5 9.56538 5.33553 6.7 8.83333 6.7C9.59371 6.7 10.3228 6.83541 10.9983 7.08367C12.5904 7.66884 13.8846 8.88099 14.5884 10.4247C15.2368 10.0892 15.9715 9.9 16.75 9.9C17.4006 9.9 18.0206 10.0322 18.5852 10.2714C20.2973 10.9967 21.5 12.7064 21.5 14.7C21.5 17.351 19.3734 19.5 16.75 19.5H8.83333Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -10682,6 +10696,20 @@
|
|
|
10682
10696
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
10683
10697
|
"componentName": "IconFolderShared"
|
|
10684
10698
|
},
|
|
10699
|
+
{
|
|
10700
|
+
"category": "Folders & Files",
|
|
10701
|
+
"svg": "<path d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V9.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19 12L15.5 13.5V16.3624C15.5 17.9625 16.4536 19.4087 17.9243 20.039L19 20.5L20.0757 20.039C21.5464 19.4087 22.5 17.9625 22.5 16.3624V13.5L19 12Z\" stroke=\"currentColor\"/>",
|
|
10702
|
+
"iconName": "folder-shield, folder-security",
|
|
10703
|
+
"variant": {
|
|
10704
|
+
"join": "square",
|
|
10705
|
+
"filled": "off",
|
|
10706
|
+
"radius": "0",
|
|
10707
|
+
"stroke": "1"
|
|
10708
|
+
},
|
|
10709
|
+
"createdAt": "2026-01-09T12:01:13.575765+00:00",
|
|
10710
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
10711
|
+
"componentName": "IconFolderShield"
|
|
10712
|
+
},
|
|
10685
10713
|
{
|
|
10686
10714
|
"category": "AI & Magic",
|
|
10687
10715
|
"svg": "<path d=\"M2.5 10.5V3.5H10L12 6.5H21.5V19.5H11.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M5.4 13H4.6L3.6 15.6L1 16.6V17.4L3.6 18.4L4.6 21H5.4L6.4 18.4L9 17.4V16.6L6.4 15.6L5.4 13Z\" fill=\"currentColor\"/>",
|
|
@@ -11746,6 +11774,20 @@
|
|
|
11746
11774
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
11747
11775
|
"componentName": "IconHandBell"
|
|
11748
11776
|
},
|
|
11777
|
+
{
|
|
11778
|
+
"category": "Hands",
|
|
11779
|
+
"svg": "<path d=\"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5\" stroke=\"currentColor\"/>",
|
|
11780
|
+
"iconName": "handshake, heart",
|
|
11781
|
+
"variant": {
|
|
11782
|
+
"join": "square",
|
|
11783
|
+
"filled": "off",
|
|
11784
|
+
"radius": "0",
|
|
11785
|
+
"stroke": "1"
|
|
11786
|
+
},
|
|
11787
|
+
"createdAt": "2026-01-09T15:00:38.162674+00:00",
|
|
11788
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
11789
|
+
"componentName": "IconHandshake"
|
|
11790
|
+
},
|
|
11749
11791
|
{
|
|
11750
11792
|
"category": "Devices & Signals",
|
|
11751
11793
|
"svg": "<path d=\"M2.5 9.5C4.10453 9.5 5.68267 6.5 7.25 6.5C8.83902 6.5 10.4169 9.5 12 9.5C13.5729 9.5 15.151 6.5 16.75 6.5C18.3085 6.5 19.8869 9.5 21.5 9.5M2.5 17.5C4.10453 17.5 5.68267 14.5 7.25 14.5C8.83902 14.5 10.4169 17.5 12 17.5C13.5729 17.5 15.151 14.5 16.75 14.5C18.3085 14.5 19.8869 17.5 21.5 17.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -13930,6 +13972,20 @@
|
|
|
13930
13972
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
13931
13973
|
"componentName": "IconMarker"
|
|
13932
13974
|
},
|
|
13975
|
+
{
|
|
13976
|
+
"category": "Edit",
|
|
13977
|
+
"svg": "<path d=\"M20.5 12.5L17.5 9.5L13.5 8.5L7.5 14.5L8.5 18.5L11.5 21.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8 14L5 11L6.5 2.5L13 9\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
13978
|
+
"iconName": "marker-2, highlight",
|
|
13979
|
+
"variant": {
|
|
13980
|
+
"join": "square",
|
|
13981
|
+
"filled": "off",
|
|
13982
|
+
"radius": "0",
|
|
13983
|
+
"stroke": "1"
|
|
13984
|
+
},
|
|
13985
|
+
"createdAt": "2026-01-09T12:01:13.575765+00:00",
|
|
13986
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
13987
|
+
"componentName": "IconMarker2"
|
|
13988
|
+
},
|
|
13933
13989
|
{
|
|
13934
13990
|
"category": "Edit",
|
|
13935
13991
|
"svg": "<path d=\"M12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M5.5 18.5C7.5 17.5 7.5 14.5 7.5 14.5H16.5C16.5 14.5 16.5 17.5 18.5 18.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.5 14.25V9.5L15.5 8V14.25\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -14546,6 +14602,20 @@
|
|
|
14546
14602
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
14547
14603
|
"componentName": "IconMouth"
|
|
14548
14604
|
},
|
|
14605
|
+
{
|
|
14606
|
+
"category": "Folders & Files",
|
|
14607
|
+
"svg": "<path d=\"M12.5 19.5H2.5V3.5H10L12 6.5H21.5V11.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M15.5 17.5H18.5H21.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M19.5 14.5L22.5 17.5L19.5 20.5\" stroke=\"currentColor\"/>",
|
|
14608
|
+
"iconName": "move-folder",
|
|
14609
|
+
"variant": {
|
|
14610
|
+
"join": "square",
|
|
14611
|
+
"filled": "off",
|
|
14612
|
+
"radius": "0",
|
|
14613
|
+
"stroke": "1"
|
|
14614
|
+
},
|
|
14615
|
+
"createdAt": "2026-01-09T12:01:13.575765+00:00",
|
|
14616
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
14617
|
+
"componentName": "IconMoveFolder"
|
|
14618
|
+
},
|
|
14549
14619
|
{
|
|
14550
14620
|
"category": "Photography & Video",
|
|
14551
14621
|
"svg": "<path d=\"M2.5 2.5V2H2V2.5H2.5ZM15.5 2.5H16V2H15.5V2.5ZM15 8.5V9H16V8.5H15ZM2.5 15.5H2V16H2.5V15.5ZM8.5 16H9V15H8.5V16ZM8.5 8.5V8H8V8.5H8.5ZM21.5 8.5H22V8H21.5V8.5ZM8.5 21.5H8V22H8.5V21.5ZM21.5 21.5V22H22V21.5H21.5ZM6 10L6.25725 9.57125L5.97614 9.40259L5.70938 9.59313L6 10ZM5.625 5.25H5.125V6.25H5.625V5.25ZM13.5 12.5L13.7906 12.0931L13 11.5284V12.5H13.5ZM13.5 17.5H13V18.4716L13.7906 17.9069L13.5 17.5ZM17 15L17.2906 15.4069L17.8602 15L17.2906 14.5931L17 15ZM2.5 3H15.5V2H2.5V3ZM15 2.5V8.5H16V2.5H15ZM2 2.5V15.5H3V2.5H2ZM2.5 16H8.5V15H2.5V16ZM8.5 9H21.5V8H8.5V9ZM8 8.5V21.5H9V8.5H8ZM8.5 22H21.5V21H8.5V22ZM21 8.5V21.5H22V8.5H21ZM2.79062 12.9069L6.29062 10.4069L5.70938 9.59313L2.20938 12.0931L2.79062 12.9069ZM5.74275 10.4287L8.24275 11.9287L8.75725 11.0713L6.25725 9.57125L5.74275 10.4287ZM6 5.5C6.13807 5.5 6.25 5.61193 6.25 5.75H7.25C7.25 5.05964 6.69036 4.5 6 4.5V5.5ZM6.25 5.75C6.25 5.88807 6.13807 6 6 6V7C6.69036 7 7.25 6.44036 7.25 5.75H6.25ZM6 6C5.86193 6 5.75 5.88807 5.75 5.75H4.75C4.75 6.44036 5.30964 7 6 7V6ZM5.75 5.75C5.75 5.61193 5.86193 5.5 6 5.5V4.5C5.30964 4.5 4.75 5.05964 4.75 5.75H5.75ZM13 12.5V17.5H14V12.5H13ZM13.7906 17.9069L17.2906 15.4069L16.7094 14.5931L13.2094 17.0931L13.7906 17.9069ZM17.2906 14.5931L13.7906 12.0931L13.2094 12.9069L16.7094 15.4069L17.2906 14.5931ZM5.625 6.25H6.375V5.25H5.625V6.25Z\" fill=\"currentColor\"/>",
|
|
@@ -16044,6 +16114,20 @@
|
|
|
16044
16114
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
16045
16115
|
"componentName": "IconPeopleGear"
|
|
16046
16116
|
},
|
|
16117
|
+
{
|
|
16118
|
+
"category": "People",
|
|
16119
|
+
"svg": "<path d=\"M19.5 2.5H4.5V21.5H19.5V2.5Z\" stroke=\"currentColor\"/><circle cx=\"12\" cy=\"11.5\" r=\"2.5\" stroke=\"currentColor\"/><path d=\"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21\" stroke=\"currentColor\"/><path d=\"M9 5.5H15\" stroke=\"currentColor\"/>",
|
|
16120
|
+
"iconName": "people-id-card, profile, user-account, badge, person",
|
|
16121
|
+
"variant": {
|
|
16122
|
+
"join": "square",
|
|
16123
|
+
"filled": "off",
|
|
16124
|
+
"radius": "0",
|
|
16125
|
+
"stroke": "1"
|
|
16126
|
+
},
|
|
16127
|
+
"createdAt": "2026-01-09T15:00:38.162674+00:00",
|
|
16128
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
16129
|
+
"componentName": "IconPeopleIdCard"
|
|
16130
|
+
},
|
|
16047
16131
|
{
|
|
16048
16132
|
"category": "People",
|
|
16049
16133
|
"svg": "<path d=\"M16 6.5C16 8.70914 14.2091 10.5 12 10.5C9.79086 10.5 8 8.70914 8 6.5C8 4.29086 9.79086 2.5 12 2.5C14.2091 2.5 16 4.29086 16 6.5Z\" stroke=\"currentColor\"/><path d=\"M4 20.5L3.50191 20.4563L3.45421 21H4V20.5ZM12.5 21H13V20H12.5V21ZM13.8746 13.2338L14.3587 13.3592L14.6094 12.3911L14.1254 12.2657L13.8746 13.2338ZM4.49809 20.5437C4.8739 16.2605 7.84246 13 12 13V12C7.21843 12 3.91318 15.7691 3.50191 20.4563L4.49809 20.5437ZM4 21H12.5V20H4V21ZM12 13C12.6599 13 13.2862 13.0814 13.8746 13.2338L14.1254 12.2657C13.4533 12.0917 12.7427 12 12 12V13Z\" fill=\"currentColor\"/><path d=\"M21.5 17.6089C21.5 20.1212 18 21.5 18 21.5C18 21.5 14.5 20.1212 14.5 17.6089C14.5 15.7261 16.3813 14.6052 18 15.6513C19.6187 14.6052 21.5 15.7261 21.5 17.6089Z\" stroke=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -228,6 +228,7 @@ export type CentralIconName =
|
|
|
228
228
|
| "IconBlankPagePortrait"
|
|
229
229
|
| "IconBlip"
|
|
230
230
|
| "IconBlock"
|
|
231
|
+
| "IconBlocks"
|
|
231
232
|
| "IconBlockSortAscending"
|
|
232
233
|
| "IconBlockSortDescending"
|
|
233
234
|
| "IconBlossom"
|
|
@@ -464,7 +465,6 @@ export type CentralIconName =
|
|
|
464
465
|
| "IconCloseQuote1"
|
|
465
466
|
| "IconCloseQuote2"
|
|
466
467
|
| "IconCloud"
|
|
467
|
-
| "IconCloud1"
|
|
468
468
|
| "IconCloudCheck"
|
|
469
469
|
| "IconCloudDownload"
|
|
470
470
|
| "IconCloudOff"
|
|
@@ -476,6 +476,7 @@ export type CentralIconName =
|
|
|
476
476
|
| "IconCloudSnow"
|
|
477
477
|
| "IconCloudSync"
|
|
478
478
|
| "IconCloudUpload"
|
|
479
|
+
| "IconCloudWeather"
|
|
479
480
|
| "IconCloudy"
|
|
480
481
|
| "IconCloudySparkle"
|
|
481
482
|
| "IconCloudySun"
|
|
@@ -762,6 +763,7 @@ export type CentralIconName =
|
|
|
762
763
|
| "IconFolderRestricted"
|
|
763
764
|
| "IconFolders"
|
|
764
765
|
| "IconFolderShared"
|
|
766
|
+
| "IconFolderShield"
|
|
765
767
|
| "IconFolderSparkle"
|
|
766
768
|
| "IconFolderUpload"
|
|
767
769
|
| "IconFontStyle"
|
|
@@ -838,6 +840,7 @@ export type CentralIconName =
|
|
|
838
840
|
| "IconHand4Finger"
|
|
839
841
|
| "IconHand5Finger"
|
|
840
842
|
| "IconHandBell"
|
|
843
|
+
| "IconHandshake"
|
|
841
844
|
| "IconHaptic"
|
|
842
845
|
| "IconHashtag"
|
|
843
846
|
| "IconHatBunny"
|
|
@@ -994,6 +997,7 @@ export type CentralIconName =
|
|
|
994
997
|
| "IconMapPinFlat"
|
|
995
998
|
| "IconMarkdown"
|
|
996
999
|
| "IconMarker"
|
|
1000
|
+
| "IconMarker2"
|
|
997
1001
|
| "IconMarkerCircle"
|
|
998
1002
|
| "IconMarkup"
|
|
999
1003
|
| "IconMask"
|
|
@@ -1038,6 +1042,7 @@ export type CentralIconName =
|
|
|
1038
1042
|
| "IconMouseScrollDown"
|
|
1039
1043
|
| "IconMouseScrollUp"
|
|
1040
1044
|
| "IconMouth"
|
|
1045
|
+
| "IconMoveFolder"
|
|
1041
1046
|
| "IconMultiMedia"
|
|
1042
1047
|
| "IconMute"
|
|
1043
1048
|
| "IconNailedIt"
|
|
@@ -1145,6 +1150,7 @@ export type CentralIconName =
|
|
|
1145
1150
|
| "IconPeopleCopy"
|
|
1146
1151
|
| "IconPeopleEdit"
|
|
1147
1152
|
| "IconPeopleGear"
|
|
1153
|
+
| "IconPeopleIdCard"
|
|
1148
1154
|
| "IconPeopleLike"
|
|
1149
1155
|
| "IconPeopleRemove"
|
|
1150
1156
|
| "IconPeopleRemove2"
|