@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.296 → 1.1.298

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquareLocked: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconWindowSquareLocked;
@@ -0,0 +1,3 @@
1
+ var H=Object.create;var{getPrototypeOf:I,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,h=Object.prototype.hasOwnProperty;function g(o){return this[o]}var B,P,k=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var d=r?B??=new WeakMap:P??=new WeakMap,s=d.get(o);if(s)return s}e=o!=null?H(I(o)):{};let p=r||!o||!o.__esModule?i(e,"default",{value:o,enumerable:!0}):e;for(let m of c(o))if(!h.call(p,m))i(p,m,{get:g.bind(o,m),enumerable:!0});if(n)d.set(o,p);return p},v=(o)=>{var r=(u??=new WeakMap).get(o),e;if(r)return r;if(r=i({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!h.call(r,n))i(r,n,{get:g.bind(o,n),enumerable:!(e=M(o,n))||e.enumerable})}return u.set(o,r),r},u;var S=(o)=>o;function Z(o,r){this[o]=S.bind(null,r)}var w=(o,r)=>{for(var e in r)i(o,e,{get:r[e],enumerable:!0,configurable:!0,set:Z.bind(r,e)})};var V={};w(V,{CentralIconBase:()=>f});module.exports=v(V);var l=k(require("react")),t=require("react-native-svg"),f=({children:o,size:r=24,mode:e="masked",maskId:n,...d})=>{let s=e!=="raw"&&!!n;return l.default.createElement(t.Svg,{...d,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},s?l.default.createElement(l.default.Fragment,null,l.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(t.G,{color:"#fff"},o)),l.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var y={};w(y,{default:()=>b,IconWindowSquareLocked:()=>x});module.exports=v(y);var C=k(require("react"));var a=require("react-native-svg"),x=C.default.memo((o)=>{return C.default.createElement(f,{...o,maskId:"square-filled-radius-0-stroke-2-IconWindowSquareLocked"},C.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C19.6569 13 21 14.3431 21 16H22V22H14V16H15C15 14.3431 16.3431 13 18 13ZM18 15C17.4477 15 17 15.4477 17 16H19C19 15.4477 18.5523 15 18 15Z",fill:"currentColor"}),C.default.createElement(a.Path,{d:"M18 11C15.9497 11 14.1876 12.2341 13.416 14H12V21H3V11H18Z",fill:"currentColor"}),C.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))}),b=x;
2
+
3
+ //# debugId=11955026E48C0BDB64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareLocked/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquareLocked: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWindowSquareLocked\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 13C19.6569 13 21 14.3431 21 16H22V22H14V16H15C15 14.3431 16.3431 13 18 13ZM18 15C17.4477 15 17 15.4477 17 16H19C19 15.4477 18.5523 15 18 15Z\" fill=\"currentColor\"/><Path d=\"M18 11C15.9497 11 14.1876 12.2341 13.416 14H12V21H3V11H18Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWindowSquareLocked;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,kFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA2E,UAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,wBAA6yB,EAA7yB,IAAqB,EAAO,OAAO,0DAAyD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4VAA4V,KAAK,eAAc,CAAI,EACrzB,EAEc",
9
+ "debugId": "11955026E48C0BDB64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as m,Rect as C,G as f}from"react-native-svg";var i=({children:n,size:r=24,mode:d="masked",maskId:t,...s})=>{let p=d!=="raw"&&!!t;return o.createElement(a,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},p?o.createElement(o.Fragment,null,o.createElement(m,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(C,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},n)),o.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as l}from"react-native-svg";var u=e.memo((n)=>{return e.createElement(i,{...n,maskId:"square-filled-radius-0-stroke-2-IconWindowSquareLocked"},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C19.6569 13 21 14.3431 21 16H22V22H14V16H15C15 14.3431 16.3431 13 18 13ZM18 15C17.4477 15 17 15.4477 17 16H19C19 15.4477 18.5523 15 18 15Z",fill:"currentColor"}),e.createElement(l,{d:"M18 11C15.9497 11 14.1876 12.2341 13.416 14H12V21H3V11H18Z",fill:"currentColor"}),e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))}),M=u;export{M as default,u as IconWindowSquareLocked};
2
+
3
+ //# debugId=51632CD237B1E01564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareLocked/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquareLocked: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWindowSquareLocked\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 13C19.6569 13 21 14.3431 21 16H22V22H14V16H15C15 14.3431 16.3431 13 18 13ZM18 15C17.4477 15 17 15.4477 17 16H19C19 15.4477 18.5523 15 18 15Z\" fill=\"currentColor\"/><Path d=\"M18 11C15.9497 11 14.1876 12.2341 13.416 14H12V21H3V11H18Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWindowSquareLocked;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA2E,EAAM,KAAK,CAAC,IAAU,CAC5G,OAAO,gBAA6yB,EAA7yB,IAAqB,EAAO,OAAO,0DAAyD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4VAA4V,KAAK,eAAc,CAAI,EACrzB,EAEc",
9
+ "debugId": "51632CD237B1E01564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquareSecurity: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconWindowSquareSecurity;
@@ -0,0 +1,3 @@
1
+ var S=Object.create;var{getPrototypeOf:k,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,h=Object.prototype.hasOwnProperty;function g(r){return this[r]}var M,v,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?M??=new WeakMap:v??=new WeakMap,p=s.get(r);if(p)return p}e=r!=null?S(k(r)):{};let a=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let d of c(r))if(!h.call(a,d))i(a,d,{get:g.bind(r,d),enumerable:!0});if(t)s.set(r,a);return a},x=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))i(o,t,{get:g.bind(r,t),enumerable:!(e=B(r,t))||e.enumerable})}return f.set(r,o),o},f;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var V={};I(V,{CentralIconBase:()=>u});module.exports=x(V);var l=w(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:e="masked",maskId:t,...s})=>{let p=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...s,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?l.default.createElement(l.default.Fragment,null,l.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),l.default.createElement(n.G,{color:"#fff"},r)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var Z={};I(Z,{default:()=>H,IconWindowSquareSecurity:()=>L});module.exports=x(Z);var C=w(require("react"));var m=require("react-native-svg"),L=C.default.memo((r)=>{return C.default.createElement(u,{...r,maskId:"square-filled-radius-0-stroke-2-IconWindowSquareSecurity"},C.default.createElement(m.Path,{d:"M17.9043 12.6924L22 14.502V17.7168C21.9999 19.6761 20.7874 21.431 18.9551 22.125L17.8545 22.543L17.5 22.6768L17.1455 22.543L16.0449 22.125C14.2126 21.431 13.0001 19.6761 13 17.7168V14.502L17.0957 12.6924L17.5 12.5146L17.9043 12.6924Z",fill:"currentColor"}),C.default.createElement(m.Path,{d:"M11 13.1992V17.7168C11.0001 18.8935 11.3077 20.0182 11.8584 21H3V11H15.9785L11 13.1992Z",fill:"currentColor"}),C.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))}),H=L;
2
+
3
+ //# debugId=8658FD936AAF1B4E64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareSecurity/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquareSecurity: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWindowSquareSecurity\"><Path d=\"M17.9043 12.6924L22 14.502V17.7168C21.9999 19.6761 20.7874 21.431 18.9551 22.125L17.8545 22.543L17.5 22.6768L17.1455 22.543L16.0449 22.125C14.2126 21.431 13.0001 19.6761 13 17.7168V14.502L17.0957 12.6924L17.5 12.5146L17.9043 12.6924Z\" fill=\"currentColor\"/><Path d=\"M11 13.1992V17.7168C11.0001 18.8935 11.3077 20.0182 11.8584 21H3V11H15.9785L11 13.1992Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWindowSquareSecurity;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,oFChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA6E,UAAM,KAAK,CAAC,IAAU,CAC9G,OAAO,wBAA+3B,EAA/3B,IAAqB,EAAO,OAAO,4DAA2D,wBAAC,OAAD,CAAM,EAAE,4OAA4O,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4VAA4V,KAAK,eAAc,CAAI,EACv4B,EAEc",
9
+ "debugId": "8658FD936AAF1B4E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as d,Rect as C,G as u}from"react-native-svg";var i=({children:t,size:o=24,mode:s="masked",maskId:n,...p})=>{let a=s!=="raw"&&!!n;return r.createElement(m,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},a?r.createElement(r.Fragment,null,r.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(C,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},t)),r.createElement(C,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as l}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(i,{...t,maskId:"square-filled-radius-0-stroke-2-IconWindowSquareSecurity"},e.createElement(l,{d:"M17.9043 12.6924L22 14.502V17.7168C21.9999 19.6761 20.7874 21.431 18.9551 22.125L17.8545 22.543L17.5 22.6768L17.1455 22.543L16.0449 22.125C14.2126 21.431 13.0001 19.6761 13 17.7168V14.502L17.0957 12.6924L17.5 12.5146L17.9043 12.6924Z",fill:"currentColor"}),e.createElement(l,{d:"M11 13.1992V17.7168C11.0001 18.8935 11.3077 20.0182 11.8584 21H3V11H15.9785L11 13.1992Z",fill:"currentColor"}),e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))}),B=f;export{B as default,f as IconWindowSquareSecurity};
2
+
3
+ //# debugId=E39418ED5975AFBC64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquareSecurity/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquareSecurity: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconWindowSquareSecurity\"><Path d=\"M17.9043 12.6924L22 14.502V17.7168C21.9999 19.6761 20.7874 21.431 18.9551 22.125L17.8545 22.543L17.5 22.6768L17.1455 22.543L16.0449 22.125C14.2126 21.431 13.0001 19.6761 13 17.7168V14.502L17.0957 12.6924L17.5 12.5146L17.9043 12.6924Z\" fill=\"currentColor\"/><Path d=\"M11 13.1992V17.7168C11.0001 18.8935 11.3077 20.0182 11.8584 21H3V11H15.9785L11 13.1992Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 9H3V3H21V9ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWindowSquareSecurity;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAA6E,EAAM,KAAK,CAAC,IAAU,CAC9G,OAAO,gBAA+3B,EAA/3B,IAAqB,EAAO,OAAO,4DAA2D,gBAAC,EAAD,CAAM,EAAE,4OAA4O,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4VAA4V,KAAK,eAAc,CAAI,EACv4B,EAEc",
9
+ "debugId": "E39418ED5975AFBC64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1324,6 +1324,8 @@ Below is a complete list of available icons:
1324
1324
  - IconWindowSquare
1325
1325
  - IconWindowSquarePlus
1326
1326
  - IconWindowSquareDelete
1327
+ - IconWindowSquareLocked
1328
+ - IconWindowSquareSecurity
1327
1329
 
1328
1330
  ### Keyboard
1329
1331