@central-icons-react-native/round-filled-radius-1-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:s,getOwnPropertyNames:h,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function c(o){return this[o]}var S,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var C=r?S??=new WeakMap:y??=new WeakMap,i=C.get(o);if(i)return i}e=o!=null?v(w(o)):{};let p=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;for(let a of h(o))if(!u.call(p,a))s(p,a,{get:c.bind(o,a),enumerable:!0});if(t)C.set(o,p);return p},x=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of h(o))if(!u.call(r,t))s(r,t,{get:c.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return f.set(o,r),r},f;var M=(o)=>o;function U(o,r){this[o]=M.bind(null,r)}var I=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0,configurable:!0,set:U.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>d});module.exports=x(b);var l=g(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...C})=>{let i=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},i?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"},o)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var Z={};I(Z,{default:()=>$,IconShieldUser:()=>B});module.exports=x(Z);var m=g(require("react"));var k=require("react-native-svg"),B=m.default.memo((o)=>{return m.default.createElement(d,{...o,maskId:"round-filled-radius-1-stroke-2-IconShieldUser"},m.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1982 1.75908C11.7092 1.53555 12.2908 1.53555 12.8018 1.75908L19.8018 4.82158C20.5296 5.14009 20.9999 5.85917 21 6.65361V12.9993C21 17.9699 16.9706 21.9993 12 21.9993C7.02944 21.9993 3 17.9699 3 12.9993V6.65361C3.00008 5.85917 3.47045 5.14009 4.19824 4.82158L11.1982 1.75908ZM12 15.0003C9.75935 15.0003 7.76643 15.9039 6.48535 17.3079C7.7666 18.9456 9.75951 19.9993 12 19.9993C14.24 19.9993 16.2324 18.9459 17.5137 17.3089C16.2327 15.9047 14.2407 15.0003 12 15.0003ZM12 7.00029C10.3431 7.00029 9 8.34344 9 10.0003C9.00015 11.657 10.3432 13.0003 12 13.0003C13.6568 13.0003 14.9998 11.657 15 10.0003C15 8.34344 13.6569 7.00029 12 7.00029Z",fill:"currentColor"}))}),$=B;
2
+
3
+ //# debugId=D1B1A636736D51AF64756E2164756E21
@@ -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=\"round-filled-radius-1-stroke-2-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.1982 1.75908C11.7092 1.53555 12.2908 1.53555 12.8018 1.75908L19.8018 4.82158C20.5296 5.14009 20.9999 5.85917 21 6.65361V12.9993C21 17.9699 16.9706 21.9993 12 21.9993C7.02944 21.9993 3 17.9699 3 12.9993V6.65361C3.00008 5.85917 3.47045 5.14009 4.19824 4.82158L11.1982 1.75908ZM12 15.0003C9.75935 15.0003 7.76643 15.9039 6.48535 17.3079C7.7666 18.9456 9.75951 19.9993 12 19.9993C14.24 19.9993 16.2324 18.9459 17.5137 17.3089C16.2327 15.9047 14.2407 15.0003 12 15.0003ZM12 7.00029C10.3431 7.00029 9 8.34344 9 10.0003C9.00015 11.657 10.3432 13.0003 12 13.0003C13.6568 13.0003 14.9998 11.657 15 10.0003C15 8.34344 13.6569 7.00029 12 7.00029Z\" 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,wBAA0xB,EAA1xB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,koBAAkoB,KAAK,eAAc,CAAI,EAClyB,EAEc",
9
+ "debugId": "D1B1A636736D51AF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as a,Rect as l,G as d}from"react-native-svg";var s=({children:e,size:r=24,mode:C="masked",maskId:t,...i})=>{let p=C!=="raw"&&!!t;return o.createElement(m,{...i,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:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(l,{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(s,{...e,maskId:"round-filled-radius-1-stroke-2-IconShieldUser"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.1982 1.75908C11.7092 1.53555 12.2908 1.53555 12.8018 1.75908L19.8018 4.82158C20.5296 5.14009 20.9999 5.85917 21 6.65361V12.9993C21 17.9699 16.9706 21.9993 12 21.9993C7.02944 21.9993 3 17.9699 3 12.9993V6.65361C3.00008 5.85917 3.47045 5.14009 4.19824 4.82158L11.1982 1.75908ZM12 15.0003C9.75935 15.0003 7.76643 15.9039 6.48535 17.3079C7.7666 18.9456 9.75951 19.9993 12 19.9993C14.24 19.9993 16.2324 18.9459 17.5137 17.3089C16.2327 15.9047 14.2407 15.0003 12 15.0003ZM12 7.00029C10.3431 7.00029 9 8.34344 9 10.0003C9.00015 11.657 10.3432 13.0003 12 13.0003C13.6568 13.0003 14.9998 11.657 15 10.0003C15 8.34344 13.6569 7.00029 12 7.00029Z",fill:"currentColor"}))}),P=h;export{P as default,h as IconShieldUser};
2
+
3
+ //# debugId=EC4D28307B91351B64756E2164756E21
@@ -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=\"round-filled-radius-1-stroke-2-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.1982 1.75908C11.7092 1.53555 12.2908 1.53555 12.8018 1.75908L19.8018 4.82158C20.5296 5.14009 20.9999 5.85917 21 6.65361V12.9993C21 17.9699 16.9706 21.9993 12 21.9993C7.02944 21.9993 3 17.9699 3 12.9993V6.65361C3.00008 5.85917 3.47045 5.14009 4.19824 4.82158L11.1982 1.75908ZM12 15.0003C9.75935 15.0003 7.76643 15.9039 6.48535 17.3079C7.7666 18.9456 9.75951 19.9993 12 19.9993C14.24 19.9993 16.2324 18.9459 17.5137 17.3089C16.2327 15.9047 14.2407 15.0003 12 15.0003ZM12 7.00029C10.3431 7.00029 9 8.34344 9 10.0003C9.00015 11.657 10.3432 13.0003 12 13.0003C13.6568 13.0003 14.9998 11.657 15 10.0003C15 8.34344 13.6569 7.00029 12 7.00029Z\" 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,gBAA0xB,EAA1xB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,koBAAkoB,KAAK,eAAc,CAAI,EAClyB,EAEc",
9
+ "debugId": "EC4D28307B91351B64756E2164756E21",
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