@central-icons-react-native/round-filled-radius-2-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.
- package/IconShieldUser/index.d.ts +4 -0
- package/IconShieldUser/index.js +3 -0
- package/IconShieldUser/index.js.map +11 -0
- package/IconShieldUser/index.mjs +3 -0
- package/IconShieldUser/index.mjs.map +11 -0
- package/README.md +1 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -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-2-stroke-1-IconShieldUser"},m.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.0479 1.85176C11.6576 1.60068 12.3424 1.60068 12.9521 1.85176L19.4521 4.52754C20.3888 4.9133 21 5.82704 21 6.84004V13.0002C20.9999 17.9707 16.9705 22.0002 12 22.0002C7.02949 22.0002 3.00009 17.9707 3 13.0002V6.84004C3 5.82704 3.6112 4.9133 4.54785 4.52754L11.0479 1.85176ZM12 15.0002C9.35062 15.0002 7.04518 16.2617 5.85645 18.1223C7.32393 19.8804 9.53079 21.0002 12 21.0002C14.4687 21.0002 16.6751 19.8808 18.1426 18.1232C16.9539 16.2625 14.6495 15.0002 12 15.0002ZM12 7.00019C10.3431 7.00019 9 8.34334 9 10.0002C9.00009 11.657 10.3432 13.0002 12 13.0002C13.6568 13.0002 14.9999 11.657 15 10.0002C15 8.34334 13.6569 7.00019 12 7.00019Z",fill:"currentColor"}))}),$=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=98152CA7C04FA7E964756E2164756E21
|
|
@@ -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-2-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.0479 1.85176C11.6576 1.60068 12.3424 1.60068 12.9521 1.85176L19.4521 4.52754C20.3888 4.9133 21 5.82704 21 6.84004V13.0002C20.9999 17.9707 16.9705 22.0002 12 22.0002C7.02949 22.0002 3.00009 17.9707 3 13.0002V6.84004C3 5.82704 3.6112 4.9133 4.54785 4.52754L11.0479 1.85176ZM12 15.0002C9.35062 15.0002 7.04518 16.2617 5.85645 18.1223C7.32393 19.8804 9.53079 21.0002 12 21.0002C14.4687 21.0002 16.6751 19.8808 18.1426 18.1232C16.9539 16.2625 14.6495 15.0002 12 15.0002ZM12 7.00019C10.3431 7.00019 9 8.34334 9 10.0002C9.00009 11.657 10.3432 13.0002 12 13.0002C13.6568 13.0002 14.9999 11.657 15 10.0002C15 8.34334 13.6569 7.00019 12 7.00019Z\" 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": "98152CA7C04FA7E964756E2164756E21",
|
|
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-2-stroke-1-IconShieldUser"},n.createElement(f,{fillRule:"evenodd",clipRule:"evenodd",d:"M11.0479 1.85176C11.6576 1.60068 12.3424 1.60068 12.9521 1.85176L19.4521 4.52754C20.3888 4.9133 21 5.82704 21 6.84004V13.0002C20.9999 17.9707 16.9705 22.0002 12 22.0002C7.02949 22.0002 3.00009 17.9707 3 13.0002V6.84004C3 5.82704 3.6112 4.9133 4.54785 4.52754L11.0479 1.85176ZM12 15.0002C9.35062 15.0002 7.04518 16.2617 5.85645 18.1223C7.32393 19.8804 9.53079 21.0002 12 21.0002C14.4687 21.0002 16.6751 19.8808 18.1426 18.1232C16.9539 16.2625 14.6495 15.0002 12 15.0002ZM12 7.00019C10.3431 7.00019 9 8.34334 9 10.0002C9.00009 11.657 10.3432 13.0002 12 13.0002C13.6568 13.0002 14.9999 11.657 15 10.0002C15 8.34334 13.6569 7.00019 12 7.00019Z",fill:"currentColor"}))}),P=h;export{P as default,h as IconShieldUser};
|
|
2
|
+
|
|
3
|
+
//# debugId=53619B626FFC733964756E2164756E21
|
|
@@ -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-2-stroke-1-IconShieldUser\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.0479 1.85176C11.6576 1.60068 12.3424 1.60068 12.9521 1.85176L19.4521 4.52754C20.3888 4.9133 21 5.82704 21 6.84004V13.0002C20.9999 17.9707 16.9705 22.0002 12 22.0002C7.02949 22.0002 3.00009 17.9707 3 13.0002V6.84004C3 5.82704 3.6112 4.9133 4.54785 4.52754L11.0479 1.85176ZM12 15.0002C9.35062 15.0002 7.04518 16.2617 5.85645 18.1223C7.32393 19.8804 9.53079 21.0002 12 21.0002C14.4687 21.0002 16.6751 19.8808 18.1426 18.1232C16.9539 16.2625 14.6495 15.0002 12 15.0002ZM12 7.00019C10.3431 7.00019 9 8.34334 9 10.0002C9.00009 11.657 10.3432 13.0002 12 13.0002C13.6568 13.0002 14.9999 11.657 15 10.0002C15 8.34334 13.6569 7.00019 12 7.00019Z\" 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": "53619B626FFC733964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|