@central-icons-react-native/round-outlined-radius-2-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 L=Object.create;var{getPrototypeOf:v,defineProperty:C,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var P,M,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var p=r?P??=new WeakMap:M??=new WeakMap,l=p.get(o);if(l)return l}e=o!=null?L(v(o)):{};let a=r||!o||!o.__esModule?C(e,"default",{value:o,enumerable:!0}):e;for(let d of c(o))if(!h.call(a,d))C(a,d,{get:f.bind(o,d),enumerable:!0});if(t)p.set(o,a);return a},B=(o)=>{var r=(k??=new WeakMap).get(o),e;if(r)return r;if(r=C({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!h.call(r,t))C(r,t,{get:f.bind(o,t),enumerable:!(e=w(o,t))||e.enumerable})}return k.set(o,r),r},k;var y=(o)=>o;function S(o,r){this[o]=y.bind(null,r)}var x=(o,r)=>{for(var e in r)C(o,e,{get:r[e],enumerable:!0,configurable:!0,set:S.bind(r,e)})};var b={};x(b,{CentralIconBase:()=>u});module.exports=B(b);var s=g(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...p})=>{let l=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?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 W={};x(W,{default:()=>$,IconBell2Active:()=>I});module.exports=B(W);var i=g(require("react"));var m=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-2-IconBell2Active"},i.default.createElement(m.Path,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.default.createElement(m.Path,{d:"M20 16.191C20 16.6378 19.6378 17 19.191 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.86822 5.63561 8.6389 3 12 3C15.3611 3 18.1318 5.63561 18.2996 8.99251L18.479 12.5808C18.4929 12.8573 18.5639 13.1278 18.6877 13.3754L19.9146 15.8292C19.9708 15.9415 20 16.0654 20 16.191Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),i.default.createElement(m.Path,{d:"M5.38527 2C3.66367 3.51963 2.46934 5.6228 2.11182 8M18.6149 2C20.3365 3.51963 21.5309 5.6228 21.8884 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),$=I;
2
+
3
+ //# debugId=6AF1705F0186644D64756E2164756E21
@@ -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-2-stroke-2-IconBell2Active\"><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M20 16.191C20 16.6378 19.6378 17 19.191 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.86822 5.63561 8.6389 3 12 3C15.3611 3 18.1318 5.63561 18.2996 8.99251L18.479 12.5808C18.4929 12.8573 18.5639 13.1278 18.6877 13.3754L19.9146 15.8292C19.9708 15.9415 20 16.0654 20 16.191Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M5.38527 2C3.66367 3.51963 2.46934 5.6228 2.11182 8M18.6149 2C20.3365 3.51963 21.5309 5.6228 21.8884 8\" stroke=\"currentColor\" strokeWidth=\"2\" 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,wBAAk3B,EAAl3B,IAAqB,EAAO,OAAO,oDAAmD,wBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0YAA0Y,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yGAAyG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC13B,EAEc",
9
+ "debugId": "6AF1705F0186644D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as d,Rect as i,G as u}from"react-native-svg";var C=({children:t,size:r=24,mode:p="masked",maskId:n,...l})=>{let a=p!=="raw"&&!!n;return o.createElement(m,{...l,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(d,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var k=e.memo((t)=>{return e.createElement(C,{...t,maskId:"round-outlined-radius-2-stroke-2-IconBell2Active"},e.createElement(s,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.createElement(s,{d:"M20 16.191C20 16.6378 19.6378 17 19.191 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.86822 5.63561 8.6389 3 12 3C15.3611 3 18.1318 5.63561 18.2996 8.99251L18.479 12.5808C18.4929 12.8573 18.5639 13.1278 18.6877 13.3754L19.9146 15.8292C19.9708 15.9415 20 16.0654 20 16.191Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),e.createElement(s,{d:"M5.38527 2C3.66367 3.51963 2.46934 5.6228 2.11182 8M18.6149 2C20.3365 3.51963 21.5309 5.6228 21.8884 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),w=k;export{w as default,k as IconBell2Active};
2
+
3
+ //# debugId=7D6B461AC6E381C164756E2164756E21
@@ -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-2-stroke-2-IconBell2Active\"><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M20 16.191C20 16.6378 19.6378 17 19.191 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.86822 5.63561 8.6389 3 12 3C15.3611 3 18.1318 5.63561 18.2996 8.99251L18.479 12.5808C18.4929 12.8573 18.5639 13.1278 18.6877 13.3754L19.9146 15.8292C19.9708 15.9415 20 16.0654 20 16.191Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><Path d=\"M5.38527 2C3.66367 3.51963 2.46934 5.6228 2.11182 8M18.6149 2C20.3365 3.51963 21.5309 5.6228 21.8884 8\" stroke=\"currentColor\" strokeWidth=\"2\" 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,gBAAk3B,EAAl3B,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0YAA0Y,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yGAAyG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC13B,EAEc",
9
+ "debugId": "7D6B461AC6E381C164756E2164756E21",
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 L=Object.create;var{getPrototypeOf:w,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:P}=Object,h=Object.prototype.hasOwnProperty;function c(o){return this[o]}var M,v,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var l=r?M??=new WeakMap:v??=new WeakMap,d=l.get(o);if(d)return d}e=o!=null?L(w(o)):{};let m=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let C of k(o))if(!h.call(m,C))p(m,C,{get:c.bind(o,C),enumerable:!0});if(t)l.set(o,m);return m},B=(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 t of k(o))if(!h.call(r,t))p(r,t,{get:c.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return f.set(o,r),r},f;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:()=>u});module.exports=B(b);var s=g(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...l})=>{let d=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},d?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 O={};x(O,{default:()=>W,IconBell2Off:()=>I});module.exports=B(O);var i=g(require("react"));var a=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-2-IconBell2Off"},i.default.createElement(a.Path,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),i.default.createElement(a.Path,{d:"M16.5 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.74263 8.14743 5.94984 7.34806 6.2899 6.62494M18.55 13L18.2996 8.99251C18.1318 5.63561 15.3611 3 12 3C11.0054 3 10.0625 3.23078 9.22349 3.64274",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(a.Path,{d:"M3 3L20 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),W=I;
2
+
3
+ //# debugId=F7A27344B8AFD65664756E2164756E21
@@ -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-2-stroke-2-IconBell2Off\"><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M16.5 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.74263 8.14743 5.94984 7.34806 6.2899 6.62494M18.55 13L18.2996 8.99251C18.1318 5.63561 15.3611 3 12 3C11.0054 3 10.0625 3.23078 9.22349 3.64274\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 3L20 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"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,wBAAosB,EAApsB,IAAqB,EAAO,OAAO,iDAAgD,wBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4TAA4T,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC5sB,EAEc",
9
+ "debugId": "F7A27344B8AFD65664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as a,Mask as C,Rect as i,G as u}from"react-native-svg";var p=({children:t,size:r=24,mode:l="masked",maskId:n,...d})=>{let m=l!=="raw"&&!!n;return o.createElement(a,{...d,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(C,{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var f=e.memo((t)=>{return e.createElement(p,{...t,maskId:"round-outlined-radius-2-stroke-2-IconBell2Off"},e.createElement(s,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}),e.createElement(s,{d:"M16.5 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.74263 8.14743 5.94984 7.34806 6.2899 6.62494M18.55 13L18.2996 8.99251C18.1318 5.63561 15.3611 3 12 3C11.0054 3 10.0625 3.23078 9.22349 3.64274",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M3 3L20 20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}))}),P=f;export{P as default,f as IconBell2Off};
2
+
3
+ //# debugId=E0F93794C8A7688B64756E2164756E21
@@ -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-2-stroke-2-IconBell2Off\"><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinejoin=\"round\"/><Path d=\"M16.5 17H4.80902C4.36221 17 4 16.6378 4 16.191C4 16.0654 4.02924 15.9415 4.08541 15.8292L5.31231 13.3754C5.43609 13.1278 5.50714 12.8573 5.52096 12.5808L5.70037 8.99251C5.74263 8.14743 5.94984 7.34806 6.2899 6.62494M18.55 13L18.2996 8.99251C18.1318 5.63561 15.3611 3 12 3C11.0054 3 10.0625 3.23078 9.22349 3.64274\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3 3L20 20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"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,gBAAosB,EAApsB,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,4TAA4T,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EAC5sB,EAEc",
9
+ "debugId": "E0F93794C8A7688B64756E2164756E21",
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:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:L}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var P,M,g=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var d=r?P??=new WeakMap:M??=new WeakMap,l=d.get(o);if(l)return l}e=o!=null?v(w(o)):{};let a=r||!o||!o.__esModule?p(e,"default",{value:o,enumerable:!0}):e;for(let C of c(o))if(!h.call(a,C))p(a,C,{get:f.bind(o,C),enumerable:!0});if(t)d.set(o,a);return a},B=(o)=>{var r=(k??=new WeakMap).get(o),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!h.call(r,t))p(r,t,{get:f.bind(o,t),enumerable:!(e=L(o,t))||e.enumerable})}return k.set(o,r),r},k;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:()=>u});module.exports=B(b);var s=g(require("react")),n=require("react-native-svg"),u=({children:o,size:r=24,mode:e="masked",maskId:t,...d})=>{let l=e!=="raw"&&!!t;return s.default.createElement(n.Svg,{...d,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},l?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 W={};x(W,{default:()=>$,IconBellActive:()=>I});module.exports=B(W);var i=g(require("react"));var m=require("react-native-svg"),I=i.default.memo((o)=>{return i.default.createElement(u,{...o,maskId:"round-outlined-radius-2-stroke-2-IconBellActive"},i.default.createElement(m.Path,{d:"M4.69376 9.44981C5.15435 5.76511 8.28661 3 12 3C15.7134 3 18.8456 5.76511 19.3062 9.44981L19.969 14.7519C20.1182 15.9456 19.1874 17 17.9844 17H6.01555C4.81256 17 3.88178 15.9456 4.031 14.7519L4.69376 9.44981Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(m.Path,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement(m.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",strokeWidth:"2",strokeLinecap:"round"}))}),$=I;
2
+
3
+ //# debugId=5CFE3C276F73DD0B64756E2164756E21
@@ -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-2-stroke-2-IconBellActive\"><Path d=\"M4.69376 9.44981C5.15435 5.76511 8.28661 3 12 3C15.7134 3 18.8456 5.76511 19.3062 9.44981L19.969 14.7519C20.1182 15.9456 19.1874 17 17.9844 17H6.01555C4.81256 17 3.88178 15.9456 4.031 14.7519L4.69376 9.44981Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" 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\" strokeWidth=\"2\" 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,wBAAgtB,EAAhtB,IAAqB,EAAO,OAAO,mDAAkD,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EACxtB,EAEc",
9
+ "debugId": "5CFE3C276F73DD0B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";import{Svg as m,Mask as C,Rect as i,G as u}from"react-native-svg";var p=({children:t,size:r=24,mode:d="masked",maskId:n,...l})=>{let a=d!=="raw"&&!!n;return o.createElement(m,{...l,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(i,{width:"24",height:"24",fill:"#000"}),o.createElement(u,{color:"#fff"},t)),o.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):t)};import e from"react";import{Path as s}from"react-native-svg";var k=e.memo((t)=>{return e.createElement(p,{...t,maskId:"round-outlined-radius-2-stroke-2-IconBellActive"},e.createElement(s,{d:"M4.69376 9.44981C5.15435 5.76511 8.28661 3 12 3C15.7134 3 18.8456 5.76511 19.3062 9.44981L19.969 14.7519C20.1182 15.9456 19.1874 17 17.9844 17H6.01555C4.81256 17 3.88178 15.9456 4.031 14.7519L4.69376 9.44981Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(s,{d:"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17",stroke:"currentColor",strokeWidth:"2",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",strokeWidth:"2",strokeLinecap:"round"}))}),L=k;export{L as default,k as IconBellActive};
2
+
3
+ //# debugId=A564956C69E8695964756E2164756E21
@@ -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-2-stroke-2-IconBellActive\"><Path d=\"M4.69376 9.44981C5.15435 5.76511 8.28661 3 12 3C15.7134 3 18.8456 5.76511 19.3062 9.44981L19.969 14.7519C20.1182 15.9456 19.1874 17 17.9844 17H6.01555C4.81256 17 3.88178 15.9456 4.031 14.7519L4.69376 9.44981Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M16 17C16 19.2091 14.2091 21 12 21C9.79086 21 8 19.2091 8 17\" stroke=\"currentColor\" strokeWidth=\"2\" 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\" strokeWidth=\"2\" 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,gBAAgtB,EAAhtB,IAAqB,EAAO,OAAO,mDAAkD,gBAAC,EAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+DAA+D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,0GAA0G,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,EACxtB,EAEc",
9
+ "debugId": "A564956C69E8695964756E2164756E21",
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