@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.302 → 1.1.303
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/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
|
}
|
|
@@ -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
|
+
}
|