@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.296 → 1.1.297

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 I=Object.create;var{getPrototypeOf:M,defineProperty:d,getOwnPropertyNames:c,getOwnPropertyDescriptor:V}=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 i=r?B??=new WeakMap:P??=new WeakMap,s=i.get(o);if(s)return s}e=o!=null?I(M(o)):{};let p=r||!o||!o.__esModule?d(e,"default",{value:o,enumerable:!0}):e;for(let a of c(o))if(!h.call(p,a))d(p,a,{get:g.bind(o,a),enumerable:!0});if(n)i.set(o,p);return p},v=(o)=>{var r=(u??=new WeakMap).get(o),e;if(r)return r;if(r=d({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of c(o))if(!h.call(r,n))d(r,n,{get:g.bind(o,n),enumerable:!(e=V(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)d(o,e,{get:r[e],enumerable:!0,configurable:!0,set:Z.bind(r,e)})};var H={};w(H,{CentralIconBase:()=>f});module.exports=v(H);var t=k(require("react")),C=require("react-native-svg"),f=({children:o,size:r=24,mode:e="masked",maskId:n,...i})=>{let s=e!=="raw"&&!!n;return t.default.createElement(C.Svg,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},s?t.default.createElement(t.default.Fragment,null,t.default.createElement(C.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement(C.Rect,{width:"24",height:"24",fill:"#000"}),t.default.createElement(C.G,{color:"#fff"},o)),t.default.createElement(C.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var y={};w(y,{default:()=>b,IconWindowSquareLocked:()=>x});module.exports=v(y);var l=k(require("react"));var m=require("react-native-svg"),x=l.default.memo((o)=>{return l.default.createElement(f,{...o,maskId:"round-filled-radius-2-stroke-1-IconWindowSquareLocked"},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C19.6569 13 21 14.3431 21 16V16.0869C21.5823 16.293 22 16.8471 22 17.5V20.5C22 21.3284 21.3284 22 20.5 22H15.5C14.6716 22 14 21.3284 14 20.5V17.5C14 16.8471 14.4177 16.293 15 16.0869V16C15 14.3431 16.3431 13 18 13ZM18 14C16.8954 14 16 14.8954 16 16H20C20 14.8954 19.1046 14 18 14Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M21 13.3555C20.2674 12.5244 19.1952 12 18 12C15.968 12 14.2902 13.5153 14.0342 15.4775C13.4083 15.9319 13 16.6675 13 17.5V20.5C13 20.6712 13.017 20.8385 13.0498 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V13.3555Z",fill:"currentColor"}),l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))}),b=x;
2
+
3
+ //# debugId=018934E949431A6B64756E2164756E21
@@ -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=\"round-filled-radius-2-stroke-1-IconWindowSquareLocked\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 13C19.6569 13 21 14.3431 21 16V16.0869C21.5823 16.293 22 16.8471 22 17.5V20.5C22 21.3284 21.3284 22 20.5 22H15.5C14.6716 22 14 21.3284 14 20.5V17.5C14 16.8471 14.4177 16.293 15 16.0869V16C15 14.3431 16.3431 13 18 13ZM18 14C16.8954 14 16 14.8954 16 16H20C20 14.8954 19.1046 14 18 14Z\" fill=\"currentColor\"/><Path d=\"M21 13.3555C20.2674 12.5244 19.1952 12 18 12C15.968 12 14.2902 13.5153 14.0342 15.4775C13.4083 15.9319 13 16.6675 13 17.5V20.5C13 20.6712 13.017 20.8385 13.0498 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V13.3555Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" 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,wBAAivC,EAAjvC,IAAqB,EAAO,OAAO,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iSAAiS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qNAAqN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,EACzvC,EAEc",
9
+ "debugId": "018934E949431A6B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as a,Rect as l,G as f}from"react-native-svg";var d=({children:n,size:r=24,mode:i="masked",maskId:C,...s})=>{let p=i!=="raw"&&!!C;return o.createElement(m,{...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(a,{id:C,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},n)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${C})`})):n)};import e from"react";import{Path as t}from"react-native-svg";var u=e.memo((n)=>{return e.createElement(d,{...n,maskId:"round-filled-radius-2-stroke-1-IconWindowSquareLocked"},e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18 13C19.6569 13 21 14.3431 21 16V16.0869C21.5823 16.293 22 16.8471 22 17.5V20.5C22 21.3284 21.3284 22 20.5 22H15.5C14.6716 22 14 21.3284 14 20.5V17.5C14 16.8471 14.4177 16.293 15 16.0869V16C15 14.3431 16.3431 13 18 13ZM18 14C16.8954 14 16 14.8954 16 16H20C20 14.8954 19.1046 14 18 14Z",fill:"currentColor"}),e.createElement(t,{d:"M21 13.3555C20.2674 12.5244 19.1952 12 18 12C15.968 12 14.2902 13.5153 14.0342 15.4775C13.4083 15.9319 13 16.6675 13 17.5V20.5C13 20.6712 13.017 20.8385 13.0498 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V13.3555Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))}),V=u;export{V as default,u as IconWindowSquareLocked};
2
+
3
+ //# debugId=514C11B528D3705364756E2164756E21
@@ -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=\"round-filled-radius-2-stroke-1-IconWindowSquareLocked\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 13C19.6569 13 21 14.3431 21 16V16.0869C21.5823 16.293 22 16.8471 22 17.5V20.5C22 21.3284 21.3284 22 20.5 22H15.5C14.6716 22 14 21.3284 14 20.5V17.5C14 16.8471 14.4177 16.293 15 16.0869V16C15 14.3431 16.3431 13 18 13ZM18 14C16.8954 14 16 14.8954 16 16H20C20 14.8954 19.1046 14 18 14Z\" fill=\"currentColor\"/><Path d=\"M21 13.3555C20.2674 12.5244 19.1952 12 18 12C15.968 12 14.2902 13.5153 14.0342 15.4775C13.4083 15.9319 13 16.6675 13 17.5V20.5C13 20.6712 13.017 20.8385 13.0498 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V13.3555Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" 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,gBAAivC,EAAjvC,IAAqB,EAAO,OAAO,yDAAwD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iSAAiS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qNAAqN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,EACzvC,EAEc",
9
+ "debugId": "514C11B528D3705364756E2164756E21",
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 k=Object.create;var{getPrototypeOf:B,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:M}=Object,h=Object.prototype.hasOwnProperty;function g(r){return this[r]}var v,y,w=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var s=o?v??=new WeakMap:y??=new WeakMap,p=s.get(r);if(p)return p}e=r!=null?k(B(r)):{};let m=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let d of c(r))if(!h.call(m,d))i(m,d,{get:g.bind(r,d),enumerable:!0});if(C)s.set(r,m);return m},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 C of c(r))if(!h.call(o,C))i(o,C,{get:g.bind(r,C),enumerable:!(e=M(r,C))||e.enumerable})}return f.set(r,o),o},f;var L=(r)=>r;function P(r,o){this[r]=L.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 t=w(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:e="masked",maskId:C,...s})=>{let p=e!=="raw"&&!!C;return t.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?t.default.createElement(t.default.Fragment,null,t.default.createElement(n.Mask,{id:C,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),t.default.createElement(n.G,{color:"#fff"},r)),t.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${C})`})):r)};var Z={};I(Z,{default:()=>H,IconWindowSquareSecurity:()=>S});module.exports=x(Z);var l=w(require("react"));var a=require("react-native-svg"),S=l.default.memo((r)=>{return l.default.createElement(u,{...r,maskId:"round-filled-radius-2-stroke-1-IconWindowSquareSecurity"},l.default.createElement(a.Path,{d:"M17.4092 12.709C17.7864 12.5474 18.2136 12.5474 18.5908 12.709L21.0908 13.7803C21.6423 14.0166 21.9999 14.5592 22 15.1592V17.3623C22 19.1624 20.927 20.7899 19.2725 21.499L18.1973 21.96C18.0715 22.0139 17.9285 22.0139 17.8027 21.96L16.7275 21.499C15.073 20.7899 14 19.1624 14 17.3623V15.1592C14.0001 14.5592 14.3577 14.0166 14.9092 13.7803L17.4092 12.709Z",fill:"currentColor"}),l.default.createElement(a.Path,{d:"M21 12.6533L18.9844 11.79C18.6408 11.6428 18.2724 11.5763 17.9062 11.5898C17.7595 11.5953 17.613 11.6132 17.4688 11.6445C17.3969 11.6601 17.3255 11.6791 17.2549 11.7012L17.0156 11.79L14.5156 12.8613C14.458 12.886 14.4017 12.9128 14.3467 12.9414C14.2372 12.9983 14.1326 13.0626 14.0342 13.1338C13.9849 13.1695 13.9369 13.2071 13.8906 13.2461C13.7981 13.3239 13.7116 13.4083 13.6318 13.498C13.5521 13.5878 13.479 13.6832 13.4131 13.7832C13.3472 13.8832 13.2884 13.9881 13.2373 14.0967C13.0841 14.4227 13 14.7843 13 15.1592V17.3623C13.0001 18.5999 13.4147 19.7711 14.1377 20.7129C14.2133 20.8113 14.2928 20.9068 14.375 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V12.6533Z",fill:"currentColor"}),l.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))}),H=S;
2
+
3
+ //# debugId=AACC38DC8B59286364756E2164756E21
@@ -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=\"round-filled-radius-2-stroke-1-IconWindowSquareSecurity\"><Path d=\"M17.4092 12.709C17.7864 12.5474 18.2136 12.5474 18.5908 12.709L21.0908 13.7803C21.6423 14.0166 21.9999 14.5592 22 15.1592V17.3623C22 19.1624 20.927 20.7899 19.2725 21.499L18.1973 21.96C18.0715 22.0139 17.9285 22.0139 17.8027 21.96L16.7275 21.499C15.073 20.7899 14 19.1624 14 17.3623V15.1592C14.0001 14.5592 14.3577 14.0166 14.9092 13.7803L17.4092 12.709Z\" fill=\"currentColor\"/><Path d=\"M21 12.6533L18.9844 11.79C18.6408 11.6428 18.2724 11.5763 17.9062 11.5898C17.7595 11.5953 17.613 11.6132 17.4688 11.6445C17.3969 11.6601 17.3255 11.6791 17.2549 11.7012L17.0156 11.79L14.5156 12.8613C14.458 12.886 14.4017 12.9128 14.3467 12.9414C14.2372 12.9983 14.1326 13.0626 14.0342 13.1338C13.9849 13.1695 13.9369 13.2071 13.8906 13.2461C13.7981 13.3239 13.7116 13.4083 13.6318 13.498C13.5521 13.5878 13.479 13.6832 13.4131 13.7832C13.3472 13.8832 13.2884 13.9881 13.2373 14.0967C13.0841 14.4227 13 14.7843 13 15.1592V17.3623C13.0001 18.5999 13.4147 19.7711 14.1377 20.7129C14.2133 20.8113 14.2928 20.9068 14.375 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V12.6533Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" 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,wBAAwtD,EAAxtD,IAAqB,EAAO,OAAO,2DAA0D,wBAAC,OAAD,CAAM,EAAE,qWAAqW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4pBAA4pB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,EAChuD,EAEc",
9
+ "debugId": "AACC38DC8B59286364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as a,Mask as d,Rect as l,G as u}from"react-native-svg";var i=({children:C,size:o=24,mode:s="masked",maskId:n,...p})=>{let m=s!=="raw"&&!!n;return r.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?r.createElement(r.Fragment,null,r.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(l,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},C)),r.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):C)};import e from"react";import{Path as t}from"react-native-svg";var f=e.memo((C)=>{return e.createElement(i,{...C,maskId:"round-filled-radius-2-stroke-1-IconWindowSquareSecurity"},e.createElement(t,{d:"M17.4092 12.709C17.7864 12.5474 18.2136 12.5474 18.5908 12.709L21.0908 13.7803C21.6423 14.0166 21.9999 14.5592 22 15.1592V17.3623C22 19.1624 20.927 20.7899 19.2725 21.499L18.1973 21.96C18.0715 22.0139 17.9285 22.0139 17.8027 21.96L16.7275 21.499C15.073 20.7899 14 19.1624 14 17.3623V15.1592C14.0001 14.5592 14.3577 14.0166 14.9092 13.7803L17.4092 12.709Z",fill:"currentColor"}),e.createElement(t,{d:"M21 12.6533L18.9844 11.79C18.6408 11.6428 18.2724 11.5763 17.9062 11.5898C17.7595 11.5953 17.613 11.6132 17.4688 11.6445C17.3969 11.6601 17.3255 11.6791 17.2549 11.7012L17.0156 11.79L14.5156 12.8613C14.458 12.886 14.4017 12.9128 14.3467 12.9414C14.2372 12.9983 14.1326 13.0626 14.0342 13.1338C13.9849 13.1695 13.9369 13.2071 13.8906 13.2461C13.7981 13.3239 13.7116 13.4083 13.6318 13.498C13.5521 13.5878 13.479 13.6832 13.4131 13.7832C13.3472 13.8832 13.2884 13.9881 13.2373 14.0967C13.0841 14.4227 13 14.7843 13 15.1592V17.3623C13.0001 18.5999 13.4147 19.7711 14.1377 20.7129C14.2133 20.8113 14.2928 20.9068 14.375 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V12.6533Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))}),M=f;export{M as default,f as IconWindowSquareSecurity};
2
+
3
+ //# debugId=768F8C56DCEA01BE64756E2164756E21
@@ -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=\"round-filled-radius-2-stroke-1-IconWindowSquareSecurity\"><Path d=\"M17.4092 12.709C17.7864 12.5474 18.2136 12.5474 18.5908 12.709L21.0908 13.7803C21.6423 14.0166 21.9999 14.5592 22 15.1592V17.3623C22 19.1624 20.927 20.7899 19.2725 21.499L18.1973 21.96C18.0715 22.0139 17.9285 22.0139 17.8027 21.96L16.7275 21.499C15.073 20.7899 14 19.1624 14 17.3623V15.1592C14.0001 14.5592 14.3577 14.0166 14.9092 13.7803L17.4092 12.709Z\" fill=\"currentColor\"/><Path d=\"M21 12.6533L18.9844 11.79C18.6408 11.6428 18.2724 11.5763 17.9062 11.5898C17.7595 11.5953 17.613 11.6132 17.4688 11.6445C17.3969 11.6601 17.3255 11.6791 17.2549 11.7012L17.0156 11.79L14.5156 12.8613C14.458 12.886 14.4017 12.9128 14.3467 12.9414C14.2372 12.9983 14.1326 13.0626 14.0342 13.1338C13.9849 13.1695 13.9369 13.2071 13.8906 13.2461C13.7981 13.3239 13.7116 13.4083 13.6318 13.498C13.5521 13.5878 13.479 13.6832 13.4131 13.7832C13.3472 13.8832 13.2884 13.9881 13.2373 14.0967C13.0841 14.4227 13 14.7843 13 15.1592V17.3623C13.0001 18.5999 13.4147 19.7711 14.1377 20.7129C14.2133 20.8113 14.2928 20.9068 14.375 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V12.6533Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" 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,gBAAwtD,EAAxtD,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,EAAE,qWAAqW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4pBAA4pB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,EAChuD,EAEc",
9
+ "debugId": "768F8C56DCEA01BE64756E2164756E21",
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