@central-icons-react-native/square-filled-radius-0-stroke-2 1.1.304 → 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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBell2Active: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBell2Active;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:L,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,h=Object.prototype.hasOwnProperty;function g(r){return this[r]}var P,M,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?P??=new WeakMap:M??=new WeakMap,C=p.get(r);if(C)return C}e=r!=null?k(L(r)):{};let m=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let d of c(r))if(!h.call(m,d))i(m,d,{get:g.bind(r,d),enumerable:!0});if(t)p.set(r,m);return m},v=(r)=>{var o=(u??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))i(o,t,{get:g.bind(r,t),enumerable:!(e=w(r,t))||e.enumerable})}return u.set(r,o),o},u;var y=(r)=>r;function S(r,o){this[r]=y.bind(null,o)}var x=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var Z={};x(Z,{CentralIconBase:()=>f});module.exports=v(Z);var l=B(require("react")),n=require("react-native-svg"),f=({children:r,size:o=24,mode:e="masked",maskId:t,...p})=>{let C=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?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"},r)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var b={};x(b,{default:()=>H,IconBell2Active:()=>I});module.exports=v(b);var s=B(require("react"));var a=require("react-native-svg"),I=s.default.memo((r)=>{return s.default.createElement(f,{...r,maskId:"square-filled-radius-0-stroke-2-IconBell2Active"},s.default.createElement(a.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V18H16.9004C16.4371 20.2822 14.419 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.89571 5.05335 8.10608 2 12 2ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z",fill:"currentColor"}),s.default.createElement(a.Path,{d:"M6.60059 2.29883C4.6381 3.77308 3.30016 6.02785 3.04492 8.59863L1.05371 8.40137C1.36618 5.25342 3.00548 2.49745 5.39941 0.699219L6.60059 2.29883Z",fill:"currentColor"}),s.default.createElement(a.Path,{d:"M18.6006 0.699219C20.9944 2.49745 22.6338 5.25348 22.9463 8.40137L20.9561 8.59863C20.7008 6.02779 19.362 3.77309 17.3994 2.29883L18.6006 0.699219Z",fill:"currentColor"}))}),H=I;
2
+
3
+ //# debugId=4D0069919E48D3D964756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBell2Active\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V18H16.9004C16.4371 20.2822 14.419 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.89571 5.05335 8.10608 2 12 2ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z\" fill=\"currentColor\"/><Path d=\"M6.60059 2.29883C4.6381 3.77308 3.30016 6.02785 3.04492 8.59863L1.05371 8.40137C1.36618 5.25342 3.00548 2.49745 5.39941 0.699219L6.60059 2.29883Z\" fill=\"currentColor\"/><Path d=\"M18.6006 0.699219C20.9944 2.49745 22.6338 5.25348 22.9463 8.40137L20.9561 8.59863C20.7008 6.02779 19.362 3.77309 17.3994 2.29883L18.6006 0.699219Z\" fill=\"currentColor\"/></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,wBAA8zB,EAA9zB,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iUAAiU,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,EACt0B,EAEc",
9
+ "debugId": "4D0069919E48D3D964756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as a,Mask as d,Rect as s,G as f}from"react-native-svg";var i=({children:t,size:o=24,mode:p="masked",maskId:n,...C})=>{let m=p!=="raw"&&!!n;return r.createElement(a,{...C,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:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(f,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as l}from"react-native-svg";var u=e.memo((t)=>{return e.createElement(i,{...t,maskId:"square-filled-radius-0-stroke-2-IconBell2Active"},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V18H16.9004C16.4371 20.2822 14.419 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.89571 5.05335 8.10608 2 12 2ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z",fill:"currentColor"}),e.createElement(l,{d:"M6.60059 2.29883C4.6381 3.77308 3.30016 6.02785 3.04492 8.59863L1.05371 8.40137C1.36618 5.25342 3.00548 2.49745 5.39941 0.699219L6.60059 2.29883Z",fill:"currentColor"}),e.createElement(l,{d:"M18.6006 0.699219C20.9944 2.49745 22.6338 5.25348 22.9463 8.40137L20.9561 8.59863C20.7008 6.02779 19.362 3.77309 17.3994 2.29883L18.6006 0.699219Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconBell2Active};
2
+
3
+ //# debugId=2C596D81CD0E389B64756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBell2Active\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V18H16.9004C16.4371 20.2822 14.419 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.89571 5.05335 8.10608 2 12 2ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z\" fill=\"currentColor\"/><Path d=\"M6.60059 2.29883C4.6381 3.77308 3.30016 6.02785 3.04492 8.59863L1.05371 8.40137C1.36618 5.25342 3.00548 2.49745 5.39941 0.699219L6.60059 2.29883Z\" fill=\"currentColor\"/><Path d=\"M18.6006 0.699219C20.9944 2.49745 22.6338 5.25348 22.9463 8.40137L20.9561 8.59863C20.7008 6.02779 19.362 3.77309 17.3994 2.29883L18.6006 0.699219Z\" fill=\"currentColor\"/></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,gBAA8zB,EAA9zB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iUAAiU,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,EACt0B,EAEc",
9
+ "debugId": "2C596D81CD0E389B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBell2Off: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBell2Off;
@@ -0,0 +1,3 @@
1
+ var k=Object.create;var{getPrototypeOf:v,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,h=Object.prototype.hasOwnProperty;function g(o){return this[o]}var P,y,B=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var i=r?P??=new WeakMap:y??=new WeakMap,m=i.get(o);if(m)return m}e=o!=null?k(v(o)):{};let a=r||!o||!o.__esModule?s(e,"default",{value:o,enumerable:!0}):e;for(let f of c(o))if(!h.call(a,f))s(a,f,{get:g.bind(o,f),enumerable:!0});if(t)i.set(o,a);return a},L=(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(!h.call(r,t))s(r,t,{get:g.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 x=(o,r)=>{for(var e in r)s(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>C});module.exports=L(b);var l=B(require("react")),n=require("react-native-svg"),C=({children:o,size:r=24,mode:e="masked",maskId:t,...i})=>{let m=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...i,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},m?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 O={};x(O,{default:()=>Z,IconBell2Off:()=>I});module.exports=L(O);var p=B(require("react"));var d=require("react-native-svg"),I=p.default.memo((o)=>{return p.default.createElement(C,{...o,maskId:"square-filled-radius-0-stroke-2-IconBell2Off"},p.default.createElement(d.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.707 20.293L20.293 21.707L16.8408 18.2549C16.284 20.4088 14.328 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.74212 8.12372 4.91814 7.34276 5.20508 6.61914L1.29297 2.70703L2.70703 1.29297L21.707 20.293ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z",fill:"currentColor"}),p.default.createElement(d.Path,{d:"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V16.8359L7.62207 3.45801C8.84471 2.54184 10.3614 2 12 2Z",fill:"currentColor"}))}),Z=I;
2
+
3
+ //# debugId=4ED390F8BC6E447F64756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBell2Off\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.707 20.293L20.293 21.707L16.8408 18.2549C16.284 20.4088 14.328 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.74212 8.12372 4.91814 7.34276 5.20508 6.61914L1.29297 2.70703L2.70703 1.29297L21.707 20.293ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z\" fill=\"currentColor\"/><Path d=\"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V16.8359L7.62207 3.45801C8.84471 2.54184 10.3614 2 12 2Z\" fill=\"currentColor\"/></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,wBAA+oB,EAA/oB,IAAqB,EAAO,OAAO,gDAA+C,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sVAAsV,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,CAAI,EACvpB,EAEc",
9
+ "debugId": "4ED390F8BC6E447F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as f,Mask as C,Rect as l,G as d}from"react-native-svg";var s=({children:e,size:r=24,mode:i="masked",maskId:n,...m})=>{let a=i!=="raw"&&!!n;return o.createElement(f,{...m,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},a?o.createElement(o.Fragment,null,o.createElement(C,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(l,{width:"24",height:"24",fill:"#000"}),o.createElement(d,{color:"#fff"},e)),o.createElement(l,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};import t from"react";import{Path as p}from"react-native-svg";var u=t.memo((e)=>{return t.createElement(s,{...e,maskId:"square-filled-radius-0-stroke-2-IconBell2Off"},t.createElement(p,{fillRule:"evenodd",clipRule:"evenodd",d:"M21.707 20.293L20.293 21.707L16.8408 18.2549C16.284 20.4088 14.328 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.74212 8.12372 4.91814 7.34276 5.20508 6.61914L1.29297 2.70703L2.70703 1.29297L21.707 20.293ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z",fill:"currentColor"}),t.createElement(p,{d:"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V16.8359L7.62207 3.45801C8.84471 2.54184 10.3614 2 12 2Z",fill:"currentColor"}))}),w=u;export{w as default,u as IconBell2Off};
2
+
3
+ //# debugId=00386C72D1A961A564756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBell2Off\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.707 20.293L20.293 21.707L16.8408 18.2549C16.284 20.4088 14.328 22 12 22C9.58104 22 7.56288 20.2822 7.09961 18H3V15.7637L4.51172 12.7402L4.70117 8.94238C4.74212 8.12372 4.91814 7.34276 5.20508 6.61914L1.29297 2.70703L2.70703 1.29297L21.707 20.293ZM9.1709 18C9.58275 19.1652 10.6938 20 12 20C13.3062 20 14.4172 19.1652 14.8291 18H9.1709Z\" fill=\"currentColor\"/><Path d=\"M12 2C15.8939 2 19.1043 5.05335 19.2988 8.94238L19.4883 12.7402L21 15.7637V16.8359L7.62207 3.45801C8.84471 2.54184 10.3614 2 12 2Z\" fill=\"currentColor\"/></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,gBAA+oB,EAA/oB,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sVAAsV,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qIAAqI,KAAK,eAAc,CAAI,EACvpB,EAEc",
9
+ "debugId": "00386C72D1A961A564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBellActive: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBellActive;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:w,defineProperty:i,getOwnPropertyNames:c,getOwnPropertyDescriptor:L}=Object,h=Object.prototype.hasOwnProperty;function g(r){return this[r]}var P,M,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?P??=new WeakMap:M??=new WeakMap,C=p.get(r);if(C)return C}e=r!=null?v(w(r)):{};let a=o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e;for(let f of c(r))if(!h.call(a,f))i(a,f,{get:g.bind(r,f),enumerable:!0});if(t)p.set(r,a);return a},x=(r)=>{var o=(u??=new WeakMap).get(r),e;if(o)return o;if(o=i({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!h.call(o,t))i(o,t,{get:g.bind(r,t),enumerable:!(e=L(r,t))||e.enumerable})}return u.set(r,o),o},u;var y=(r)=>r;function S(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>d});module.exports=x(Z);var l=B(require("react")),n=require("react-native-svg"),d=({children:r,size:o=24,mode:e="masked",maskId:t,...p})=>{let C=e!=="raw"&&!!t;return l.default.createElement(n.Svg,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?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"},r)),l.default.createElement(n.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${t})`})):r)};var b={};I(b,{default:()=>$,IconBellActive:()=>k});module.exports=x(b);var s=B(require("react"));var m=require("react-native-svg"),k=s.default.memo((r)=>{return s.default.createElement(d,{...r,maskId:"square-filled-radius-0-stroke-2-IconBellActive"},s.default.createElement(m.Path,{d:"M16.584 19C15.8124 20.7659 14.0503 22 12 22C9.94968 22 8.18757 20.7659 7.41602 19H16.584Z",fill:"currentColor"}),s.default.createElement(m.Path,{d:"M12 2C16.2077 2.00002 19.7382 5.17265 20.1865 9.35645L21 17.5H3L3.81348 9.35645C4.26177 5.17264 7.79224 2 12 2Z",fill:"currentColor"}),s.default.createElement(m.Path,{d:"M18.5635 0.783203C20.8552 2.34538 22.7086 4.73187 23.374 7.58594L21.4268 8.04004C20.892 5.74635 19.3799 3.76079 17.4375 2.43652L18.001 1.61035L18.5635 0.783203Z",fill:"currentColor"}),s.default.createElement(m.Path,{d:"M6.56348 2.43652C4.6209 3.76075 3.10888 5.74546 2.57422 8.03906L0.625977 7.58594C1.29118 4.73173 3.14579 2.34535 5.4375 0.783203L6.56348 2.43652Z",fill:"currentColor"}))}),$=k;
2
+
3
+ //# debugId=96D12D5A7856418164756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBellActive\"><Path d=\"M16.584 19C15.8124 20.7659 14.0503 22 12 22C9.94968 22 8.18757 20.7659 7.41602 19H16.584Z\" fill=\"currentColor\"/><Path d=\"M12 2C16.2077 2.00002 19.7382 5.17265 20.1865 9.35645L21 17.5H3L3.81348 9.35645C4.26177 5.17264 7.79224 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M18.5635 0.783203C20.8552 2.34538 22.7086 4.73187 23.374 7.58594L21.4268 8.04004C20.892 5.74635 19.3799 3.76079 17.4375 2.43652L18.001 1.61035L18.5635 0.783203Z\" fill=\"currentColor\"/><Path d=\"M6.56348 2.43652C4.6209 3.76075 3.10888 5.74546 2.57422 8.03906L0.625977 7.58594C1.29118 4.73173 3.14579 2.34535 5.4375 0.783203L6.56348 2.43652Z\" fill=\"currentColor\"/></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,wBAA+sB,EAA/sB,IAAqB,EAAO,OAAO,kDAAiD,wBAAC,OAAD,CAAM,EAAE,4FAA4F,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,CAAI,EACvtB,EAEc",
9
+ "debugId": "96D12D5A7856418164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";import{Svg as a,Mask as f,Rect as s,G as d}from"react-native-svg";var i=({children:t,size:o=24,mode:m="masked",maskId:l,...p})=>{let C=m!=="raw"&&!!l;return r.createElement(a,{...p,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C?r.createElement(r.Fragment,null,r.createElement(f,{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(s,{width:"24",height:"24",fill:"#000"}),r.createElement(d,{color:"#fff"},t)),r.createElement(s,{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):t)};import e from"react";import{Path as n}from"react-native-svg";var u=e.memo((t)=>{return e.createElement(i,{...t,maskId:"square-filled-radius-0-stroke-2-IconBellActive"},e.createElement(n,{d:"M16.584 19C15.8124 20.7659 14.0503 22 12 22C9.94968 22 8.18757 20.7659 7.41602 19H16.584Z",fill:"currentColor"}),e.createElement(n,{d:"M12 2C16.2077 2.00002 19.7382 5.17265 20.1865 9.35645L21 17.5H3L3.81348 9.35645C4.26177 5.17264 7.79224 2 12 2Z",fill:"currentColor"}),e.createElement(n,{d:"M18.5635 0.783203C20.8552 2.34538 22.7086 4.73187 23.374 7.58594L21.4268 8.04004C20.892 5.74635 19.3799 3.76079 17.4375 2.43652L18.001 1.61035L18.5635 0.783203Z",fill:"currentColor"}),e.createElement(n,{d:"M6.56348 2.43652C4.6209 3.76075 3.10888 5.74546 2.57422 8.03906L0.625977 7.58594C1.29118 4.73173 3.14579 2.34535 5.4375 0.783203L6.56348 2.43652Z",fill:"currentColor"}))}),L=u;export{L as default,u as IconBellActive};
2
+
3
+ //# debugId=D8307B3FE5EE1F6964756E2164756E21
@@ -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=\"square-filled-radius-0-stroke-2-IconBellActive\"><Path d=\"M16.584 19C15.8124 20.7659 14.0503 22 12 22C9.94968 22 8.18757 20.7659 7.41602 19H16.584Z\" fill=\"currentColor\"/><Path d=\"M12 2C16.2077 2.00002 19.7382 5.17265 20.1865 9.35645L21 17.5H3L3.81348 9.35645C4.26177 5.17264 7.79224 2 12 2Z\" fill=\"currentColor\"/><Path d=\"M18.5635 0.783203C20.8552 2.34538 22.7086 4.73187 23.374 7.58594L21.4268 8.04004C20.892 5.74635 19.3799 3.76079 17.4375 2.43652L18.001 1.61035L18.5635 0.783203Z\" fill=\"currentColor\"/><Path d=\"M6.56348 2.43652C4.6209 3.76075 3.10888 5.74546 2.57422 8.03906L0.625977 7.58594C1.29118 4.73173 3.14579 2.34535 5.4375 0.783203L6.56348 2.43652Z\" fill=\"currentColor\"/></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,gBAA+sB,EAA/sB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,4FAA4F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mKAAmK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,CAAI,EACvtB,EAEc",
9
+ "debugId": "D8307B3FE5EE1F6964756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1328,6 +1328,9 @@ Below is a complete list of available icons:
1328
1328
  - IconWindowSquareDelete
1329
1329
  - IconWindowSquareLocked
1330
1330
  - IconWindowSquareSecurity
1331
+ - IconBellActive
1332
+ - IconBell2Active
1333
+ - IconBell2Off
1331
1334
 
1332
1335
  ### Keyboard
1333
1336