@central-icons-react/square-filled-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.
@@ -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 B=Object.create;var{getPrototypeOf:y,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:I}=Object,c=Object.prototype.hasOwnProperty;function u(e){return this[e]}var k,b,h=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var i=r?k??=new WeakMap:b??=new WeakMap,m=i.get(e);if(m)return m}t=e!=null?B(y(e)):{};let s=r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t;for(let n of f(e))if(!c.call(s,n))p(s,n,{get:u.bind(e,n),enumerable:!0});if(o)i.set(e,s);return s},g=(e)=>{var r=(d??=new WeakMap).get(e),t;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of f(e))if(!c.call(r,o))p(r,o,{get:u.bind(e,o),enumerable:!(t=I(e,o))||t.enumerable})}return d.set(e,r),r},d;var P=(e)=>e;function V(e,r){this[e]=P.bind(null,r)}var w=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0,configurable:!0,set:V.bind(r,t)})};var S={};w(S,{CentralIconBase:()=>C});module.exports=g(S);var l=h(require("react")),C=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:i=!0,style:m,mode:s="masked",maskId:n,...v})=>{let x=s!=="raw"&&!!n;return l.default.createElement("svg",{...v,"aria-hidden":i,role:i?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...m}},t&&!i&&l.default.createElement("title",null,t),x?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),l.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),l.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};var G={};w(G,{default:()=>M,IconBell2Active:()=>L});module.exports=g(G);var a=h(require("react"));var L=a.default.memo((e)=>{return a.default.createElement(C,{...e,ariaLabel:"bell-2-active, notification, activity, alert, reminder",maskId:"square-filled-radius-0-stroke-1-IconBell2Active"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.99974 4.98775 8.16549 2 12 2ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z",fill:"currentColor"}),a.default.createElement("path",{d:"M6 1.49902L6.30078 1.89844C4.23022 3.4537 2.81641 5.83454 2.54688 8.5498L1.55176 8.4502C1.85002 5.44668 3.41419 2.81676 5.7002 1.09961L6 1.49902Z",fill:"currentColor"}),a.default.createElement("path",{d:"M18.3008 1.09961C20.5866 2.81677 22.15 5.44683 22.4482 8.4502L21.4531 8.5498C21.1836 5.83466 19.7706 3.45371 17.7002 1.89844L18 1.49902L18.3008 1.09961Z",fill:"currentColor"}))}),M=L;
2
+
3
+ //# debugId=77DB99CA77572E4D64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Active/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBell2Active: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-2-active, notification, activity, alert, reminder\" maskId=\"square-filled-radius-0-stroke-1-IconBell2Active\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.99974 4.98775 8.16549 2 12 2ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z\" fill=\"currentColor\"/><path d=\"M6 1.49902L6.30078 1.89844C4.23022 3.4537 2.81641 5.83454 2.54688 8.5498L1.55176 8.4502C1.85002 5.44668 3.41419 2.81676 5.7002 1.09961L6 1.49902Z\" fill=\"currentColor\"/><path d=\"M18.3008 1.09961C20.5866 2.81677 22.15 5.44683 22.4482 8.4502L21.4531 8.5498C21.1836 5.83466 19.7706 3.45371 17.7002 1.89844L18 1.49902L18.3008 1.09961Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBell2Active;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,2EC9DY,IAAlB,sBAGO,IAAM,EAAoE,UAAM,KAAK,CAAC,IAAU,CACrG,OAAO,wBAAw4B,EAAx4B,IAAqB,EAAO,UAAU,yDAAyD,OAAO,mDAAkD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kUAAkU,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,CAAI,EACh5B,EAEc",
9
+ "debugId": "77DB99CA77572E4D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var s=({children:o,size:r=24,ariaLabel:i,color:a,ariaHidden:l=!0,style:p,mode:m="masked",maskId:n,...C})=>{let d=m!=="raw"&&!!n;return e.createElement("svg",{...C,"aria-hidden":l,role:l?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...p}},i&&!l&&e.createElement("title",null,i),d?e.createElement(e.Fragment,null,e.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},o)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};import t from"react";var f=t.memo((o)=>{return t.createElement(s,{...o,ariaLabel:"bell-2-active, notification, activity, alert, reminder",maskId:"square-filled-radius-0-stroke-1-IconBell2Active"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.99974 4.98775 8.16549 2 12 2ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z",fill:"currentColor"}),t.createElement("path",{d:"M6 1.49902L6.30078 1.89844C4.23022 3.4537 2.81641 5.83454 2.54688 8.5498L1.55176 8.4502C1.85002 5.44668 3.41419 2.81676 5.7002 1.09961L6 1.49902Z",fill:"currentColor"}),t.createElement("path",{d:"M18.3008 1.09961C20.5866 2.81677 22.15 5.44683 22.4482 8.4502L21.4531 8.5498C21.1836 5.83466 19.7706 3.45371 17.7002 1.89844L18 1.49902L18.3008 1.09961Z",fill:"currentColor"}))}),L=f;export{L as default,f as IconBell2Active};
2
+
3
+ //# debugId=F8990A4DEE77675F64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Active/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBell2Active: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-2-active, notification, activity, alert, reminder\" maskId=\"square-filled-radius-0-stroke-1-IconBell2Active\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.99974 4.98775 8.16549 2 12 2ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z\" fill=\"currentColor\"/><path d=\"M6 1.49902L6.30078 1.89844C4.23022 3.4537 2.81641 5.83454 2.54688 8.5498L1.55176 8.4502C1.85002 5.44668 3.41419 2.81676 5.7002 1.09961L6 1.49902Z\" fill=\"currentColor\"/><path d=\"M18.3008 1.09961C20.5866 2.81677 22.15 5.44683 22.4482 8.4502L21.4531 8.5498C21.1836 5.83466 19.7706 3.45371 17.7002 1.89844L18 1.49902L18.3008 1.09961Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBell2Active;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAw4B,EAAx4B,IAAqB,EAAO,UAAU,yDAAyD,OAAO,mDAAkD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kUAAkU,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,CAAI,EACh5B,EAEc",
9
+ "debugId": "F8990A4DEE77675F64756E2164756E21",
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 y=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:C,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function c(e){return this[e]}var v,b,h=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var i=r?v??=new WeakMap:b??=new WeakMap,p=i.get(e);if(p)return p}o=e!=null?y(I(e)):{};let s=r||!e||!e.__esModule?a(o,"default",{value:e,enumerable:!0}):o;for(let n of C(e))if(!u.call(s,n))a(s,n,{get:c.bind(e,n),enumerable:!0});if(t)i.set(e,s);return s},g=(e)=>{var r=(d??=new WeakMap).get(e),o;if(r)return r;if(r=a({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of C(e))if(!u.call(r,t))a(r,t,{get:c.bind(e,t),enumerable:!(o=k(e,t))||o.enumerable})}return d.set(e,r),r},d;var P=(e)=>e;function V(e,r){this[e]=P.bind(null,r)}var w=(e,r)=>{for(var o in r)a(e,o,{get:r[o],enumerable:!0,configurable:!0,set:V.bind(r,o)})};var S={};w(S,{CentralIconBase:()=>f});module.exports=g(S);var l=h(require("react")),f=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:i=!0,style:p,mode:s="masked",maskId:n,...x})=>{let B=s!=="raw"&&!!n;return l.default.createElement("svg",{...x,"aria-hidden":i,role:i?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...p}},o&&!i&&l.default.createElement("title",null,o),B?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),l.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),l.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};var G={};w(G,{default:()=>H,IconBell2Off:()=>L});module.exports=g(G);var m=h(require("react"));var L=m.default.memo((e)=>{return m.default.createElement(f,{...e,ariaLabel:"bell-2-off, notification, activity, alert, mute",maskId:"square-filled-radius-0-stroke-1-IconBell2Off"},m.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.8535 21.1465L21.1465 21.8535L17.293 18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.85496 7.86045 5.08378 6.97173 5.45801 6.16504L2.14648 2.85352L2.85352 2.14648L21.8535 21.1465ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z",fill:"currentColor"}),m.default.createElement("path",{d:"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H20.0068L6.52051 4.51367C7.84487 2.97188 9.81351 2 12 2Z",fill:"currentColor"}))}),H=L;
2
+
3
+ //# debugId=B3F39D16A808350864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Off/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBell2Off: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-2-off, notification, activity, alert, mute\" maskId=\"square-filled-radius-0-stroke-1-IconBell2Off\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.8535 21.1465L21.1465 21.8535L17.293 18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.85496 7.86045 5.08378 6.97173 5.45801 6.16504L2.14648 2.85352L2.85352 2.14648L21.8535 21.1465ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z\" fill=\"currentColor\"/><path d=\"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H20.0068L6.52051 4.51367C7.84487 2.97188 9.81351 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBell2Off;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,wEC9DY,IAAlB,sBAGO,IAAM,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,wBAAwtB,EAAxtB,IAAqB,EAAO,UAAU,kDAAkD,OAAO,gDAA+C,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iWAAiW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uIAAuI,KAAK,eAAc,CAAI,EAChuB,EAEc",
9
+ "debugId": "B3F39D16A808350864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var s=({children:o,size:r=24,ariaLabel:i,color:a,ariaHidden:l=!0,style:m,mode:p="masked",maskId:n,...f})=>{let d=p!=="raw"&&!!n;return e.createElement("svg",{...f,"aria-hidden":l,role:l?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...m}},i&&!l&&e.createElement("title",null,i),d?e.createElement(e.Fragment,null,e.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},o)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};import t from"react";var C=t.memo((o)=>{return t.createElement(s,{...o,ariaLabel:"bell-2-off, notification, activity, alert, mute",maskId:"square-filled-radius-0-stroke-1-IconBell2Off"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.8535 21.1465L21.1465 21.8535L17.293 18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.85496 7.86045 5.08378 6.97173 5.45801 6.16504L2.14648 2.85352L2.85352 2.14648L21.8535 21.1465ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z",fill:"currentColor"}),t.createElement("path",{d:"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H20.0068L6.52051 4.51367C7.84487 2.97188 9.81351 2 12 2Z",fill:"currentColor"}))}),L=C;export{L as default,C as IconBell2Off};
2
+
3
+ //# debugId=4097DF1E9D2B071964756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBell2Off/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBell2Off: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-2-off, notification, activity, alert, mute\" maskId=\"square-filled-radius-0-stroke-1-IconBell2Off\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21.8535 21.1465L21.1465 21.8535L17.293 18H16.4727C16.2239 20.25 14.3163 22 12 22C9.68372 22 7.77607 20.25 7.52734 18H3V16.1338L4.59961 12.8721L4.80762 8.7998C4.85496 7.86045 5.08378 6.97173 5.45801 6.16504L2.14648 2.85352L2.85352 2.14648L21.8535 21.1465ZM8.53516 18C8.77777 19.6961 10.2368 21 12 21C13.7631 20.9999 15.2212 19.696 15.4639 18H8.53516Z\" fill=\"currentColor\"/><path d=\"M12 2C15.8345 2 19.0003 4.98776 19.1924 8.7998L19.4004 12.8721L21 16.1338V18H20.0068L6.52051 4.51367C7.84487 2.97188 9.81351 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBell2Off;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAwtB,EAAxtB,IAAqB,EAAO,UAAU,kDAAkD,OAAO,gDAA+C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iWAAiW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uIAAuI,KAAK,eAAc,CAAI,EAChuB,EAEc",
9
+ "debugId": "4097DF1E9D2B071964756E2164756E21",
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 I=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:k}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var v,b,u=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var s=e?v??=new WeakMap:b??=new WeakMap,m=s.get(r);if(m)return m}t=r!=null?I(L(r)):{};let a=e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let n of d(r))if(!c.call(a,n))p(a,n,{get:h.bind(r,n),enumerable:!0});if(o)s.set(r,a);return a},g=(r)=>{var e=(f??=new WeakMap).get(r),t;if(e)return e;if(e=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of d(r))if(!c.call(e,o))p(e,o,{get:h.bind(r,o),enumerable:!(t=k(r,o))||t.enumerable})}return f.set(r,e),e},f;var P=(r)=>r;function S(r,e){this[r]=P.bind(null,e)}var w=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0,configurable:!0,set:S.bind(e,t)})};var G={};w(G,{CentralIconBase:()=>C});module.exports=g(G);var l=u(require("react")),C=({children:r,size:e=24,ariaLabel:t,color:o,ariaHidden:s=!0,style:m,mode:a="masked",maskId:n,...B})=>{let y=a!=="raw"&&!!n;return l.default.createElement("svg",{...B,"aria-hidden":s,role:s?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...m}},t&&!s&&l.default.createElement("title",null,t),y?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),l.default.createElement("g",{fill:"none",style:{color:"#fff"}},r)),l.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};var M={};w(M,{default:()=>V,IconBellActive:()=>x});module.exports=g(M);var i=u(require("react"));var x=i.default.memo((r)=>{return i.default.createElement(C,{...r,ariaLabel:"bell-active, notification, activity, alert, reminder",maskId:"square-filled-radius-0-stroke-1-IconBellActive"},i.default.createElement("path",{d:"M16.2441 19C15.6264 20.7477 13.9592 21.9999 12 22C10.0407 22 8.37362 20.7478 7.75586 19H16.2441Z",fill:"currentColor"}),i.default.createElement("path",{d:"M12 2C16.1824 2.00011 19.6908 5.15552 20.1328 9.31445L21.0557 18H2.94434L3.86621 9.31445C4.30824 5.15541 7.81751 2 12 2Z",fill:"currentColor"}),i.default.createElement("path",{d:"M5.46191 2L5.76758 2.39648C4.19304 3.60877 2.93338 5.25724 2.30371 7.15723L1.35449 6.84277C2.0545 4.7305 3.44452 2.92218 5.15723 1.60352L5.46191 2Z",fill:"currentColor"}),i.default.createElement("path",{d:"M18.8438 1.60352C20.5564 2.92219 21.9464 4.73053 22.6465 6.84277L21.6973 7.15723C21.0675 5.25723 19.8079 3.60876 18.2334 2.39648L18.5381 2L18.8438 1.60352Z",fill:"currentColor"}))}),V=x;
2
+
3
+ //# debugId=652CD2789872E2B664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBellActive/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBellActive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-active, notification, activity, alert, reminder\" maskId=\"square-filled-radius-0-stroke-1-IconBellActive\"><path d=\"M16.2441 19C15.6264 20.7477 13.9592 21.9999 12 22C10.0407 22 8.37362 20.7478 7.75586 19H16.2441Z\" fill=\"currentColor\"/><path d=\"M12 2C16.1824 2.00011 19.6908 5.15552 20.1328 9.31445L21.0557 18H2.94434L3.86621 9.31445C4.30824 5.15541 7.81751 2 12 2Z\" fill=\"currentColor\"/><path d=\"M5.46191 2L5.76758 2.39648C4.19304 3.60877 2.93338 5.25724 2.30371 7.15723L1.35449 6.84277C2.0545 4.7305 3.44452 2.92218 5.15723 1.60352L5.46191 2Z\" fill=\"currentColor\"/><path d=\"M18.8438 1.60352C20.5564 2.92219 21.9464 4.73053 22.6465 6.84277L21.6973 7.15723C21.0675 5.25723 19.8079 3.60876 18.2334 2.39648L18.5381 2L18.8438 1.60352Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBellActive;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,0EC9DY,IAAlB,sBAGO,IAAM,EAAmE,UAAM,KAAK,CAAC,IAAU,CACpG,OAAO,wBAA6xB,EAA7xB,IAAqB,EAAO,UAAU,uDAAuD,OAAO,kDAAiD,wBAAC,OAAD,CAAM,EAAE,mGAAmG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2HAA2H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sJAAsJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,CAAI,EACryB,EAEc",
9
+ "debugId": "652CD2789872E2B664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";var s=({children:o,size:e=24,ariaLabel:i,color:a,ariaHidden:l=!0,style:p,mode:m="masked",maskId:n,...C})=>{let f=m!=="raw"&&!!n;return r.createElement("svg",{...C,"aria-hidden":l,role:l?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...p}},i&&!l&&r.createElement("title",null,i),f?r.createElement(r.Fragment,null,r.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement("rect",{width:"24",height:"24",fill:"#000"}),r.createElement("g",{fill:"none",style:{color:"#fff"}},o)),r.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):o)};import t from"react";var d=t.memo((o)=>{return t.createElement(s,{...o,ariaLabel:"bell-active, notification, activity, alert, reminder",maskId:"square-filled-radius-0-stroke-1-IconBellActive"},t.createElement("path",{d:"M16.2441 19C15.6264 20.7477 13.9592 21.9999 12 22C10.0407 22 8.37362 20.7478 7.75586 19H16.2441Z",fill:"currentColor"}),t.createElement("path",{d:"M12 2C16.1824 2.00011 19.6908 5.15552 20.1328 9.31445L21.0557 18H2.94434L3.86621 9.31445C4.30824 5.15541 7.81751 2 12 2Z",fill:"currentColor"}),t.createElement("path",{d:"M5.46191 2L5.76758 2.39648C4.19304 3.60877 2.93338 5.25724 2.30371 7.15723L1.35449 6.84277C2.0545 4.7305 3.44452 2.92218 5.15723 1.60352L5.46191 2Z",fill:"currentColor"}),t.createElement("path",{d:"M18.8438 1.60352C20.5564 2.92219 21.9464 4.73053 22.6465 6.84277L21.6973 7.15723C21.0675 5.25723 19.8079 3.60876 18.2334 2.39648L18.5381 2L18.8438 1.60352Z",fill:"currentColor"}))}),x=d;export{x as default,d as IconBellActive};
2
+
3
+ //# debugId=973019932DA4D9D864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBellActive/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconBellActive: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bell-active, notification, activity, alert, reminder\" maskId=\"square-filled-radius-0-stroke-1-IconBellActive\"><path d=\"M16.2441 19C15.6264 20.7477 13.9592 21.9999 12 22C10.0407 22 8.37362 20.7478 7.75586 19H16.2441Z\" fill=\"currentColor\"/><path d=\"M12 2C16.1824 2.00011 19.6908 5.15552 20.1328 9.31445L21.0557 18H2.94434L3.86621 9.31445C4.30824 5.15541 7.81751 2 12 2Z\" fill=\"currentColor\"/><path d=\"M5.46191 2L5.76758 2.39648C4.19304 3.60877 2.93338 5.25724 2.30371 7.15723L1.35449 6.84277C2.0545 4.7305 3.44452 2.92218 5.15723 1.60352L5.46191 2Z\" fill=\"currentColor\"/><path d=\"M18.8438 1.60352C20.5564 2.92219 21.9464 4.73053 22.6465 6.84277L21.6973 7.15723C21.0675 5.25723 19.8079 3.60876 18.2334 2.39648L18.5381 2L18.8438 1.60352Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBellActive;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA6xB,EAA7xB,IAAqB,EAAO,UAAU,uDAAuD,OAAO,kDAAiD,gBAAC,OAAD,CAAM,EAAE,mGAAmG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2HAA2H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sJAAsJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,CAAI,EACryB,EAEc",
9
+ "debugId": "973019932DA4D9D864756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:y,defineProperty:i,getOwnPropertyNames:C,getOwnPropertyDescriptor:B}=Object,c=Object.prototype.hasOwnProperty;function g(e){return this[e]}var H,P,u=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var s=o?H??=new WeakMap:P??=new WeakMap,m=s.get(e);if(m)return m}r=e!=null?I(y(e)):{};let a=o||!e||!e.__esModule?i(r,"default",{value:e,enumerable:!0}):r;for(let l of C(e))if(!c.call(a,l))i(a,l,{get:g.bind(e,l),enumerable:!0});if(t)s.set(e,a);return a},h=(e)=>{var o=(f??=new WeakMap).get(e),r;if(o)return o;if(o=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of C(e))if(!c.call(o,t))i(o,t,{get:g.bind(e,t),enumerable:!(r=B(e,t))||r.enumerable})}return f.set(e,o),o},f;var v=(e)=>e;function b(e,o){this[e]=v.bind(null,o)}var k=(e,o)=>{for(var r in o)i(e,r,{get:o[r],enumerable:!0,configurable:!0,set:b.bind(o,r)})};var S={};k(S,{CentralIconBase:()=>d});module.exports=h(S);var n=u(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:s=!0,style:m,mode:a="masked",maskId:l,...V})=>{let x=a!=="raw"&&!!l;return n.default.createElement("svg",{...V,"aria-hidden":s,role:s?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...m}},r&&!s&&n.default.createElement("title",null,r),x?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),n.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};var G={};k(G,{default:()=>M,IconPageLock:()=>w});module.exports=h(G);var p=u(require("react"));var w=p.default.memo((e)=>{return p.default.createElement(d,{...e,ariaLabel:"page-lock",maskId:"square-filled-radius-0-stroke-1-IconPageLock"},p.default.createElement("path",{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),M=w;
1
+ var V=Object.create;var{getPrototypeOf:y,defineProperty:i,getOwnPropertyNames:C,getOwnPropertyDescriptor:B}=Object,c=Object.prototype.hasOwnProperty;function g(e){return this[e]}var P,v,u=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var s=o?P??=new WeakMap:v??=new WeakMap,m=s.get(e);if(m)return m}r=e!=null?V(y(e)):{};let a=o||!e||!e.__esModule?i(r,"default",{value:e,enumerable:!0}):r;for(let l of C(e))if(!c.call(a,l))i(a,l,{get:g.bind(e,l),enumerable:!0});if(t)s.set(e,a);return a},h=(e)=>{var o=(f??=new WeakMap).get(e),r;if(o)return o;if(o=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of C(e))if(!c.call(o,t))i(o,t,{get:g.bind(e,t),enumerable:!(r=B(e,t))||r.enumerable})}return f.set(e,o),o},f;var H=(e)=>e;function b(e,o){this[e]=H.bind(null,o)}var k=(e,o)=>{for(var r in o)i(e,r,{get:o[r],enumerable:!0,configurable:!0,set:b.bind(o,r)})};var S={};k(S,{CentralIconBase:()=>d});module.exports=h(S);var n=u(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:s=!0,style:m,mode:a="masked",maskId:l,...x})=>{let I=a!=="raw"&&!!l;return n.default.createElement("svg",{...x,"aria-hidden":s,role:s?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...m}},r&&!s&&n.default.createElement("title",null,r),I?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},n.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),n.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};var G={};k(G,{default:()=>L,IconPageLock:()=>w});module.exports=h(G);var p=u(require("react"));var w=p.default.memo((e)=>{return p.default.createElement(d,{...e,ariaLabel:"page-lock",maskId:"square-filled-radius-0-stroke-1-IconPageLock"},p.default.createElement("path",{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),L=w;
2
2
 
3
- //# debugId=A6A8F376C1554A0764756E2164756E21
3
+ //# debugId=B782B1640D668FD664756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageLock/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,wEC9DY,IAAlB,sBAGO,IAAM,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,wBAAod,EAApd,IAAqB,EAAO,UAAU,YAAY,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sKAAsK,KAAK,eAAc,CAAI,EAC5d,EAEc",
9
- "debugId": "A6A8F376C1554A0764756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,wEC9DY,IAAlB,sBAGO,IAAM,EAAiE,UAAM,KAAK,CAAC,IAAU,CAClG,OAAO,wBAAic,EAAjc,IAAqB,EAAO,UAAU,YAAY,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACzc,EAEc",
9
+ "debugId": "B782B1640D668FD664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import e from"react";var a=({children:r,size:o=24,ariaLabel:s,color:i,ariaHidden:n=!0,style:p,mode:m="masked",maskId:l,...d})=>{let f=m!=="raw"&&!!l;return e.createElement("svg",{...d,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...p}},s&&!n&&e.createElement("title",null,s),f?e.createElement(e.Fragment,null,e.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},r)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):r)};import t from"react";var C=t.memo((r)=>{return t.createElement(a,{...r,ariaLabel:"page-lock",maskId:"square-filled-radius-0-stroke-1-IconPageLock"},t.createElement("path",{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),w=C;export{w as default,C as IconPageLock};
1
+ import e from"react";var a=({children:r,size:o=24,ariaLabel:s,color:i,ariaHidden:n=!0,style:p,mode:m="masked",maskId:l,...d})=>{let f=m!=="raw"&&!!l;return e.createElement("svg",{...d,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...p}},s&&!n&&e.createElement("title",null,s),f?e.createElement(e.Fragment,null,e.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},r)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):r)};import t from"react";var C=t.memo((r)=>{return t.createElement(a,{...r,ariaLabel:"page-lock",maskId:"square-filled-radius-0-stroke-1-IconPageLock"},t.createElement("path",{d:"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),w=C;export{w as default,C as IconPageLock};
2
2
 
3
- //# debugId=F7B0A43EB07D913364756E2164756E21
3
+ //# debugId=E928D81F78A4706E64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageLock/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageLock\"><path d=\"M4 22V2H20V13.3542C19.2671 12.5238 18.1947 12 17 12C15.1362 12 13.5701 13.2748 13.126 15H12V22H4Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageLock;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAod,EAApd,IAAqB,EAAO,UAAU,YAAY,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sKAAsK,KAAK,eAAc,CAAI,EAC5d,EAEc",
9
- "debugId": "F7B0A43EB07D913364756E2164756E21",
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAic,EAAjc,IAAqB,EAAO,UAAU,YAAY,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,oGAAoG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACzc,EAEc",
9
+ "debugId": "E928D81F78A4706E64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var w=Object.create;var{getPrototypeOf:I,defineProperty:i,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function C(e){return this[e]}var y,B,g=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var s=o?y??=new WeakMap:B??=new WeakMap,m=s.get(e);if(m)return m}r=e!=null?w(I(e)):{};let a=o||!e||!e.__esModule?i(r,"default",{value:e,enumerable:!0}):r;for(let n of u(e))if(!c.call(a,n))i(a,n,{get:C.bind(e,n),enumerable:!0});if(t)s.set(e,a);return a},h=(e)=>{var o=(f??=new WeakMap).get(e),r;if(o)return o;if(o=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of u(e))if(!c.call(o,t))i(o,t,{get:C.bind(e,t),enumerable:!(r=v(e,t))||r.enumerable})}return f.set(e,o),o},f;var P=(e)=>e;function M(e,o){this[e]=P.bind(null,o)}var V=(e,o)=>{for(var r in o)i(e,r,{get:o[r],enumerable:!0,configurable:!0,set:M.bind(o,r)})};var Z={};V(Z,{CentralIconBase:()=>d});module.exports=h(Z);var l=g(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:s=!0,style:m,mode:a="masked",maskId:n,...H})=>{let k=a!=="raw"&&!!n;return l.default.createElement("svg",{...H,"aria-hidden":s,role:s?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...m}},r&&!s&&l.default.createElement("title",null,r),k?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),l.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),l.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};var b={};V(b,{default:()=>S,IconPageTextLock:()=>x});module.exports=h(b);var p=g(require("react"));var x=p.default.memo((e)=>{return p.default.createElement(d,{...e,ariaLabel:"page-text-lock",maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),S=x;
1
+ var H=Object.create;var{getPrototypeOf:I,defineProperty:i,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,c=Object.prototype.hasOwnProperty;function C(e){return this[e]}var y,B,g=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var s=o?y??=new WeakMap:B??=new WeakMap,m=s.get(e);if(m)return m}r=e!=null?H(I(e)):{};let a=o||!e||!e.__esModule?i(r,"default",{value:e,enumerable:!0}):r;for(let n of u(e))if(!c.call(a,n))i(a,n,{get:C.bind(e,n),enumerable:!0});if(t)s.set(e,a);return a},h=(e)=>{var o=(f??=new WeakMap).get(e),r;if(o)return o;if(o=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of u(e))if(!c.call(o,t))i(o,t,{get:C.bind(e,t),enumerable:!(r=v(e,t))||r.enumerable})}return f.set(e,o),o},f;var P=(e)=>e;function b(e,o){this[e]=P.bind(null,o)}var x=(e,o)=>{for(var r in o)i(e,r,{get:o[r],enumerable:!0,configurable:!0,set:b.bind(o,r)})};var M={};x(M,{CentralIconBase:()=>d});module.exports=h(M);var l=g(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:s=!0,style:m,mode:a="masked",maskId:n,...k})=>{let w=a!=="raw"&&!!n;return l.default.createElement("svg",{...k,"aria-hidden":s,role:s?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...m}},r&&!s&&l.default.createElement("title",null,r),w?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},l.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),l.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),l.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):e)};var S={};x(S,{default:()=>Z,IconPageTextLock:()=>V});module.exports=h(S);var p=g(require("react"));var V=p.default.memo((e)=>{return p.default.createElement(d,{...e,ariaLabel:"page-text-lock",maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),Z=V;
2
2
 
3
- //# debugId=42BF88416B590A5964756E2164756E21
3
+ //# debugId=1E26CCDADAE2179F64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageTextLock/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-text-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-text-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,4EC9DY,IAAlB,sBAGO,IAAM,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAA+hB,EAA/hB,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sKAAsK,KAAK,eAAc,CAAI,EACviB,EAEc",
9
- "debugId": "42BF88416B590A5964756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAUa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gDACE,wBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,4EC9DY,IAAlB,sBAGO,IAAM,EAAqE,UAAM,KAAK,CAAC,IAAU,CACtG,OAAO,wBAA4gB,EAA5gB,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACphB,EAEc",
9
+ "debugId": "1E26CCDADAE2179F64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import e from"react";var a=({children:r,size:o=24,ariaLabel:s,color:i,ariaHidden:l=!0,style:p,mode:m="masked",maskId:n,...d})=>{let f=m!=="raw"&&!!n;return e.createElement("svg",{...d,"aria-hidden":l,role:l?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...p}},s&&!l&&e.createElement("title",null,s),f?e.createElement(e.Fragment,null,e.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},r)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};import t from"react";var u=t.memo((r)=>{return t.createElement(a,{...r,ariaLabel:"page-text-lock",maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),x=u;export{x as default,u as IconPageTextLock};
1
+ import e from"react";var a=({children:r,size:o=24,ariaLabel:s,color:i,ariaHidden:l=!0,style:p,mode:m="masked",maskId:n,...d})=>{let f=m!=="raw"&&!!n;return e.createElement("svg",{...d,"aria-hidden":l,role:l?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:i,...p}},s&&!l&&e.createElement("title",null,s),f?e.createElement(e.Fragment,null,e.createElement("mask",{id:n,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},r)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${n})`})):r)};import t from"react";var u=t.memo((r)=>{return t.createElement(a,{...r,ariaLabel:"page-text-lock",maskId:"square-filled-radius-0-stroke-1-IconPageTextLock"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z",fill:"currentColor"}))}),V=u;export{V as default,u as IconPageTextLock};
2
2
 
3
- //# debugId=E5FDAC7767A2F99E64756E2164756E21
3
+ //# debugId=C79D543F18BE580964756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageTextLock/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n {children}\n </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\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-text-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM20 17H14V21H20V17ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageTextLock: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-text-lock\" maskId=\"square-filled-radius-0-stroke-1-IconPageTextLock\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2V22H12V15H13.126C13.5701 13.2748 15.1362 12 17 12C18.1947 12 19.2671 12.5238 20 13.3542V2H4ZM7 5V6H15V5H7ZM7 9V10H12V9H7Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 16V22H13V16H14C14 14.3431 15.3431 13 17 13C18.6569 13 20 14.3431 20 16H21ZM19 16C19 14.8954 18.1046 14 17 14C15.8954 14 15 14.8954 15 16H19Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconPageTextLock;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA+hB,EAA/hB,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sKAAsK,KAAK,eAAc,CAAI,EACviB,EAEc",
9
- "debugId": "E5FDAC7767A2F99E64756E2164756E21",
8
+ "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GC9DN,qBAGO,IAAM,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA4gB,EAA5gB,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gIAAgI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mJAAmJ,KAAK,eAAc,CAAI,EACphB,EAEc",
9
+ "debugId": "C79D543F18BE580964756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1362,6 +1362,9 @@ Below is a complete list of available icons:
1362
1362
  - IconWindowSquareDelete
1363
1363
  - IconWindowSquareLocked
1364
1364
  - IconWindowSquareSecurity
1365
+ - IconBellActive
1366
+ - IconBell2Active
1367
+ - IconBell2Off
1365
1368
 
1366
1369
  ### Keyboard
1367
1370