@central-icons-react-native/round-outlined-radius-0-stroke-1 1.1.303 → 1.1.305
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/IconBell2Active/index.d.ts +4 -0
- package/IconBell2Active/index.js +3 -0
- package/IconBell2Active/index.js.map +11 -0
- package/IconBell2Active/index.mjs +3 -0
- package/IconBell2Active/index.mjs.map +11 -0
- package/IconBell2Off/index.d.ts +4 -0
- package/IconBell2Off/index.js +3 -0
- package/IconBell2Off/index.js.map +11 -0
- package/IconBell2Off/index.mjs +3 -0
- package/IconBell2Off/index.mjs.map +11 -0
- package/IconBellActive/index.d.ts +4 -0
- package/IconBellActive/index.js +3 -0
- package/IconBellActive/index.js.map +11 -0
- package/IconBellActive/index.mjs +3 -0
- package/IconBellActive/index.mjs.map +11 -0
- package/README.md +3 -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 +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +4 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var L=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function h(o){return this[o]}var P,M,g=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var l=r?P??=new WeakMap:M??=new WeakMap,a=l.get(o);if(a)return a}e=o!=null?L(v(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let u of k(o))if(!f.call(m,u))p(m,u,{get:h.bind(o,u),enumerable:!0});if(n)l.set(o,m);return m},B=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of k(o))if(!f.call(r,n))p(r,n,{get:h.bind(o,n),enumerable:!(e=w(o,n))||e.enumerable})}return c.set(o,r),r},c;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var x=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>C});module.exports=B(b);var s=g(require("react")),t=require("react-native-svg"),C=({children:o,size:r=24,mode:e="masked",maskId:n,...l})=>{let a=e!=="raw"&&!!n;return s.default.createElement(t.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(t.G,{color:"#fff"},o)),s.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var $={};x($,{default:()=>j,IconBell2Active:()=>I});module.exports=B($);var i=g(require("react"));var d=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(C,{...o,maskId:"round-outlined-radius-0-stroke-1-IconBell2Active"},i.default.createElement(d.Path,{d:"M20.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.48498 5.28203 8.42883 2.5 12 2.5C15.5712 2.5 18.515 5.28203 18.6934 8.82543L18.9062 13L20.5 16.25V17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M5.38514 2C3.66355 3.51963 2.46922 5.6228 2.11169 8M18.6148 2C20.3364 3.51963 21.5307 5.6228 21.8883 8",stroke:"currentColor",strokeLinecap:"round"}))}),j=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=634526737D398FC464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Active/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 IconBell2Active: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBell2Active\"><Path d=\"M20.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.48498 5.28203 8.42883 2.5 12 2.5C15.5712 2.5 18.515 5.28203 18.6934 8.82543L18.9062 13L20.5 16.25V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.38514 2C3.66355 3.51963 2.46922 5.6228 2.11169 8M18.6148 2C20.3364 3.51963 21.5307 5.6228 21.8883 8\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBell2Active;\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,2EChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAoE,UAAM,KAAK,CAAC,IAAU,CACrG,OAAO,wBAAmnB,EAAnnB,IAAqB,EAAO,OAAO,oDAAmD,wBAAC,OAAD,CAAM,EAAE,4JAA4J,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yGAAyG,OAAO,eAAe,cAAc,QAAO,CAAI,EAC3nB,EAEc",
|
|
9
|
+
"debugId": "634526737D398FC464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as d,Mask as u,Rect as i,G as C}from"react-native-svg";var p=({children:n,size:r=24,mode:l="masked",maskId:t,...a})=>{let m=l!=="raw"&&!!t;return o.createElement(d,{...a,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(u,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as s}from"react-native-svg";var c=e.memo((n)=>{return e.createElement(p,{...n,maskId:"round-outlined-radius-0-stroke-1-IconBell2Active"},e.createElement(s,{d:"M20.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.48498 5.28203 8.42883 2.5 12 2.5C15.5712 2.5 18.515 5.28203 18.6934 8.82543L18.9062 13L20.5 16.25V17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M5.38514 2C3.66355 3.51963 2.46922 5.6228 2.11169 8M18.6148 2C20.3364 3.51963 21.5307 5.6228 21.8883 8",stroke:"currentColor",strokeLinecap:"round"}))}),w=c;export{w as default,c as IconBell2Active};
|
|
2
|
+
|
|
3
|
+
//# debugId=E6345606F0068E5A64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Active/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 IconBell2Active: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBell2Active\"><Path d=\"M20.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.48498 5.28203 8.42883 2.5 12 2.5C15.5712 2.5 18.515 5.28203 18.6934 8.82543L18.9062 13L20.5 16.25V17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.38514 2C3.66355 3.51963 2.46922 5.6228 2.11169 8M18.6148 2C20.3364 3.51963 21.5307 5.6228 21.8883 8\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBell2Active;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAmnB,EAAnnB,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,4JAA4J,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yGAAyG,OAAO,eAAe,cAAc,QAAO,CAAI,EAC3nB,EAEc",
|
|
9
|
+
"debugId": "E6345606F0068E5A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:w,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function h(o){return this[o]}var M,v,L=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var l=r?M??=new WeakMap:v??=new WeakMap,a=l.get(o);if(a)return a}e=o!=null?I(w(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let u of k(o))if(!c.call(m,u))p(m,u,{get:h.bind(o,u),enumerable:!0});if(n)l.set(o,m);return m},g=(o)=>{var r=(f??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of k(o))if(!c.call(r,n))p(r,n,{get:h.bind(o,n),enumerable:!(e=P(o,n))||e.enumerable})}return f.set(o,r),r},f;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var B=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};B(b,{CentralIconBase:()=>C});module.exports=g(b);var s=L(require("react")),t=require("react-native-svg"),C=({children:o,size:r=24,mode:e="masked",maskId:n,...l})=>{let a=e!=="raw"&&!!n;return s.default.createElement(t.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(t.G,{color:"#fff"},o)),s.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var j={};B(j,{default:()=>O,IconBell2Off:()=>x});module.exports=g(j);var i=L(require("react"));var d=require("react-native-svg"),x=i.default.memo((o)=>{return i.default.createElement(C,{...o,maskId:"round-outlined-radius-0-stroke-1-IconBell2Off"},i.default.createElement(d.Path,{d:"M20.5 17V16.25L18.9062 13L18.6934 8.82543C18.515 5.28203 15.5712 2.5 12 2.5C10.3964 2.5 8.91921 3.06099 7.76218 4M17.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.35507 7.8633 5.60739 6.9573 6.02079 6.14789",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M8.00684 17.7324C8.12711 19.8335 9.86902 21.5002 12.0002 21.5002C14.1314 21.5002 15.8733 19.8335 15.9936 17.7324",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M3 3L21 21",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),O=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=10839590EE9236CE64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Off/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 IconBell2Off: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBell2Off\"><Path d=\"M20.5 17V16.25L18.9062 13L18.6934 8.82543C18.515 5.28203 15.5712 2.5 12 2.5C10.3964 2.5 8.91921 3.06099 7.76218 4M17.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.35507 7.8633 5.60739 6.9573 6.02079 6.14789\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.00684 17.7324C8.12711 19.8335 9.86902 21.5002 12.0002 21.5002C14.1314 21.5002 15.8733 19.8335 15.9936 17.7324\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 3L21 21\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBell2Off;\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,wEChDY,IAAlB,sBAEqB,IAArB,8BAEa,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,wBAA0oB,EAA1oB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,EAAE,iNAAiN,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mHAAmH,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAClpB,EAEc",
|
|
9
|
+
"debugId": "10839590EE9236CE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as d,Mask as u,Rect as i,G as C}from"react-native-svg";var p=({children:n,size:r=24,mode:l="masked",maskId:t,...a})=>{let m=l!=="raw"&&!!t;return o.createElement(d,{...a,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(u,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as s}from"react-native-svg";var f=e.memo((n)=>{return e.createElement(p,{...n,maskId:"round-outlined-radius-0-stroke-1-IconBell2Off"},e.createElement(s,{d:"M20.5 17V16.25L18.9062 13L18.6934 8.82543C18.515 5.28203 15.5712 2.5 12 2.5C10.3964 2.5 8.91921 3.06099 7.76218 4M17.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.35507 7.8633 5.60739 6.9573 6.02079 6.14789",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M8.00684 17.7324C8.12711 19.8335 9.86902 21.5002 12.0002 21.5002C14.1314 21.5002 15.8733 19.8335 15.9936 17.7324",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M3 3L21 21",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),P=f;export{P as default,f as IconBell2Off};
|
|
2
|
+
|
|
3
|
+
//# debugId=B41FEF1AE8A2A69364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Off/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 IconBell2Off: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBell2Off\"><Path d=\"M20.5 17V16.25L18.9062 13L18.6934 8.82543C18.515 5.28203 15.5712 2.5 12 2.5C10.3964 2.5 8.91921 3.06099 7.76218 4M17.5 17.5H3.5V16.25L5.09375 13L5.30665 8.82543C5.35507 7.8633 5.60739 6.9573 6.02079 6.14789\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M8.00684 17.7324C8.12711 19.8335 9.86902 21.5002 12.0002 21.5002C14.1314 21.5002 15.8733 19.8335 15.9936 17.7324\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 3L21 21\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBell2Off;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAA0oB,EAA1oB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,iNAAiN,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,mHAAmH,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAClpB,EAEc",
|
|
9
|
+
"debugId": "B41FEF1AE8A2A69364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var v=Object.create;var{getPrototypeOf:w,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:L}=Object,f=Object.prototype.hasOwnProperty;function h(o){return this[o]}var P,M,g=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var l=r?P??=new WeakMap:M??=new WeakMap,a=l.get(o);if(a)return a}e=o!=null?v(w(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let u of k(o))if(!f.call(m,u))p(m,u,{get:h.bind(o,u),enumerable:!0});if(n)l.set(o,m);return m},B=(o)=>{var r=(c??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of k(o))if(!f.call(r,n))p(r,n,{get:h.bind(o,n),enumerable:!(e=L(o,n))||e.enumerable})}return c.set(o,r),r},c;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var x=(o,r)=>{for(var e in r)p(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>C});module.exports=B(b);var s=g(require("react")),t=require("react-native-svg"),C=({children:o,size:r=24,mode:e="masked",maskId:n,...l})=>{let a=e!=="raw"&&!!n;return s.default.createElement(t.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?s.default.createElement(s.default.Fragment,null,s.default.createElement(t.Mask,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},s.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),s.default.createElement(t.G,{color:"#fff"},o)),s.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};var $={};x($,{default:()=>j,IconBellActive:()=>I});module.exports=B($);var i=g(require("react"));var d=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(C,{...o,maskId:"round-outlined-radius-0-stroke-1-IconBellActive"},i.default.createElement(d.Path,{d:"M4.36407 9.36759C4.77896 5.46268 8.07312 2.5 12 2.5C15.9269 2.5 19.221 5.46269 19.6359 9.3676L20.5 17.5H3.5L4.36407 9.36759Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(d.Path,{d:"M1.8291 7C2.49394 4.99386 3.81843 3.26548 5.46206 2M18.5385 2C20.1821 3.26548 21.5065 4.99386 22.1714 7",stroke:"currentColor",strokeLinecap:"round"}))}),j=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=542EC26A41FACAAD64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBellActive/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 IconBellActive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBellActive\"><Path d=\"M4.36407 9.36759C4.77896 5.46268 8.07312 2.5 12 2.5C15.9269 2.5 19.221 5.46269 19.6359 9.3676L20.5 17.5H3.5L4.36407 9.36759Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M1.8291 7C2.49394 4.99386 3.81843 3.26548 5.46206 2M18.5385 2C20.1821 3.26548 21.5065 4.99386 22.1714 7\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBellActive;\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,wBAAslB,EAAtlB,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,OAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,cAAc,QAAO,CAAI,EAC9lB,EAEc",
|
|
9
|
+
"debugId": "542EC26A41FACAAD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import o from"react";import{Svg as d,Mask as u,Rect as i,G as C}from"react-native-svg";var p=({children:n,size:r=24,mode:l="masked",maskId:t,...a})=>{let m=l!=="raw"&&!!t;return o.createElement(d,{...a,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(u,{id:t,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(C,{color:"#fff"},n)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):n)};import e from"react";import{Path as s}from"react-native-svg";var c=e.memo((n)=>{return e.createElement(p,{...n,maskId:"round-outlined-radius-0-stroke-1-IconBellActive"},e.createElement(s,{d:"M4.36407 9.36759C4.77896 5.46268 8.07312 2.5 12 2.5C15.9269 2.5 19.221 5.46269 19.6359 9.3676L20.5 17.5H3.5L4.36407 9.36759Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M1.8291 7C2.49394 4.99386 3.81843 3.26548 5.46206 2M18.5385 2C20.1821 3.26548 21.5065 4.99386 22.1714 7",stroke:"currentColor",strokeLinecap:"round"}))}),L=c;export{L as default,c as IconBellActive};
|
|
2
|
+
|
|
3
|
+
//# debugId=6F9935348707074F64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconBellActive/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 IconBellActive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-0-stroke-1-IconBellActive\"><Path d=\"M4.36407 9.36759C4.77896 5.46268 8.07312 2.5 12 2.5C15.9269 2.5 19.221 5.46269 19.6359 9.3676L20.5 17.5H3.5L4.36407 9.36759Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17.5C16 19.7091 14.2091 21.5 12 21.5C9.79086 21.5 8 19.7091 8 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M1.8291 7C2.49394 4.99386 3.81843 3.26548 5.46206 2M18.5385 2C20.1821 3.26548 21.5065 4.99386 22.1714 7\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBellActive;\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,gBAAslB,EAAtlB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,+HAA+H,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yEAAyE,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,cAAc,QAAO,CAAI,EAC9lB,EAEc",
|
|
9
|
+
"debugId": "6F9935348707074F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED