@central-icons-react/round-filled-radius-2-stroke-2 1.1.316 → 1.1.318

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 IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAirplaneWindowClosed;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:B,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,u=Object.prototype.hasOwnProperty;function c(e){return this[e]}var P,b,w=(e,o,r)=>{var t=e!=null&&typeof e==="object";if(t){var s=o?P??=new WeakMap:b??=new WeakMap,p=s.get(e);if(p)return p}r=e!=null?y(B(e)):{};let i=o||!e||!e.__esModule?a(r,"default",{value:e,enumerable:!0}):r;if(e&&typeof e==="object"||typeof e==="function"){for(let l of f(e))if(!u.call(i,l))a(i,l,{get:c.bind(e,l),enumerable:!0})}if(t)s.set(e,i);return i},g=(e)=>{var o=(m??=new WeakMap).get(e),r;if(o)return o;if(o=a({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of f(e))if(!u.call(o,t))a(o,t,{get:c.bind(e,t),enumerable:!(r=v(e,t))||r.enumerable})}return m.set(e,o),o},m;var S=(e)=>e;function G(e,o){this[e]=S.bind(null,o)}var h=(e,o)=>{for(var r in o)a(e,r,{get:o[r],enumerable:!0,configurable:!0,set:G.bind(o,r)})};var V={};h(V,{CentralIconBase:()=>d});module.exports=g(V);var n=w(require("react")),d=({children:e,size:o=24,ariaLabel:r,color:t,ariaHidden:s=!0,style:p,mode:i="masked",maskId:l,...k})=>{let I=i!=="raw"&&!!l;return n.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,...p}},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 A={};h(A,{IconAirplaneWindowClosed:()=>x,default:()=>E});module.exports=g(A);var C=w(require("react"));var x=C.default.memo((e)=>C.default.createElement(d,{...e,ariaLabel:"airplane-window-closed, dark-mode",maskId:"round-filled-radius-2-stroke-2-IconAirplaneWindowClosed"},C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM10 16C9.44772 16 9 16.4477 9 17C9 17.5523 9.44772 18 10 18H14C14.5523 18 15 17.5523 15 17C15 16.4477 14.5523 16 14 16H10Z",fill:"currentColor"}))),E=x;
2
+
3
+ //# debugId=0D67F7B2BAD2128664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowClosed/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 IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"airplane-window-closed, dark-mode\" maskId=\"round-filled-radius-2-stroke-2-IconAirplaneWindowClosed\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM10 16C9.44772 16 9 16.4477 9 17C9 17.5523 9.44772 18 10 18H14C14.5523 18 15 17.5523 15 17C15 16.4477 14.5523 16 14 16H10Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowClosed;\n"
7
+ ],
8
+ "mappings": "0+BAAkB,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,oFC9DY,IAAlB,sBAGO,IAAM,EAA6E,UAAM,KAAK,CAAC,IAC7F,wBAA+zB,EAA/zB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,2DAA0D,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+mBAA+mB,KAAK,eAAc,CAAI,CACv0B,EAEc",
9
+ "debugId": "0D67F7B2BAD2128664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var i=({children:r,size:o=24,ariaLabel:s,color:a,ariaHidden:t=!0,style:p,mode:C="masked",maskId:n,...d})=>{let m=C!=="raw"&&!!n;return e.createElement("svg",{...d,"aria-hidden":t,role:t?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:a,...p}},s&&!t&&e.createElement("title",null,s),m?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 l from"react";var f=l.memo((r)=>l.createElement(i,{...r,ariaLabel:"airplane-window-closed, dark-mode",maskId:"round-filled-radius-2-stroke-2-IconAirplaneWindowClosed"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM10 16C9.44772 16 9 16.4477 9 17C9 17.5523 9.44772 18 10 18H14C14.5523 18 15 17.5523 15 17C15 16.4477 14.5523 16 14 16H10Z",fill:"currentColor"}))),x=f;export{f as IconAirplaneWindowClosed,x as default};
2
+
3
+ //# debugId=3C809CD09C66099564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowClosed/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 IconAirplaneWindowClosed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"airplane-window-closed, dark-mode\" maskId=\"round-filled-radius-2-stroke-2-IconAirplaneWindowClosed\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM10 16C9.44772 16 9 16.4477 9 17C9 17.5523 9.44772 18 10 18H14C14.5523 18 15 17.5523 15 17C15 16.4477 14.5523 16 14 16H10Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowClosed;\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,EAA6E,EAAM,KAAK,CAAC,IAC7F,gBAA+zB,EAA/zB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,2DAA0D,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+mBAA+mB,KAAK,eAAc,CAAI,CACv0B,EAEc",
9
+ "debugId": "3C809CD09C66099564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconAirplaneWindowOpen;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,g=Object.prototype.hasOwnProperty;function h(e){return this[e]}var P,b,u=(e,o,r)=>{var n=e!=null&&typeof e==="object";if(n){var i=o?P??=new WeakMap:b??=new WeakMap,C=i.get(e);if(C)return C}r=e!=null?y(B(e)):{};let s=o||!e||!e.__esModule?p(r,"default",{value:e,enumerable:!0}):r;if(e&&typeof e==="object"||typeof e==="function"){for(let l of f(e))if(!g.call(s,l))p(s,l,{get:h.bind(e,l),enumerable:!0})}if(n)i.set(e,s);return s},w=(e)=>{var o=(d??=new WeakMap).get(e),r;if(o)return o;if(o=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var n of f(e))if(!g.call(o,n))p(o,n,{get:h.bind(e,n),enumerable:!(r=v(e,n))||r.enumerable})}return d.set(e,o),o},d;var S=(e)=>e;function G(e,o){this[e]=S.bind(null,o)}var c=(e,o)=>{for(var r in o)p(e,r,{get:o[r],enumerable:!0,configurable:!0,set:G.bind(o,r)})};var V={};c(V,{CentralIconBase:()=>m});module.exports=w(V);var t=u(require("react")),m=({children:e,size:o=24,ariaLabel:r,color:n,ariaHidden:i=!0,style:C,mode:s="masked",maskId:l,...I})=>{let k=s!=="raw"&&!!l;return t.default.createElement("svg",{...I,"aria-hidden":i,role:i?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:n,...C}},r&&!i&&t.default.createElement("title",null,r),k?t.default.createElement(t.default.Fragment,null,t.default.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.default.createElement("rect",{width:"24",height:"24",fill:"#000"}),t.default.createElement("g",{fill:"none",style:{color:"#fff"}},e)),t.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};var L={};c(L,{IconAirplaneWindowOpen:()=>x,default:()=>M});module.exports=w(L);var a=u(require("react"));var x=a.default.memo((e)=>a.default.createElement(m,{...e,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"round-filled-radius-2-stroke-2-IconAirplaneWindowOpen"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM11.04 13C10.0283 13.0002 9.30673 13.9815 9.6084 14.9473L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13.4004 13.2998C13.1407 13.1051 12.8246 13 12.5 13H11.04ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z",fill:"currentColor"}))),M=x;
2
+
3
+ //# debugId=2AC1BB6C51995D4264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowOpen/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 IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"airplane-window-open, light-mode, flight\" maskId=\"round-filled-radius-2-stroke-2-IconAirplaneWindowOpen\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM11.04 13C10.0283 13.0002 9.30673 13.9815 9.6084 14.9473L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13.4004 13.2998C13.1407 13.1051 12.8246 13 12.5 13H11.04ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowOpen;\n"
7
+ ],
8
+ "mappings": "0+BAAkB,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,kFC9DY,IAAlB,sBAGO,IAAM,EAA2E,UAAM,KAAK,CAAC,IAC3F,wBAAsnC,EAAtnC,IAAqB,EAAO,UAAU,2CAA2C,OAAO,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i6BAAi6B,KAAK,eAAc,CAAI,CAC9nC,EAEc",
9
+ "debugId": "2AC1BB6C51995D4264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var s=({children:r,size:o=24,ariaLabel:i,color:p,ariaHidden:n=!0,style:C,mode:a="masked",maskId:t,...m})=>{let d=a!=="raw"&&!!t;return e.createElement("svg",{...m,"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:p,...C}},i&&!n&&e.createElement("title",null,i),d?e.createElement(e.Fragment,null,e.createElement("mask",{id:t,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(#${t})`})):r)};import l from"react";var f=l.memo((r)=>l.createElement(s,{...r,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"round-filled-radius-2-stroke-2-IconAirplaneWindowOpen"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM11.04 13C10.0283 13.0002 9.30673 13.9815 9.6084 14.9473L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13.4004 13.2998C13.1407 13.1051 12.8246 13 12.5 13H11.04ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z",fill:"currentColor"}))),x=f;export{f as IconAirplaneWindowOpen,x as default};
2
+
3
+ //# debugId=97A0256D37E9EAB164756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAirplaneWindowOpen/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 IconAirplaneWindowOpen: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"airplane-window-open, light-mode, flight\" maskId=\"round-filled-radius-2-stroke-2-IconAirplaneWindowOpen\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 2C12.805 2 13.7833 2.02378 14.7461 2.05664C17.723 2.15839 20.1446 4.48308 20.3311 7.4668C20.4237 8.94903 20.5 10.5974 20.5 12C20.5 13.4026 20.4237 15.051 20.3311 16.5332C20.1446 19.5169 17.723 21.8416 14.7461 21.9434C13.7833 21.9762 12.805 22 12 22C11.195 22 10.2167 21.9762 9.25391 21.9434C6.27702 21.8416 3.85536 19.5169 3.66895 16.5332C3.57634 15.051 3.5 13.4026 3.5 12C3.5 10.5974 3.57634 8.94903 3.66895 7.4668C3.85536 4.48308 6.27702 2.15839 9.25391 2.05664C10.2167 2.02378 11.195 2 12 2ZM11.04 13C10.0283 13.0002 9.30673 13.9815 9.6084 14.9473L11.1836 19.9893C11.4711 19.9938 11.7454 20 12 20C12.7715 20 13.7235 19.9769 14.6777 19.9443C16.4516 19.8837 17.9127 18.6277 18.2627 16.9463L13.4004 13.2998C13.1407 13.1051 12.8246 13 12.5 13H11.04ZM12 4C11.2285 4 10.2765 4.0231 9.32227 4.05566C7.56736 4.11563 6.11871 5.34564 5.74902 7H18.251C17.8813 5.34564 16.4326 4.11563 14.6777 4.05566C13.7235 4.0231 12.7715 4 12 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAirplaneWindowOpen;\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,EAA2E,EAAM,KAAK,CAAC,IAC3F,gBAAsnC,EAAtnC,IAAqB,EAAO,UAAU,2CAA2C,OAAO,yDAAwD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i6BAAi6B,KAAK,eAAc,CAAI,CAC9nC,EAEc",
9
+ "debugId": "97A0256D37E9EAB164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBandage: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconBandage;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:k,defineProperty:i,getOwnPropertyNames:f,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function g(e){return this[e]}var M,Z,h=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var a=r?M??=new WeakMap:Z??=new WeakMap,p=a.get(e);if(p)return p}o=e!=null?I(k(e)):{};let s=r||!e||!e.__esModule?i(o,"default",{value:e,enumerable:!0}):o;if(e&&typeof e==="object"||typeof e==="function"){for(let l of f(e))if(!u.call(s,l))i(s,l,{get:g.bind(e,l),enumerable:!0})}if(t)a.set(e,s);return s},c=(e)=>{var r=(d??=new WeakMap).get(e),o;if(r)return r;if(r=i({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of f(e))if(!u.call(r,t))i(r,t,{get:g.bind(e,t),enumerable:!(o=y(e,t))||o.enumerable})}return d.set(e,r),r},d;var b=(e)=>e;function v(e,r){this[e]=b.bind(null,r)}var w=(e,r)=>{for(var o in r)i(e,o,{get:r[o],enumerable:!0,configurable:!0,set:v.bind(r,o)})};var P={};w(P,{CentralIconBase:()=>m});module.exports=c(P);var n=h(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:a=!0,style:p,mode:s="masked",maskId:l,...x})=>{let B=s!=="raw"&&!!l;return n.default.createElement("svg",{...x,"aria-hidden":a,role:a?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&&!a&&n.default.createElement("title",null,o),B?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 S={};w(S,{IconBandage:()=>L,default:()=>G});module.exports=c(S);var C=h(require("react"));var L=C.default.memo((e)=>C.default.createElement(m,{...e,ariaLabel:"bandage, plster, repair",maskId:"round-filled-radius-2-stroke-2-IconBandage"},C.default.createElement("path",{d:"M11.5003 19.9133L11.2074 20.2063C9.16 22.2537 5.84069 22.2537 3.79332 20.2063C1.746 18.1589 1.74596 14.8396 3.79332 12.7922L4.08629 12.4993L11.5003 19.9133Z",fill:"currentColor"}),C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5003 12.9133L12.9144 18.4993L5.50035 11.0852L11.0863 5.49927L18.5003 12.9133ZM12.0003 13.2502C11.4481 13.2502 11.0003 13.698 11.0003 14.2502C11.0006 14.8023 11.4482 15.2502 12.0003 15.2502C12.5525 15.2502 13.0001 14.8023 13.0003 14.2502C13.0003 13.698 12.5526 13.2502 12.0003 13.2502ZM9.75035 11.0002C9.19806 11.0002 8.75035 11.448 8.75035 12.0002C8.75061 12.5523 9.19823 13.0002 9.75035 13.0002C10.3025 13.0002 10.7501 12.5523 10.7503 12.0002C10.7503 11.448 10.3026 11.0002 9.75035 11.0002ZM14.2503 11.0002C13.6981 11.0002 13.2503 11.448 13.2503 12.0002C13.2506 12.5523 13.6982 13.0002 14.2503 13.0002C14.8025 13.0002 15.2501 12.5523 15.2503 12.0002C15.2503 11.448 14.8026 11.0002 14.2503 11.0002ZM12.0003 8.75025C11.4481 8.75025 11.0003 9.19796 11.0003 9.75025C11.0006 10.3023 11.4482 10.7502 12.0003 10.7502C12.5525 10.7502 13.0001 10.3023 13.0003 9.75025C13.0003 9.19796 12.5526 8.75025 12.0003 8.75025Z",fill:"currentColor"}),C.default.createElement("path",{d:"M12.7933 3.79224C14.8407 1.74508 18.1601 1.74499 20.2074 3.79224C22.2547 5.83955 22.2545 9.15891 20.2074 11.2063L19.9144 11.4993L12.5003 4.08521L12.7933 3.79224Z",fill:"currentColor"}))),G=L;
2
+
3
+ //# debugId=D8285587F97F68EF64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/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 IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bandage, plster, repair\" maskId=\"round-filled-radius-2-stroke-2-IconBandage\"><path d=\"M11.5003 19.9133L11.2074 20.2063C9.16 22.2537 5.84069 22.2537 3.79332 20.2063C1.746 18.1589 1.74596 14.8396 3.79332 12.7922L4.08629 12.4993L11.5003 19.9133Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5003 12.9133L12.9144 18.4993L5.50035 11.0852L11.0863 5.49927L18.5003 12.9133ZM12.0003 13.2502C11.4481 13.2502 11.0003 13.698 11.0003 14.2502C11.0006 14.8023 11.4482 15.2502 12.0003 15.2502C12.5525 15.2502 13.0001 14.8023 13.0003 14.2502C13.0003 13.698 12.5526 13.2502 12.0003 13.2502ZM9.75035 11.0002C9.19806 11.0002 8.75035 11.448 8.75035 12.0002C8.75061 12.5523 9.19823 13.0002 9.75035 13.0002C10.3025 13.0002 10.7501 12.5523 10.7503 12.0002C10.7503 11.448 10.3026 11.0002 9.75035 11.0002ZM14.2503 11.0002C13.6981 11.0002 13.2503 11.448 13.2503 12.0002C13.2506 12.5523 13.6982 13.0002 14.2503 13.0002C14.8025 13.0002 15.2501 12.5523 15.2503 12.0002C15.2503 11.448 14.8026 11.0002 14.2503 11.0002ZM12.0003 8.75025C11.4481 8.75025 11.0003 9.19796 11.0003 9.75025C11.0006 10.3023 11.4482 10.7502 12.0003 10.7502C12.5525 10.7502 13.0001 10.3023 13.0003 9.75025C13.0003 9.19796 12.5526 8.75025 12.0003 8.75025Z\" fill=\"currentColor\"/><path d=\"M12.7933 3.79224C14.8407 1.74508 18.1601 1.74499 20.2074 3.79224C22.2547 5.83955 22.2545 9.15891 20.2074 11.2063L19.9144 11.4993L12.5003 4.08521L12.7933 3.79224Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\n"
7
+ ],
8
+ "mappings": "0+BAAkB,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,uEC9DY,IAAlB,sBAGO,IAAM,EAAgE,UAAM,KAAK,CAAC,IAChF,wBAAw8C,EAAx8C,IAAqB,EAAO,UAAU,0BAA0B,OAAO,8CAA6C,wBAAC,OAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k5BAAk5B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,CAAI,CACh9C,EAEc",
9
+ "debugId": "D8285587F97F68EF64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var s=({children:t,size:r=24,ariaLabel:a,color:C,ariaHidden:n=!0,style:i,mode:p="masked",maskId:l,...m})=>{let d=p!=="raw"&&!!l;return e.createElement("svg",{...m,"aria-hidden":n,role:n?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:C,...i}},a&&!n&&e.createElement("title",null,a),d?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"}},t)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):t)};import o from"react";var f=o.memo((t)=>o.createElement(s,{...t,ariaLabel:"bandage, plster, repair",maskId:"round-filled-radius-2-stroke-2-IconBandage"},o.createElement("path",{d:"M11.5003 19.9133L11.2074 20.2063C9.16 22.2537 5.84069 22.2537 3.79332 20.2063C1.746 18.1589 1.74596 14.8396 3.79332 12.7922L4.08629 12.4993L11.5003 19.9133Z",fill:"currentColor"}),o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5003 12.9133L12.9144 18.4993L5.50035 11.0852L11.0863 5.49927L18.5003 12.9133ZM12.0003 13.2502C11.4481 13.2502 11.0003 13.698 11.0003 14.2502C11.0006 14.8023 11.4482 15.2502 12.0003 15.2502C12.5525 15.2502 13.0001 14.8023 13.0003 14.2502C13.0003 13.698 12.5526 13.2502 12.0003 13.2502ZM9.75035 11.0002C9.19806 11.0002 8.75035 11.448 8.75035 12.0002C8.75061 12.5523 9.19823 13.0002 9.75035 13.0002C10.3025 13.0002 10.7501 12.5523 10.7503 12.0002C10.7503 11.448 10.3026 11.0002 9.75035 11.0002ZM14.2503 11.0002C13.6981 11.0002 13.2503 11.448 13.2503 12.0002C13.2506 12.5523 13.6982 13.0002 14.2503 13.0002C14.8025 13.0002 15.2501 12.5523 15.2503 12.0002C15.2503 11.448 14.8026 11.0002 14.2503 11.0002ZM12.0003 8.75025C11.4481 8.75025 11.0003 9.19796 11.0003 9.75025C11.0006 10.3023 11.4482 10.7502 12.0003 10.7502C12.5525 10.7502 13.0001 10.3023 13.0003 9.75025C13.0003 9.19796 12.5526 8.75025 12.0003 8.75025Z",fill:"currentColor"}),o.createElement("path",{d:"M12.7933 3.79224C14.8407 1.74508 18.1601 1.74499 20.2074 3.79224C22.2547 5.83955 22.2545 9.15891 20.2074 11.2063L19.9144 11.4993L12.5003 4.08521L12.7933 3.79224Z",fill:"currentColor"}))),L=f;export{f as IconBandage,L as default};
2
+
3
+ //# debugId=4EB3CA1E2C51675A64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconBandage/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 IconBandage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"bandage, plster, repair\" maskId=\"round-filled-radius-2-stroke-2-IconBandage\"><path d=\"M11.5003 19.9133L11.2074 20.2063C9.16 22.2537 5.84069 22.2537 3.79332 20.2063C1.746 18.1589 1.74596 14.8396 3.79332 12.7922L4.08629 12.4993L11.5003 19.9133Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5003 12.9133L12.9144 18.4993L5.50035 11.0852L11.0863 5.49927L18.5003 12.9133ZM12.0003 13.2502C11.4481 13.2502 11.0003 13.698 11.0003 14.2502C11.0006 14.8023 11.4482 15.2502 12.0003 15.2502C12.5525 15.2502 13.0001 14.8023 13.0003 14.2502C13.0003 13.698 12.5526 13.2502 12.0003 13.2502ZM9.75035 11.0002C9.19806 11.0002 8.75035 11.448 8.75035 12.0002C8.75061 12.5523 9.19823 13.0002 9.75035 13.0002C10.3025 13.0002 10.7501 12.5523 10.7503 12.0002C10.7503 11.448 10.3026 11.0002 9.75035 11.0002ZM14.2503 11.0002C13.6981 11.0002 13.2503 11.448 13.2503 12.0002C13.2506 12.5523 13.6982 13.0002 14.2503 13.0002C14.8025 13.0002 15.2501 12.5523 15.2503 12.0002C15.2503 11.448 14.8026 11.0002 14.2503 11.0002ZM12.0003 8.75025C11.4481 8.75025 11.0003 9.19796 11.0003 9.75025C11.0006 10.3023 11.4482 10.7502 12.0003 10.7502C12.5525 10.7502 13.0001 10.3023 13.0003 9.75025C13.0003 9.19796 12.5526 8.75025 12.0003 8.75025Z\" fill=\"currentColor\"/><path d=\"M12.7933 3.79224C14.8407 1.74508 18.1601 1.74499 20.2074 3.79224C22.2547 5.83955 22.2545 9.15891 20.2074 11.2063L19.9144 11.4993L12.5003 4.08521L12.7933 3.79224Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBandage;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAAw8C,EAAx8C,IAAqB,EAAO,UAAU,0BAA0B,OAAO,8CAA6C,gBAAC,OAAD,CAAM,EAAE,+JAA+J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k5BAAk5B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,CAAI,CACh9C,EAEc",
9
+ "debugId": "4EB3CA1E2C51675A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps>;
4
+ export default IconTextHighlight;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:B,defineProperty:C,getOwnPropertyNames:d,getOwnPropertyDescriptor:L}=Object,g=Object.prototype.hasOwnProperty;function f(e){return this[e]}var v,P,u=(e,t,r)=>{var o=e!=null&&typeof e==="object";if(o){var i=t?v??=new WeakMap:P??=new WeakMap,p=i.get(e);if(p)return p}r=e!=null?y(B(e)):{};let s=t||!e||!e.__esModule?C(r,"default",{value:e,enumerable:!0}):r;if(e&&typeof e==="object"||typeof e==="function"){for(let l of d(e))if(!g.call(s,l))C(s,l,{get:f.bind(e,l),enumerable:!0})}if(o)i.set(e,s);return s},c=(e)=>{var t=(h??=new WeakMap).get(e),r;if(t)return t;if(t=C({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of d(e))if(!g.call(t,o))C(t,o,{get:f.bind(e,o),enumerable:!(r=L(e,o))||r.enumerable})}return h.set(e,t),t},h;var b=(e)=>e;function S(e,t){this[e]=b.bind(null,t)}var x=(e,t)=>{for(var r in t)C(e,r,{get:t[r],enumerable:!0,configurable:!0,set:S.bind(t,r)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=c(G);var n=u(require("react")),m=({children:e,size:t=24,ariaLabel:r,color:o,ariaHidden:i=!0,style:p,mode:s="masked",maskId:l,...I})=>{let k=s!=="raw"&&!!l;return n.default.createElement("svg",{...I,"aria-hidden":i,role:i?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...p}},r&&!i&&n.default.createElement("title",null,r),k?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 V={};x(V,{IconTextHighlight:()=>w,default:()=>H});module.exports=c(V);var a=u(require("react"));var w=a.default.memo((e)=>a.default.createElement(m,{...e,ariaLabel:"text-highlight",maskId:"round-filled-radius-2-stroke-2-IconTextHighlight"},a.default.createElement("path",{d:"M12.8408 12.5H11.1592L12 10.5371L12.8408 12.5Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.15723 4.27542C12.2307 3.64012 18.9999 2.40403 19 6.751C18.9998 7.88336 18.5439 8.61761 17.7803 9.07718C20.7204 9.35351 22.9999 10.1841 23 12.501C22.9997 14.1823 21.799 15.0808 20.0166 15.5528C20.6057 15.9134 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2955 19.0576 19.3672C17.6975 19.4565 15.883 19.5909 14.5 19.75C13.4316 19.873 12.118 20.0684 10.9521 20.2539C9.8933 20.4224 8.89552 19.9171 8.375 19.0782C5.42806 18.9433 3.0005 18.2992 3 16.001C3.00005 14.7474 3.72296 13.9864 4.85742 13.5303C2.60385 13.0826 1.00044 12.2086 1 10.501C1.00008 8.72642 2.73101 7.85119 5.12402 7.41995C5.04463 7.18361 5.00004 6.93143 5 6.66995C5.00025 5.44766 5.94436 4.42729 7.15723 4.27542ZM12 7.00003C11.65 7.00003 11.3297 7.18271 11.1494 7.47464L11.0811 7.60647L8.08105 14.6065C7.86368 15.114 8.09891 15.7014 8.60645 15.919C9.11402 16.1364 9.70142 15.9011 9.91895 15.3936L10.3018 14.5H13.6982L14.0811 15.3936C14.2986 15.9011 14.886 16.1364 15.3936 15.919C15.9011 15.7014 16.1363 15.114 15.9189 14.6065L12.9189 7.60647C12.7614 7.23881 12.4 7.00003 12 7.00003Z",fill:"currentColor"}))),H=w;
2
+
3
+ //# debugId=59F81AAEE96EC74D64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/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 IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"text-highlight\" maskId=\"round-filled-radius-2-stroke-2-IconTextHighlight\"><path d=\"M12.8408 12.5H11.1592L12 10.5371L12.8408 12.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.15723 4.27542C12.2307 3.64012 18.9999 2.40403 19 6.751C18.9998 7.88336 18.5439 8.61761 17.7803 9.07718C20.7204 9.35351 22.9999 10.1841 23 12.501C22.9997 14.1823 21.799 15.0808 20.0166 15.5528C20.6057 15.9134 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2955 19.0576 19.3672C17.6975 19.4565 15.883 19.5909 14.5 19.75C13.4316 19.873 12.118 20.0684 10.9521 20.2539C9.8933 20.4224 8.89552 19.9171 8.375 19.0782C5.42806 18.9433 3.0005 18.2992 3 16.001C3.00005 14.7474 3.72296 13.9864 4.85742 13.5303C2.60385 13.0826 1.00044 12.2086 1 10.501C1.00008 8.72642 2.73101 7.85119 5.12402 7.41995C5.04463 7.18361 5.00004 6.93143 5 6.66995C5.00025 5.44766 5.94436 4.42729 7.15723 4.27542ZM12 7.00003C11.65 7.00003 11.3297 7.18271 11.1494 7.47464L11.0811 7.60647L8.08105 14.6065C7.86368 15.114 8.09891 15.7014 8.60645 15.919C9.11402 16.1364 9.70142 15.9011 9.91895 15.3936L10.3018 14.5H13.6982L14.0811 15.3936C14.2986 15.9011 14.886 16.1364 15.3936 15.919C15.9011 15.7014 16.1363 15.114 15.9189 14.6065L12.9189 7.60647C12.7614 7.23881 12.4 7.00003 12 7.00003Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\n"
7
+ ],
8
+ "mappings": "0+BAAkB,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,6EC9DY,IAAlB,sBAGO,IAAM,EAAsE,UAAM,KAAK,CAAC,IACtF,wBAAuyC,EAAvyC,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,wBAAC,OAAD,CAAM,EAAE,iDAAiD,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,miCAAmiC,KAAK,eAAc,CAAI,CAC/yC,EAEc",
9
+ "debugId": "59F81AAEE96EC74D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var s=({children:r,size:t=24,ariaLabel:i,color:C,ariaHidden:n=!0,style:a,mode:p="masked",maskId:l,...m})=>{let h=p!=="raw"&&!!l;return e.createElement("svg",{...m,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},i&&!n&&e.createElement("title",null,i),h?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 o from"react";var d=o.memo((r)=>o.createElement(s,{...r,ariaLabel:"text-highlight",maskId:"round-filled-radius-2-stroke-2-IconTextHighlight"},o.createElement("path",{d:"M12.8408 12.5H11.1592L12 10.5371L12.8408 12.5Z",fill:"currentColor"}),o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.15723 4.27542C12.2307 3.64012 18.9999 2.40403 19 6.751C18.9998 7.88336 18.5439 8.61761 17.7803 9.07718C20.7204 9.35351 22.9999 10.1841 23 12.501C22.9997 14.1823 21.799 15.0808 20.0166 15.5528C20.6057 15.9134 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2955 19.0576 19.3672C17.6975 19.4565 15.883 19.5909 14.5 19.75C13.4316 19.873 12.118 20.0684 10.9521 20.2539C9.8933 20.4224 8.89552 19.9171 8.375 19.0782C5.42806 18.9433 3.0005 18.2992 3 16.001C3.00005 14.7474 3.72296 13.9864 4.85742 13.5303C2.60385 13.0826 1.00044 12.2086 1 10.501C1.00008 8.72642 2.73101 7.85119 5.12402 7.41995C5.04463 7.18361 5.00004 6.93143 5 6.66995C5.00025 5.44766 5.94436 4.42729 7.15723 4.27542ZM12 7.00003C11.65 7.00003 11.3297 7.18271 11.1494 7.47464L11.0811 7.60647L8.08105 14.6065C7.86368 15.114 8.09891 15.7014 8.60645 15.919C9.11402 16.1364 9.70142 15.9011 9.91895 15.3936L10.3018 14.5H13.6982L14.0811 15.3936C14.2986 15.9011 14.886 16.1364 15.3936 15.919C15.9011 15.7014 16.1363 15.114 15.9189 14.6065L12.9189 7.60647C12.7614 7.23881 12.4 7.00003 12 7.00003Z",fill:"currentColor"}))),w=d;export{d as IconTextHighlight,w as default};
2
+
3
+ //# debugId=C3F1AAC06678564264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconTextHighlight/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 IconTextHighlight: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} ariaLabel=\"text-highlight\" maskId=\"round-filled-radius-2-stroke-2-IconTextHighlight\"><path d=\"M12.8408 12.5H11.1592L12 10.5371L12.8408 12.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.15723 4.27542C12.2307 3.64012 18.9999 2.40403 19 6.751C18.9998 7.88336 18.5439 8.61761 17.7803 9.07718C20.7204 9.35351 22.9999 10.1841 23 12.501C22.9997 14.1823 21.799 15.0808 20.0166 15.5528C20.6057 15.9134 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2955 19.0576 19.3672C17.6975 19.4565 15.883 19.5909 14.5 19.75C13.4316 19.873 12.118 20.0684 10.9521 20.2539C9.8933 20.4224 8.89552 19.9171 8.375 19.0782C5.42806 18.9433 3.0005 18.2992 3 16.001C3.00005 14.7474 3.72296 13.9864 4.85742 13.5303C2.60385 13.0826 1.00044 12.2086 1 10.501C1.00008 8.72642 2.73101 7.85119 5.12402 7.41995C5.04463 7.18361 5.00004 6.93143 5 6.66995C5.00025 5.44766 5.94436 4.42729 7.15723 4.27542ZM12 7.00003C11.65 7.00003 11.3297 7.18271 11.1494 7.47464L11.0811 7.60647L8.08105 14.6065C7.86368 15.114 8.09891 15.7014 8.60645 15.919C9.11402 16.1364 9.70142 15.9011 9.91895 15.3936L10.3018 14.5H13.6982L14.0811 15.3936C14.2986 15.9011 14.886 16.1364 15.3936 15.919C15.9011 15.7014 16.1363 15.114 15.9189 14.6065L12.9189 7.60647C12.7614 7.23881 12.4 7.00003 12 7.00003Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconTextHighlight;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAuyC,EAAvyC,IAAqB,EAAO,UAAU,iBAAiB,OAAO,oDAAmD,gBAAC,OAAD,CAAM,EAAE,iDAAiD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,miCAAmiC,KAAK,eAAc,CAAI,CAC/yC,EAEc",
9
+ "debugId": "C3F1AAC06678564264756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -855,6 +855,7 @@ Below is a complete list of available icons:
855
855
  - IconColorPalette2
856
856
  - IconEyedropper
857
857
  - IconExtendImage
858
+ - IconBandage
858
859
 
859
860
  ### Emoji
860
861
 
@@ -2341,6 +2342,7 @@ Below is a complete list of available icons:
2341
2342
  - IconLetterZCircle
2342
2343
  - IconLetterASquare
2343
2344
  - IconLetterZSquare
2345
+ - IconTextHighlight
2344
2346
 
2345
2347
  ### Vehicles
2346
2348
 
@@ -2348,6 +2350,8 @@ Below is a complete list of available icons:
2348
2350
  - IconBoat
2349
2351
  - IconCarTaxi
2350
2352
  - IconRocket2
2353
+ - IconAirplaneWindowClosed
2354
+ - IconAirplaneWindowOpen
2351
2355
 
2352
2356
  ### Vehicles & Aircrafts
2353
2357