@central-icons-react-native/round-filled-radius-0-stroke-1 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-0-stroke-1-IconShieldUser"},m.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.8096 1.53852C11.9315 1.4883 12.0685 1.4883 12.1904 1.53852L20.6904 5.03852C20.8776 5.11574 21 5.29794 21 5.50043V13.0004C20.9998 17.9708 16.9704 22.0004 12 22.0004C7.02958 22.0004 3.00023 17.9708 3 13.0004V5.50043C3 5.29794 3.12242 5.11574 3.30957 5.03852L11.8096 1.53852ZM12 15.0004C9.35053 15.0004 7.04515 16.2618 5.85645 18.1225C7.32393 19.8806 9.53086 21.0004 12 21.0004C14.4689 21.0004 16.6751 19.8803 18.1426 18.1225C16.9539 16.262 14.6493 15.0004 12 15.0004ZM12 7.00043C10.3431 7.00043 9 8.34358 9 10.0004C9.00023 11.6571 10.3433 13.0004 12 13.0004C13.6567 13.0004 14.9998 11.6571 15 10.0004C15 8.34358 13.6569 7.00043 12 7.00043Z",fill:"currentColor"}))}),$=B;
2
+
3
+ //# debugId=B785BB88C9E78F1764756E2164756E21
@@ -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-0-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.8096 1.53852C11.9315 1.4883 12.0685 1.4883 12.1904 1.53852L20.6904 5.03852C20.8776 5.11574 21 5.29794 21 5.50043V13.0004C20.9998 17.9708 16.9704 22.0004 12 22.0004C7.02958 22.0004 3.00023 17.9708 3 13.0004V5.50043C3 5.29794 3.12242 5.11574 3.30957 5.03852L11.8096 1.53852ZM12 15.0004C9.35053 15.0004 7.04515 16.2618 5.85645 18.1225C7.32393 19.8806 9.53086 21.0004 12 21.0004C14.4689 21.0004 16.6751 19.8803 18.1426 18.1225C16.9539 16.262 14.6493 15.0004 12 15.0004ZM12 7.00043C10.3431 7.00043 9 8.34358 9 10.0004C9.00023 11.6571 10.3433 13.0004 12 13.0004C13.6567 13.0004 14.9998 11.6571 15 10.0004C15 8.34358 13.6569 7.00043 12 7.00043Z\" 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,wBAA4xB,EAA5xB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ooBAAooB,KAAK,eAAc,CAAI,EACpyB,EAEc",
9
+ "debugId": "B785BB88C9E78F1764756E2164756E21",
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-0-stroke-1-IconShieldUser"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.8096 1.53852C11.9315 1.4883 12.0685 1.4883 12.1904 1.53852L20.6904 5.03852C20.8776 5.11574 21 5.29794 21 5.50043V13.0004C20.9998 17.9708 16.9704 22.0004 12 22.0004C7.02958 22.0004 3.00023 17.9708 3 13.0004V5.50043C3 5.29794 3.12242 5.11574 3.30957 5.03852L11.8096 1.53852ZM12 15.0004C9.35053 15.0004 7.04515 16.2618 5.85645 18.1225C7.32393 19.8806 9.53086 21.0004 12 21.0004C14.4689 21.0004 16.6751 19.8803 18.1426 18.1225C16.9539 16.262 14.6493 15.0004 12 15.0004ZM12 7.00043C10.3431 7.00043 9 8.34358 9 10.0004C9.00023 11.6571 10.3433 13.0004 12 13.0004C13.6567 13.0004 14.9998 11.6571 15 10.0004C15 8.34358 13.6569 7.00043 12 7.00043Z",fill:"currentColor"}))}),P=h;export{P as default,h as IconShieldUser};
2
+
3
+ //# debugId=8F2175DE7539796464756E2164756E21
@@ -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-0-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.8096 1.53852C11.9315 1.4883 12.0685 1.4883 12.1904 1.53852L20.6904 5.03852C20.8776 5.11574 21 5.29794 21 5.50043V13.0004C20.9998 17.9708 16.9704 22.0004 12 22.0004C7.02958 22.0004 3.00023 17.9708 3 13.0004V5.50043C3 5.29794 3.12242 5.11574 3.30957 5.03852L11.8096 1.53852ZM12 15.0004C9.35053 15.0004 7.04515 16.2618 5.85645 18.1225C7.32393 19.8806 9.53086 21.0004 12 21.0004C14.4689 21.0004 16.6751 19.8803 18.1426 18.1225C16.9539 16.262 14.6493 15.0004 12 15.0004ZM12 7.00043C10.3431 7.00043 9 8.34358 9 10.0004C9.00023 11.6571 10.3433 13.0004 12 13.0004C13.6567 13.0004 14.9998 11.6571 15 10.0004C15 8.34358 13.6569 7.00043 12 7.00043Z\" 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,gBAA4xB,EAA5xB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ooBAAooB,KAAK,eAAc,CAAI,EACpyB,EAEc",
9
+ "debugId": "8F2175DE7539796464756E2164756E21",
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