@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.303 → 1.1.304
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/IconPageLock/index.js +2 -2
- package/IconPageLock/index.js.map +3 -3
- package/IconPageLock/index.mjs +2 -2
- package/IconPageLock/index.mjs.map +3 -3
- package/IconPageTextLock/index.js +2 -2
- package/IconPageTextLock/index.js.map +3 -3
- package/IconPageTextLock/index.mjs +2 -2
- package/IconPageTextLock/index.mjs.map +3 -3
- package/filtered-icons.json +1 -1
- package/icons-index.json +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +1 -1
package/IconPageLock/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:v,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function h(o){return this[o]}var H,y,k=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var p=r?H??=new WeakMap:y??=new WeakMap,i=p.get(o);if(i)return i}e=o!=null?B(v(o)):{};let m=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;for(let C of c(o))if(!g.call(m,C))s(m,C,{get:h.bind(o,C),enumerable:!0});if(t)p.set(o,m);return m},x=(o)=>{var r=(u??=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 c(o))if(!g.call(r,t))s(r,t,{get:h.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return u.set(o,r),r},u;var M=(o)=>o;function S(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:S.bind(r,e)})};var V={};I(V,{CentralIconBase:()=>d});module.exports=x(V);var l=k(require("react")),n=require("react-native-svg"),d=({children:o,size:r=24,mode:e="masked",maskId:t,...p})=>{let i=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...p,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 b={};I(b,{default:()=>Z,IconPageLock:()=>P});module.exports=x(b);var a=k(require("react"));var f=require("react-native-svg"),P=a.default.memo((o)=>{return a.default.createElement(d,{...o,maskId:"square-filled-radius-0-stroke-1-IconPageLock"},a.default.createElement(f.Path,{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),a.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),Z=P;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=6FC73256CC03DAC764756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageLock/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><Path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><Path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
|
|
7
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,wEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,wEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,wBAA2a,EAA3a,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACnb,EAEc",
|
|
9
|
+
"debugId": "6FC73256CC03DAC764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPageLock/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import o from"react";import{Svg as C,Mask as d,Rect as l,G as f}from"react-native-svg";var s=({children:e,size:r=24,mode:p="masked",maskId:n,...i})=>{let m=p!=="raw"&&!!n;return o.createElement(C,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},e)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as a}from"react-native-svg";var u=t.memo((e)=>{return t.createElement(s,{...e,maskId:"square-filled-radius-0-stroke-1-IconPageLock"},t.createElement(a,{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
1
|
+
import o from"react";import{Svg as C,Mask as d,Rect as l,G as f}from"react-native-svg";var s=({children:e,size:r=24,mode:p="masked",maskId:n,...i})=>{let m=p!=="raw"&&!!n;return o.createElement(C,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},e)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as a}from"react-native-svg";var u=t.memo((e)=>{return t.createElement(s,{...e,maskId:"square-filled-radius-0-stroke-1-IconPageLock"},t.createElement(a,{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),t.createElement(a,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconPageLock};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=2F7DC686D4F0CCBA64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageLock/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><Path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><Path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
|
|
7
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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAA2a,EAA3a,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACnb,EAEc",
|
|
9
|
+
"debugId": "2F7DC686D4F0CCBA64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:P,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:V}=Object,g=Object.prototype.hasOwnProperty;function h(o){return this[o]}var B,w,x=(o,e,r)=>{var t=o!=null&&typeof o==="object";if(t){var p=e?B??=new WeakMap:w??=new WeakMap,a=p.get(o);if(a)return a}r=o!=null?I(P(o)):{};let m=e||!o||!o.__esModule?s(r,"default",{value:o,enumerable:!0}):r;for(let d of c(o))if(!g.call(m,d))s(m,d,{get:h.bind(o,d),enumerable:!0});if(t)p.set(o,m);return m},H=(o)=>{var e=(u??=new WeakMap).get(o),r;if(e)return e;if(e=s({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!g.call(e,t))s(e,t,{get:h.bind(o,t),enumerable:!(r=V(o,t))||r.enumerable})}return u.set(o,e),e},u;var M=(o)=>o;function y(o,e){this[o]=M.bind(null,e)}var k=(o,e)=>{for(var r in e)s(o,r,{get:e[r],enumerable:!0,configurable:!0,set:y.bind(e,r)})};var S={};k(S,{CentralIconBase:()=>f});module.exports=H(S);var l=x(require("react")),n=require("react-native-svg"),f=({children:o,size:e=24,mode:r="masked",maskId:t,...p})=>{let a=r!=="raw"&&!!t;return l.default.createElement(n.Svg,{...p,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},a?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={};k(Z,{default:()=>b,IconPageTextLock:()=>v});module.exports=H(Z);var i=x(require("react"));var C=require("react-native-svg"),v=i.default.memo((o)=>{return i.default.createElement(f,{...o,maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},i.default.createElement(C.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),i.default.createElement(C.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),b=v;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=90592DC981B5DE3564756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageTextLock/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
|
|
7
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,4EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,4EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAAif,EAAjf,IAAqB,EAAO,OAAO,oDAAmD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACzf,EAEc",
|
|
9
|
+
"debugId": "90592DC981B5DE3564756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import o from"react";import{Svg as d,Mask as f,Rect as l,G as C}from"react-native-svg";var s=({children:r,size:e=24,mode:p="masked",maskId:n,...a})=>{let m=p!=="raw"&&!!n;return o.createElement(d,{...a,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(f,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},r)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};import t from"react";import{Path as i}from"react-native-svg";var u=t.memo((r)=>{return t.createElement(s,{...r,maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},t.createElement(i,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),t.createElement(i,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
1
|
+
import o from"react";import{Svg as d,Mask as f,Rect as l,G as C}from"react-native-svg";var s=({children:r,size:e=24,mode:p="masked",maskId:n,...a})=>{let m=p!=="raw"&&!!n;return o.createElement(d,{...a,width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none"},m?o.createElement(o.Fragment,null,o.createElement(f,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},r)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};import t from"react";import{Path as i}from"react-native-svg";var u=t.memo((r)=>{return t.createElement(s,{...r,maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},t.createElement(i,{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),t.createElement(i,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),V=u;export{V as default,u as IconPageTextLock};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=C7021B330FFE7E4364756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPageTextLock/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
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 IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
|
|
7
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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAAif,EAAjf,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACzf,EAEc",
|
|
9
|
+
"debugId": "C7021B330FFE7E4364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|