@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.302 → 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/IconChart8/index.js +2 -2
- package/IconChart8/index.js.map +3 -3
- package/IconChart8/index.mjs +2 -2
- package/IconChart8/index.mjs.map +3 -3
- 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/IconWave/index.d.ts +4 -0
- package/IconWave/index.js +3 -0
- package/IconWave/index.js.map +11 -0
- package/IconWave/index.mjs +3 -0
- package/IconWave/index.mjs.map +11 -0
- package/IconWaveRound2/index.d.ts +4 -0
- package/IconWaveRound2/index.js +3 -0
- package/IconWaveRound2/index.js.map +11 -0
- package/IconWaveRound2/index.mjs +3 -0
- package/IconWaveRound2/index.mjs.map +11 -0
- package/README.md +2 -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 +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
package/IconChart8/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:V,defineProperty:l,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,C=Object.prototype.hasOwnProperty;function c(r){return this[r]}var w,P,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var a=o?w??=new WeakMap:P??=new WeakMap,p=a.get(r);if(p)return p}e=r!=null?H(V(r)):{};let m=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let d of u(r))if(!C.call(m,d))l(m,d,{get:c.bind(r,d),enumerable:!0});if(t)a.set(r,m);return m},x=(r)=>{var o=(h??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!C.call(o,t))l(o,t,{get:c.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return h.set(r,o),o},h;var M=(r)=>r;function y(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var S={};I(S,{CentralIconBase:()=>f});module.exports=x(S);var s=g(require("react")),n=require("react-native-svg"),f=({children:r,size:o=24,mode:e="masked",maskId:t,...a})=>{let p=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...a,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var Z={};I(Z,{default:()=>b,IconChart8:()=>B});module.exports=x(Z);var i=g(require("react"));var k=require("react-native-svg"),B=i.default.memo((r)=>{return i.default.createElement(f,{...r,maskId:"square-filled-radius-0-stroke-1-IconChart8"},i.default.createElement(k.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 17H8V12H7V17ZM11.5 17H12.5V7H11.5V17ZM16 10V17H17V10H16Z",fill:"currentColor"}))}),b=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A0BF8A5442F8E85464756E2164756E21
|
package/IconChart8/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconChart8/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 {
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChart8: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconChart8\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 17H8V12H7V17ZM11.5 17H12.5V7H11.5V17ZM16 10V17H17V10H16Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconChart8;\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,sEChDY,IAAlB,
|
|
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,sEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA+D,UAAM,KAAK,CAAC,IAAU,CAChG,OAAO,wBAAoO,EAApO,IAAqB,EAAO,OAAO,8CAA6C,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+EAA+E,KAAK,eAAc,CAAI,EAC5O,EAEc",
|
|
9
|
+
"debugId": "A0BF8A5442F8E85464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconChart8/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import r from"react";import{Svg as i,Mask as d,Rect as s,G as f}from"react-native-svg";var l=({children:e,size:o=24,mode:a="masked",maskId:t,...p})=>{let m=a!=="raw"&&!!t;return r.createElement(i,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},m?r.createElement(r.Fragment,null,r.createElement(d,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(f,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as h}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(l,{...e,maskId:"square-filled-radius-0-stroke-1-IconChart8"},n.createElement(h,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 21H3V3H21V21ZM7 17H8V12H7V17ZM11.5 17H12.5V7H11.5V17ZM16 10V17H17V10H16Z",fill:"currentColor"}))}),v=u;export{v as default,u as IconChart8};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=787B7DAA41453CB064756E2164756E21
|
package/IconChart8/index.mjs.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconChart8/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 {
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconChart8: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconChart8\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 21H3V3H21V21ZM7 17H8V12H7V17ZM11.5 17H12.5V7H11.5V17ZM16 10V17H17V10H16Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconChart8;\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,
|
|
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,EAA+D,EAAM,KAAK,CAAC,IAAU,CAChG,OAAO,gBAAoO,EAApO,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+EAA+E,KAAK,eAAc,CAAI,EAC5O,EAEc",
|
|
9
|
+
"debugId": "787B7DAA41453CB064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
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
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:V,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,C=Object.prototype.hasOwnProperty;function c(r){return this[r]}var w,P,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?w??=new WeakMap:P??=new WeakMap,p=m.get(r);if(p)return p}e=r!=null?H(V(r)):{};let l=o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let f of u(r))if(!C.call(l,f))a(l,f,{get:c.bind(r,f),enumerable:!0});if(t)m.set(r,l);return l},x=(r)=>{var o=(h??=new WeakMap).get(r),e;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!C.call(o,t))a(o,t,{get:c.bind(r,t),enumerable:!(e=v(r,t))||e.enumerable})}return h.set(r,o),o},h;var y=(r)=>r;function S(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var b={};I(b,{CentralIconBase:()=>d});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...m})=>{let p=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...m,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},p?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},r)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var M={};I(M,{default:()=>$,IconWave:()=>B});module.exports=x(M);var i=g(require("react"));var k=require("react-native-svg"),B=i.default.memo((r)=>{return i.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-1-IconWave"},i.default.createElement(k.Path,{d:"M12.5 20H16.5V11H22V12H17.5V21H11.5V4H7.5V12.5H2V11.5H6.5V3H12.5V20Z",fill:"currentColor"}))}),$=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=F712C7584DCF597864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWave/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 IconWave: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconWave\"><Path d=\"M12.5 20H16.5V11H22V12H17.5V21H11.5V4H7.5V12.5H2V11.5H6.5V3H12.5V20Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWave;\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,oEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAA6D,UAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,wBAAoL,EAApL,IAAqB,EAAO,OAAO,4CAA2C,wBAAC,OAAD,CAAM,EAAE,uEAAuE,KAAK,eAAc,CAAI,EAC5L,EAEc",
|
|
9
|
+
"debugId": "F712C7584DCF597864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import r from"react";import{Svg as i,Mask as f,Rect as s,G as d}from"react-native-svg";var a=({children:e,size:o=24,mode:m="masked",maskId:t,...p})=>{let l=m!=="raw"&&!!t;return r.createElement(i,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},l?r.createElement(r.Fragment,null,r.createElement(f,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},e)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as h}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(a,{...e,maskId:"square-filled-radius-0-stroke-1-IconWave"},n.createElement(h,{d:"M12.5 20H16.5V11H22V12H17.5V21H11.5V4H7.5V12.5H2V11.5H6.5V3H12.5V20Z",fill:"currentColor"}))}),v=u;export{v as default,u as IconWave};
|
|
2
|
+
|
|
3
|
+
//# debugId=A565313AEED3632164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWave/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 IconWave: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconWave\"><Path d=\"M12.5 20H16.5V11H22V12H17.5V21H11.5V4H7.5V12.5H2V11.5H6.5V3H12.5V20Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWave;\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,EAA6D,EAAM,KAAK,CAAC,IAAU,CAC9F,OAAO,gBAAoL,EAApL,IAAqB,EAAO,OAAO,4CAA2C,gBAAC,EAAD,CAAM,EAAE,uEAAuE,KAAK,eAAc,CAAI,EAC5L,EAEc",
|
|
9
|
+
"debugId": "A565313AEED3632164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var V=Object.create;var{getPrototypeOf:v,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,h=Object.prototype.hasOwnProperty;function c(o){return this[o]}var P,y,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var C=r?P??=new WeakMap:y??=new WeakMap,m=C.get(o);if(m)return m}e=o!=null?V(v(o)):{};let p=r||!o||!o.__esModule?a(e,"default",{value:o,enumerable:!0}):e;for(let i of u(o))if(!h.call(p,i))a(p,i,{get:c.bind(o,i),enumerable:!0});if(t)C.set(o,p);return p},x=(o)=>{var r=(d??=new WeakMap).get(o),e;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!h.call(r,t))a(r,t,{get:c.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return d.set(o,r),r},d;var S=(o)=>o;function H(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)a(o,e,{get:r[e],enumerable:!0,configurable:!0,set:H.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>f});module.exports=x(b);var s=g(require("react")),n=require("react-native-svg"),f=({children:o,size:r=24,mode:e="masked",maskId:t,...C})=>{let m=e!=="raw"&&!!t;return s.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"},m?s.default.createElement(s.default.Fragment,null,s.default.createElement(n.Mask,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(n.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(n.G,{color:"#fff"},o)),s.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):o)};var M={};I(M,{default:()=>$,IconWaveRound2:()=>B});module.exports=x(M);var l=g(require("react"));var k=require("react-native-svg"),B=l.default.memo((o)=>{return l.default.createElement(f,{...o,maskId:"square-filled-radius-0-stroke-1-IconWaveRound2"},l.default.createElement(k.Path,{d:"M9.5 3C11.1569 3 12.5 4.34315 12.5 6V18C12.5 19.1046 13.3954 20 14.5 20C15.6046 20 16.5 19.1046 16.5 18V14.5C16.5 12.567 18.067 11 20 11H22V12H20C18.6193 12 17.5 13.1193 17.5 14.5V18C17.5 19.6569 16.1569 21 14.5 21C12.8431 21 11.5 19.6569 11.5 18V6C11.5 4.89543 10.6046 4 9.5 4C8.39543 4 7.5 4.89543 7.5 6V9C7.5 10.933 5.933 12.5 4 12.5H2V11.5H4C5.38071 11.5 6.5 10.3807 6.5 9V6C6.5 4.34315 7.84315 3 9.5 3Z",fill:"currentColor"}))}),$=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=40C0FA280ADB22D864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWaveRound2/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 IconWaveRound2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconWaveRound2\"><Path d=\"M9.5 3C11.1569 3 12.5 4.34315 12.5 6V18C12.5 19.1046 13.3954 20 14.5 20C15.6046 20 16.5 19.1046 16.5 18V14.5C16.5 12.567 18.067 11 20 11H22V12H20C18.6193 12 17.5 13.1193 17.5 14.5V18C17.5 19.6569 16.1569 21 14.5 21C12.8431 21 11.5 19.6569 11.5 18V6C11.5 4.89543 10.6046 4 9.5 4C8.39543 4 7.5 4.89543 7.5 6V9C7.5 10.933 5.933 12.5 4 12.5H2V11.5H4C5.38071 11.5 6.5 10.3807 6.5 9V6C6.5 4.34315 7.84315 3 9.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWaveRound2;\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,wBAA6gB,EAA7gB,IAAqB,EAAO,OAAO,kDAAiD,wBAAC,OAAD,CAAM,EAAE,0ZAA0Z,KAAK,eAAc,CAAI,EACrhB,EAEc",
|
|
9
|
+
"debugId": "40C0FA280ADB22D864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as l,Mask as i,Rect as s,G as f}from"react-native-svg";var a=({children:e,size:r=24,mode:C="masked",maskId:t,...m})=>{let p=C!=="raw"&&!!t;return o.createElement(l,{...m,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(i,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(s,{width:"24",height:"24",fill:"#000"}),o.createElement(f,{color:"#fff"},e)),o.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):e)};import n from"react";import{Path as d}from"react-native-svg";var u=n.memo((e)=>{return n.createElement(a,{...e,maskId:"square-filled-radius-0-stroke-1-IconWaveRound2"},n.createElement(d,{d:"M9.5 3C11.1569 3 12.5 4.34315 12.5 6V18C12.5 19.1046 13.3954 20 14.5 20C15.6046 20 16.5 19.1046 16.5 18V14.5C16.5 12.567 18.067 11 20 11H22V12H20C18.6193 12 17.5 13.1193 17.5 14.5V18C17.5 19.6569 16.1569 21 14.5 21C12.8431 21 11.5 19.6569 11.5 18V6C11.5 4.89543 10.6046 4 9.5 4C8.39543 4 7.5 4.89543 7.5 6V9C7.5 10.933 5.933 12.5 4 12.5H2V11.5H4C5.38071 11.5 6.5 10.3807 6.5 9V6C6.5 4.34315 7.84315 3 9.5 3Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconWaveRound2};
|
|
2
|
+
|
|
3
|
+
//# debugId=7D96D6466C2A285764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconWaveRound2/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 IconWaveRound2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1-IconWaveRound2\"><Path d=\"M9.5 3C11.1569 3 12.5 4.34315 12.5 6V18C12.5 19.1046 13.3954 20 14.5 20C15.6046 20 16.5 19.1046 16.5 18V14.5C16.5 12.567 18.067 11 20 11H22V12H20C18.6193 12 17.5 13.1193 17.5 14.5V18C17.5 19.6569 16.1569 21 14.5 21C12.8431 21 11.5 19.6569 11.5 18V6C11.5 4.89543 10.6046 4 9.5 4C8.39543 4 7.5 4.89543 7.5 6V9C7.5 10.933 5.933 12.5 4 12.5H2V11.5H4C5.38071 11.5 6.5 10.3807 6.5 9V6C6.5 4.34315 7.84315 3 9.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWaveRound2;\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,gBAA6gB,EAA7gB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,0ZAA0Z,KAAK,eAAc,CAAI,EACrhB,EAEc",
|
|
9
|
+
"debugId": "7D96D6466C2A285764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|