@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.310 → 1.1.311

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 IconShieldUser: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconShieldUser;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:M}=Object,k=Object.prototype.hasOwnProperty;function L(r){return this[r]}var P,S,c=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?P??=new WeakMap:S??=new WeakMap,C=p.get(r);if(C)return C}e=r!=null?B(w(r)):{};let a=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let d of f(r))if(!k.call(a,d))l(a,d,{get:L.bind(r,d),enumerable:!0});if(t)p.set(r,a);return a},g=(r)=>{var o=(h??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!k.call(o,t))l(o,t,{get:L.bind(r,t),enumerable:!(e=M(r,t))||e.enumerable})}return h.set(r,o),o},h;var V=(r)=>r;function v(r,o){this[r]=V.bind(null,o)}var x=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:v.bind(o,e)})};var y={};x(y,{CentralIconBase:()=>u});module.exports=g(y);var s=c(require("react")),n=require("react-native-svg"),u=({children:r,size:o=24,mode:e="masked",maskId:t,...p})=>{let C=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var Z={};x(Z,{default:()=>U,IconShieldUser:()=>I});module.exports=g(Z);var i=c(require("react"));var m=require("react-native-svg"),I=i.default.memo((r)=>{return i.default.createElement(u,{...r,maskId:"square-outlined-radius-0-stroke-2-IconShieldUser"},i.default.createElement(m.Path,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),i.default.createElement(m.Path,{d:"M15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.default.createElement(m.Path,{d:"M16.7618 19.0287L17.4364 19.7669L18.9128 18.4176L18.2382 17.6795L17.5 18.3541L16.7618 19.0287ZM6.5 18.3541L7.23817 19.0287C8.37439 17.7854 10.0096 17 12 17V16V15C9.45012 15 7.27843 16.02 5.76183 17.6795L6.5 18.3541ZM12 16V17C13.9904 17 15.6256 17.7854 16.7618 19.0287L17.5 18.3541L18.2382 17.6795C16.7216 16.02 14.5499 15 12 15V16Z",fill:"currentColor"}))}),U=I;
2
+
3
+ //# debugId=9F1585727050EABE64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldUser/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 IconShieldUser: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconShieldUser\"><Path d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M16.7618 19.0287L17.4364 19.7669L18.9128 18.4176L18.2382 17.6795L17.5 18.3541L16.7618 19.0287ZM6.5 18.3541L7.23817 19.0287C8.37439 17.7854 10.0096 17 12 17V16V15C9.45012 15 7.27843 16.02 5.76183 17.6795L6.5 18.3541ZM12 16V17C13.9904 17 15.6256 17.7854 16.7618 19.0287L17.5 18.3541L18.2382 17.6795C16.7216 16.02 14.5499 15 12 15V16Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShieldUser;\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,0EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAmE,UAAM,KAAK,CAAC,IAAU,CACpG,OAAO,wBAAkxB,EAAlxB,IAAqB,EAAO,OAAO,oDAAmD,wBAAC,OAAD,CAAM,EAAE,+EAA+E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,oHAAoH,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,CAAI,EAC1xB,EAEc",
9
+ "debugId": "9F1585727050EABE64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as d,Rect as i,G as u}from"react-native-svg";var l=({children:t,size:o=24,mode:p="masked",maskId:n,...C})=>{let a=p!=="raw"&&!!n;return r.createElement(m,{...C,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(i,{width:"24",height:"24",fill:"#000"}),r.createElement(u,{color:"#fff"},t)),r.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var h=e.memo((t)=>{return e.createElement(l,{...t,maskId:"square-outlined-radius-0-stroke-2-IconShieldUser"},e.createElement(s,{d:"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(s,{d:"M15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.createElement(s,{d:"M16.7618 19.0287L17.4364 19.7669L18.9128 18.4176L18.2382 17.6795L17.5 18.3541L16.7618 19.0287ZM6.5 18.3541L7.23817 19.0287C8.37439 17.7854 10.0096 17 12 17V16V15C9.45012 15 7.27843 16.02 5.76183 17.6795L6.5 18.3541ZM12 16V17C13.9904 17 15.6256 17.7854 16.7618 19.0287L17.5 18.3541L18.2382 17.6795C16.7216 16.02 14.5499 15 12 15V16Z",fill:"currentColor"}))}),M=h;export{M as default,h as IconShieldUser};
2
+
3
+ //# debugId=97C11353CC1EE21964756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconShieldUser/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 IconShieldUser: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-2-IconShieldUser\"><Path d=\"M4 6L12 2.5L20 6V13C20 17.4183 16.4183 21 12 21C7.58172 21 4 17.4183 4 13V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M16.7618 19.0287L17.4364 19.7669L18.9128 18.4176L18.2382 17.6795L17.5 18.3541L16.7618 19.0287ZM6.5 18.3541L7.23817 19.0287C8.37439 17.7854 10.0096 17 12 17V16V15C9.45012 15 7.27843 16.02 5.76183 17.6795L6.5 18.3541ZM12 16V17C13.9904 17 15.6256 17.7854 16.7618 19.0287L17.5 18.3541L18.2382 17.6795C16.7216 16.02 14.5499 15 12 15V16Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShieldUser;\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,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAkxB,EAAlxB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,+EAA+E,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,oHAAoH,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,CAAI,EAC1xB,EAEc",
9
+ "debugId": "97C11353CC1EE21964756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1662,6 +1662,7 @@ Below is a complete list of available icons:
1662
1662
  - IconUnlocked2
1663
1663
  - IconKeyhole2
1664
1664
  - IconShieldSafeSearch
1665
+ - IconShieldUser
1665
1666
 
1666
1667
  ### Shopping & Payment
1667
1668