@central-icons-react-native/square-filled-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 v=Object.create;var{getPrototypeOf:w,defineProperty:l,getOwnPropertyNames:h,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function c(r){return this[r]}var S,y,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var i=o?S??=new WeakMap:y??=new WeakMap,p=i.get(r);if(p)return p}e=r!=null?v(w(r)):{};let a=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let C of h(r))if(!u.call(a,C))l(a,C,{get:c.bind(r,C),enumerable:!0});if(t)i.set(r,a);return a},x=(r)=>{var o=(f??=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 h(r))if(!u.call(o,t))l(o,t,{get:c.bind(r,t),enumerable:!(e=P(r,t))||e.enumerable})}return f.set(r,o),o},f;var M=(r)=>r;function L(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:L.bind(o,e)})};var U={};I(U,{CentralIconBase:()=>d});module.exports=x(U);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...i})=>{let p=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...i,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?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 b={};I(b,{default:()=>Z,IconShieldUser:()=>B});module.exports=x(b);var m=g(require("react"));var k=require("react-native-svg"),B=m.default.memo((r)=>{return m.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconShieldUser"},m.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.4004 1.58398L21 5.3457V13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13V5.3457L11.5996 1.58398L12 1.4082L12.4004 1.58398ZM12 15C9.75889 15 7.76542 15.9041 6.48438 17.3086C7.76561 18.9464 9.75935 20 12 20C14.2402 20 16.2324 18.9459 17.5137 17.3086C16.2327 15.9045 14.2406 15 12 15ZM12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7Z",fill:"currentColor"}))}),Z=B;
2
+
3
+ //# debugId=6B89914162C29F6664756E2164756E21
@@ -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-filled-radius-0-stroke-2-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.4004 1.58398L21 5.3457V13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13V5.3457L11.5996 1.58398L12 1.4082L12.4004 1.58398ZM12 15C9.75889 15 7.76542 15.9041 6.48438 17.3086C7.76561 18.9464 9.75935 20 12 20C14.2402 20 16.2324 18.9459 17.5137 17.3086C16.2327 15.9045 14.2406 15 12 15ZM12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7Z\" 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,wBAAgjB,EAAhjB,IAAqB,EAAO,OAAO,kDAAiD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uZAAuZ,KAAK,eAAc,CAAI,EACxjB,EAEc",
9
+ "debugId": "6B89914162C29F6664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as m,Mask as C,Rect as s,G as d}from"react-native-svg";var l=({children:e,size:o=24,mode:i="masked",maskId:t,...p})=>{let a=i!=="raw"&&!!t;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(C,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as f}from"react-native-svg";var h=n.memo((e)=>{return n.createElement(l,{...e,maskId:"square-filled-radius-0-stroke-2-IconShieldUser"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M12.4004 1.58398L21 5.3457V13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13V5.3457L11.5996 1.58398L12 1.4082L12.4004 1.58398ZM12 15C9.75889 15 7.76542 15.9041 6.48438 17.3086C7.76561 18.9464 9.75935 20 12 20C14.2402 20 16.2324 18.9459 17.5137 17.3086C16.2327 15.9045 14.2406 15 12 15ZM12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7Z",fill:"currentColor"}))}),P=h;export{P as default,h as IconShieldUser};
2
+
3
+ //# debugId=5A3F6B220885444B64756E2164756E21
@@ -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-filled-radius-0-stroke-2-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.4004 1.58398L21 5.3457V13C21 17.9706 16.9706 22 12 22C7.02944 22 3 17.9706 3 13V5.3457L11.5996 1.58398L12 1.4082L12.4004 1.58398ZM12 15C9.75889 15 7.76542 15.9041 6.48438 17.3086C7.76561 18.9464 9.75935 20 12 20C14.2402 20 16.2324 18.9459 17.5137 17.3086C16.2327 15.9045 14.2406 15 12 15ZM12 7C10.3431 7 9 8.34315 9 10C9 11.6569 10.3431 13 12 13C13.6569 13 15 11.6569 15 10C15 8.34315 13.6569 7 12 7Z\" 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,gBAAgjB,EAAhjB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uZAAuZ,KAAK,eAAc,CAAI,EACxjB,EAEc",
9
+ "debugId": "5A3F6B220885444B64756E2164756E21",
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