@central-icons-react-native/round-filled-radius-3-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-3-stroke-1-IconShieldUser"},m.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.667 2.00789C11.5206 1.65639 12.4794 1.65639 13.333 2.00789L18.833 4.27254C20.1442 4.81257 20.9999 6.09079 21 7.50887V13.0001C21 17.9706 16.9705 22.0001 12 22.0001C7.02945 22.0001 3.00002 17.9706 3 13.0001V7.50887C3.00012 6.09079 3.85577 4.81257 5.16699 4.27254L10.667 2.00789ZM12 15.0001C9.35066 15.0001 7.0452 16.2616 5.85645 18.1221C7.32393 19.8804 9.53075 21.0001 12 21.0001C14.4688 21.0001 16.6751 19.8807 18.1426 18.1231C16.9539 16.2624 14.6495 15.0001 12 15.0001ZM12 7.00008C10.3431 7.00008 9 8.34322 9 10.0001C9.00002 11.6569 10.3432 13.0001 12 13.0001C13.6568 13.0001 15 11.6569 15 10.0001C15 8.34322 13.6569 7.00008 12 7.00008Z",fill:"currentColor"}))}),$=B;
2
+
3
+ //# debugId=55183D09DE6BF31464756E2164756E21
@@ -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-3-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.667 2.00789C11.5206 1.65639 12.4794 1.65639 13.333 2.00789L18.833 4.27254C20.1442 4.81257 20.9999 6.09079 21 7.50887V13.0001C21 17.9706 16.9705 22.0001 12 22.0001C7.02945 22.0001 3.00002 17.9706 3 13.0001V7.50887C3.00012 6.09079 3.85577 4.81257 5.16699 4.27254L10.667 2.00789ZM12 15.0001C9.35066 15.0001 7.0452 16.2616 5.85645 18.1221C7.32393 19.8804 9.53075 21.0001 12 21.0001C14.4688 21.0001 16.6751 19.8807 18.1426 18.1231C16.9539 16.2624 14.6495 15.0001 12 15.0001ZM12 7.00008C10.3431 7.00008 9 8.34322 9 10.0001C9.00002 11.6569 10.3432 13.0001 12 13.0001C13.6568 13.0001 15 11.6569 15 10.0001C15 8.34322 13.6569 7.00008 12 7.00008Z\" 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,wBAA2xB,EAA3xB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,moBAAmoB,KAAK,eAAc,CAAI,EACnyB,EAEc",
9
+ "debugId": "55183D09DE6BF31464756E2164756E21",
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-3-stroke-1-IconShieldUser"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M10.667 2.00789C11.5206 1.65639 12.4794 1.65639 13.333 2.00789L18.833 4.27254C20.1442 4.81257 20.9999 6.09079 21 7.50887V13.0001C21 17.9706 16.9705 22.0001 12 22.0001C7.02945 22.0001 3.00002 17.9706 3 13.0001V7.50887C3.00012 6.09079 3.85577 4.81257 5.16699 4.27254L10.667 2.00789ZM12 15.0001C9.35066 15.0001 7.0452 16.2616 5.85645 18.1221C7.32393 19.8804 9.53075 21.0001 12 21.0001C14.4688 21.0001 16.6751 19.8807 18.1426 18.1231C16.9539 16.2624 14.6495 15.0001 12 15.0001ZM12 7.00008C10.3431 7.00008 9 8.34322 9 10.0001C9.00002 11.6569 10.3432 13.0001 12 13.0001C13.6568 13.0001 15 11.6569 15 10.0001C15 8.34322 13.6569 7.00008 12 7.00008Z",fill:"currentColor"}))}),P=h;export{P as default,h as IconShieldUser};
2
+
3
+ //# debugId=21AE8365A4B7D8A864756E2164756E21
@@ -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-3-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.667 2.00789C11.5206 1.65639 12.4794 1.65639 13.333 2.00789L18.833 4.27254C20.1442 4.81257 20.9999 6.09079 21 7.50887V13.0001C21 17.9706 16.9705 22.0001 12 22.0001C7.02945 22.0001 3.00002 17.9706 3 13.0001V7.50887C3.00012 6.09079 3.85577 4.81257 5.16699 4.27254L10.667 2.00789ZM12 15.0001C9.35066 15.0001 7.0452 16.2616 5.85645 18.1221C7.32393 19.8804 9.53075 21.0001 12 21.0001C14.4688 21.0001 16.6751 19.8807 18.1426 18.1231C16.9539 16.2624 14.6495 15.0001 12 15.0001ZM12 7.00008C10.3431 7.00008 9 8.34322 9 10.0001C9.00002 11.6569 10.3432 13.0001 12 13.0001C13.6568 13.0001 15 11.6569 15 10.0001C15 8.34322 13.6569 7.00008 12 7.00008Z\" 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,gBAA2xB,EAA3xB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,moBAAmoB,KAAK,eAAc,CAAI,EACnyB,EAEc",
9
+ "debugId": "21AE8365A4B7D8A864756E2164756E21",
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