@central-icons-react/round-outlined-radius-2-stroke-1 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:i,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,c=Object.prototype.hasOwnProperty;function f(o){return this[o]}var b,S,h=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var l=r?b??=new WeakMap:S??=new WeakMap,m=l.get(o);if(m)return m}e=o!=null?y(B(o)):{};let a=r||!o||!o.__esModule?i(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let s of u(o))if(!c.call(a,s))i(a,s,{get:f.bind(o,s),enumerable:!0})}if(t)l.set(o,a);return a},w=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=i({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!c.call(r,t))i(r,t,{get:f.bind(o,t),enumerable:!(e=P(o,t))||e.enumerable})}return C.set(o,r),r},C;var v=(o)=>o;function G(o,r){this[o]=v.bind(null,r)}var g=(o,r)=>{for(var e in r)i(o,e,{get:r[e],enumerable:!0,configurable:!0,set:G.bind(r,e)})};var V={};g(V,{CentralIconBase:()=>d});module.exports=w(V);var n=h(require("react")),d=({children:o,size:r=24,ariaLabel:e,color:t,ariaHidden:l=!0,style:m,mode:a="masked",maskId:s,...x})=>{let I=a!=="raw"&&!!s;return n.default.createElement("svg",{...x,"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:t,...m}},e&&!l&&n.default.createElement("title",null,e),I?n.default.createElement(n.default.Fragment,null,n.default.createElement("mask",{id:s,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"}},o)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):o)};var A={};g(A,{IconAirplaneWindowClosed:()=>k,default:()=>E});module.exports=w(A);var p=h(require("react"));var k=p.default.memo((o)=>p.default.createElement(d,{...o,ariaLabel:"airplane-window-closed, dark-mode",maskId:"round-outlined-radius-2-stroke-1-IconAirplaneWindowClosed"},p.default.createElement("path",{d:"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z",stroke:"currentColor"}),p.default.createElement("path",{d:"M9.5 17.5H14.5",stroke:"currentColor",strokeLinecap:"round"}))),E=k;
2
+
3
+ //# debugId=2B7C2ED8C974169364756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconAirplaneWindowClosed\"><path d=\"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z\" stroke=\"currentColor\"/><path d=\"M9.5 17.5H14.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/></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,wBAAivB,EAAjvB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,6DAA4D,wBAAC,OAAD,CAAM,EAAE,6fAA6f,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAO,CAAI,CACzvB,EAEc",
9
+ "debugId": "2B7C2ED8C974169364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";var a=({children:e,size:r=24,ariaLabel:l,color:i,ariaHidden:n=!0,style:p,mode:m="masked",maskId:s,...d})=>{let C=m!=="raw"&&!!s;return o.createElement("svg",{...d,"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:i,...p}},l&&!n&&o.createElement("title",null,l),C?o.createElement(o.Fragment,null,o.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement("rect",{width:"24",height:"24",fill:"#000"}),o.createElement("g",{fill:"none",style:{color:"#fff"}},e)),o.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};import t from"react";var u=t.memo((e)=>t.createElement(a,{...e,ariaLabel:"airplane-window-closed, dark-mode",maskId:"round-outlined-radius-2-stroke-1-IconAirplaneWindowClosed"},t.createElement("path",{d:"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z",stroke:"currentColor"}),t.createElement("path",{d:"M9.5 17.5H14.5",stroke:"currentColor",strokeLinecap:"round"}))),k=u;export{u as IconAirplaneWindowClosed,k as default};
2
+
3
+ //# debugId=B6754AEADB5D48C364756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconAirplaneWindowClosed\"><path d=\"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z\" stroke=\"currentColor\"/><path d=\"M9.5 17.5H14.5\" stroke=\"currentColor\" strokeLinecap=\"round\"/></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,gBAAivB,EAAjvB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,6DAA4D,gBAAC,OAAD,CAAM,EAAE,6fAA6f,OAAO,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAO,CAAI,CACzvB,EAEc",
9
+ "debugId": "B6754AEADB5D48C364756E2164756E21",
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 L=Object.create;var{getPrototypeOf:y,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:B}=Object,h=Object.prototype.hasOwnProperty;function k(o){return this[o]}var P,b,c=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var s=r?P??=new WeakMap:b??=new WeakMap,d=s.get(o);if(d)return d}e=o!=null?L(y(o)):{};let l=r||!o||!o.__esModule?a(e,"default",{value:o,enumerable:!0}):e;if(o&&typeof o==="object"||typeof o==="function"){for(let i of u(o))if(!h.call(l,i))a(l,i,{get:k.bind(o,i),enumerable:!0})}if(n)s.set(o,l);return l},f=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!h.call(r,n))a(r,n,{get:k.bind(o,n),enumerable:!(e=B(o,n))||e.enumerable})}return C.set(o,r),r},C;var S=(o)=>o;function v(o,r){this[o]=S.bind(null,r)}var g=(o,r)=>{for(var e in r)a(o,e,{get:r[e],enumerable:!0,configurable:!0,set:v.bind(r,e)})};var G={};g(G,{CentralIconBase:()=>m});module.exports=f(G);var t=c(require("react")),m=({children:o,size:r=24,ariaLabel:e,color:n,ariaHidden:s=!0,style:d,mode:l="masked",maskId:i,...x})=>{let I=l!=="raw"&&!!i;return t.default.createElement("svg",{...x,"aria-hidden":s,role:s?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:n,...d}},e&&!s&&t.default.createElement("title",null,e),I?t.default.createElement(t.default.Fragment,null,t.default.createElement("mask",{id:i,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"}},o)),t.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):o)};var V={};g(V,{IconAirplaneWindowOpen:()=>w,default:()=>j});module.exports=f(V);var p=c(require("react"));var w=p.default.memo((o)=>p.default.createElement(m,{...o,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"round-outlined-radius-2-stroke-1-IconAirplaneWindowOpen"},p.default.createElement("path",{d:"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement("path",{d:"M4.5 6.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),p.default.createElement("path",{d:"M11.5 21.5L9.31063 12.7425C9.15285 12.1114 9.63021 11.5 10.2808 11.5H12.609C12.8604 11.5 13.1026 11.5947 13.2873 11.7652L19.5 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),j=w;
2
+
3
+ //# debugId=E71B81F78AC6E59164756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconAirplaneWindowOpen\"><path d=\"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.5 6.5H19.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.5 21.5L9.31063 12.7425C9.15285 12.1114 9.63021 11.5 10.2808 11.5H12.609C12.8604 11.5 13.1026 11.5947 13.2873 11.7652L19.5 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAA0gC,EAA1gC,IAAqB,EAAO,UAAU,2CAA2C,OAAO,2DAA0D,wBAAC,OAAD,CAAM,EAAE,6fAA6f,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qIAAqI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CAClhC,EAEc",
9
+ "debugId": "E71B81F78AC6E59164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";var l=({children:n,size:r=24,ariaLabel:s,color:p,ariaHidden:t=!0,style:a,mode:d="masked",maskId:i,...m})=>{let C=d!=="raw"&&!!i;return o.createElement("svg",{...m,"aria-hidden":t,role:t?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:p,...a}},s&&!t&&o.createElement("title",null,s),C?o.createElement(o.Fragment,null,o.createElement("mask",{id:i,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement("rect",{width:"24",height:"24",fill:"#000"}),o.createElement("g",{fill:"none",style:{color:"#fff"}},n)),o.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${i})`})):n)};import e from"react";var u=e.memo((n)=>e.createElement(l,{...n,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"round-outlined-radius-2-stroke-1-IconAirplaneWindowOpen"},e.createElement("path",{d:"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M4.5 6.5H19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M11.5 21.5L9.31063 12.7425C9.15285 12.1114 9.63021 11.5 10.2808 11.5H12.609C12.8604 11.5 13.1026 11.5947 13.2873 11.7652L19.5 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),w=u;export{u as IconAirplaneWindowOpen,w as default};
2
+
3
+ //# debugId=E3224D861897612F64756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconAirplaneWindowOpen\"><path d=\"M4 12C4 10.4771 4.08877 8.65945 4.19388 7.04108C4.35387 4.57781 6.35282 2.65703 8.81972 2.56943C9.93494 2.52983 11.0802 2.5 12 2.5C12.9198 2.5 14.0651 2.52983 15.1803 2.56943C17.6472 2.65703 19.6461 4.57781 19.8061 7.04108C19.9112 8.65945 20 10.4771 20 12C20 13.5229 19.9112 15.3406 19.8061 16.9589C19.6461 19.4222 17.6472 21.343 15.1803 21.4306C14.0651 21.4702 12.9198 21.5 12 21.5C11.0802 21.5 9.93494 21.4702 8.81972 21.4306C6.35282 21.343 4.35387 19.4222 4.19388 16.9589C4.08877 15.3405 4 13.5229 4 12Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.5 6.5H19.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.5 21.5L9.31063 12.7425C9.15285 12.1114 9.63021 11.5 10.2808 11.5H12.609C12.8604 11.5 13.1026 11.5947 13.2873 11.7652L19.5 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAA0gC,EAA1gC,IAAqB,EAAO,UAAU,2CAA2C,OAAO,2DAA0D,gBAAC,OAAD,CAAM,EAAE,6fAA6f,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qIAAqI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CAClhC,EAEc",
9
+ "debugId": "E3224D861897612F64756E2164756E21",
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 B=Object.create;var{getPrototypeOf:I,defineProperty:c,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,C=Object.prototype.hasOwnProperty;function f(r){return this[r]}var P,L,g=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var i=o?P??=new WeakMap:L??=new WeakMap,p=i.get(r);if(p)return p}e=r!=null?B(I(r)):{};let a=o||!r||!r.__esModule?c(e,"default",{value:r,enumerable:!0}):e;if(r&&typeof r==="object"||typeof r==="function"){for(let s of u(r))if(!C.call(a,s))c(a,s,{get:f.bind(r,s),enumerable:!0})}if(n)i.set(r,a);return a},h=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=c({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!C.call(o,n))c(o,n,{get:f.bind(r,n),enumerable:!(e=b(r,n))||e.enumerable})}return d.set(r,o),o},d;var S=(r)=>r;function v(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var e in o)c(r,e,{get:o[e],enumerable:!0,configurable:!0,set:v.bind(o,e)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=h(G);var l=g(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:i=!0,style:p,mode:a="masked",maskId:s,...k})=>{let w=a!=="raw"&&!!s;return l.default.createElement("svg",{...k,"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,...p}},e&&!i&&l.default.createElement("title",null,e),w?l.default.createElement(l.default.Fragment,null,l.default.createElement("mask",{id:s,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(#${s})`})):r)};var V={};x(V,{IconBandage:()=>y,default:()=>M});module.exports=h(V);var t=g(require("react"));var y=t.default.memo((r)=>t.default.createElement(m,{...r,ariaLabel:"bandage, plster, repair",maskId:"round-outlined-radius-2-stroke-1-IconBandage"},t.default.createElement("path",{d:"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z",stroke:"currentColor"}),t.default.createElement("path",{d:"M6 12L12 18",stroke:"currentColor"}),t.default.createElement("path",{d:"M12 6L18 12",stroke:"currentColor"}),t.default.createElement("circle",{cx:"11.9992",cy:"9.8",r:"0.8",fill:"currentColor"}),t.default.createElement("circle",{cx:"14.2004",cy:"12.0002",r:"0.8",fill:"currentColor"}),t.default.createElement("circle",{cx:"11.9992",cy:"14.1999",r:"0.8",fill:"currentColor"}),t.default.createElement("circle",{cx:"9.8",cy:"12.0002",r:"0.8",fill:"currentColor"}))),M=y;
2
+
3
+ //# debugId=E9E329E39ED13D6B64756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconBandage\"><path d=\"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z\" stroke=\"currentColor\"/><path d=\"M6 12L12 18\" stroke=\"currentColor\"/><path d=\"M12 6L18 12\" stroke=\"currentColor\"/><circle cx=\"11.9992\" cy=\"9.8\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"14.2004\" cy=\"12.0002\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"11.9992\" cy=\"14.1999\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"9.8\" cy=\"12.0002\" r=\"0.8\" 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,wBAAwrB,EAAxrB,IAAqB,EAAO,UAAU,0BAA0B,OAAO,gDAA+C,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,MAAM,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,MAAM,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CAChsB,EAEc",
9
+ "debugId": "E9E329E39ED13D6B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import o from"react";var i=({children:t,size:e=24,ariaLabel:s,color:a,ariaHidden:n=!0,style:c,mode:p="masked",maskId:l,...m})=>{let d=p!=="raw"&&!!l;return o.createElement("svg",{...m,"aria-hidden":n,role:n?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,...c}},s&&!n&&o.createElement("title",null,s),d?o.createElement(o.Fragment,null,o.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},o.createElement("rect",{width:"24",height:"24",fill:"#000"}),o.createElement("g",{fill:"none",style:{color:"#fff"}},t)),o.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):t)};import r from"react";var u=r.memo((t)=>r.createElement(i,{...t,ariaLabel:"bandage, plster, repair",maskId:"round-outlined-radius-2-stroke-1-IconBandage"},r.createElement("path",{d:"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z",stroke:"currentColor"}),r.createElement("path",{d:"M6 12L12 18",stroke:"currentColor"}),r.createElement("path",{d:"M12 6L18 12",stroke:"currentColor"}),r.createElement("circle",{cx:"11.9992",cy:"9.8",r:"0.8",fill:"currentColor"}),r.createElement("circle",{cx:"14.2004",cy:"12.0002",r:"0.8",fill:"currentColor"}),r.createElement("circle",{cx:"11.9992",cy:"14.1999",r:"0.8",fill:"currentColor"}),r.createElement("circle",{cx:"9.8",cy:"12.0002",r:"0.8",fill:"currentColor"}))),y=u;export{u as IconBandage,y as default};
2
+
3
+ //# debugId=779C2CC42786253064756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconBandage\"><path d=\"M4.25 13.25L13.25 4.25C15.0449 2.45507 17.9551 2.45508 19.75 4.25C21.5449 6.04492 21.5449 8.95508 19.75 10.75L10.75 19.75C8.95507 21.5449 6.04492 21.5449 4.25 19.75C2.45508 17.9551 2.45508 15.0449 4.25 13.25Z\" stroke=\"currentColor\"/><path d=\"M6 12L12 18\" stroke=\"currentColor\"/><path d=\"M12 6L18 12\" stroke=\"currentColor\"/><circle cx=\"11.9992\" cy=\"9.8\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"14.2004\" cy=\"12.0002\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"11.9992\" cy=\"14.1999\" r=\"0.8\" fill=\"currentColor\"/><circle cx=\"9.8\" cy=\"12.0002\" r=\"0.8\" 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,gBAAwrB,EAAxrB,IAAqB,EAAO,UAAU,0BAA0B,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,MAAM,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,MAAM,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CAChsB,EAEc",
9
+ "debugId": "779C2CC42786253064756E2164756E21",
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 I=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:P}=Object,g=Object.prototype.hasOwnProperty;function u(r){return this[r]}var b,L,f=(r,t,o)=>{var e=r!=null&&typeof r==="object";if(e){var i=t?b??=new WeakMap:L??=new WeakMap,C=i.get(r);if(C)return C}o=r!=null?I(B(r)):{};let s=t||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o;if(r&&typeof r==="object"||typeof r==="function"){for(let l of d(r))if(!g.call(s,l))p(s,l,{get:u.bind(r,l),enumerable:!0})}if(e)i.set(r,s);return s},c=(r)=>{var t=(h??=new WeakMap).get(r),o;if(t)return t;if(t=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of d(r))if(!g.call(t,e))p(t,e,{get:u.bind(r,e),enumerable:!(o=P(r,e))||o.enumerable})}return h.set(r,t),t},h;var S=(r)=>r;function v(r,t){this[r]=S.bind(null,t)}var x=(r,t)=>{for(var o in t)p(r,o,{get:t[o],enumerable:!0,configurable:!0,set:v.bind(t,o)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=c(G);var n=f(require("react")),m=({children:r,size:t=24,ariaLabel:o,color:e,ariaHidden:i=!0,style:C,mode:s="masked",maskId:l,...w})=>{let y=s!=="raw"&&!!l;return n.default.createElement("svg",{...w,"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:e,...C}},o&&!i&&n.default.createElement("title",null,o),y?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"}},r)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):r)};var V={};x(V,{IconTextHighlight:()=>k,default:()=>M});module.exports=c(V);var a=f(require("react"));var k=a.default.memo((r)=>a.default.createElement(m,{...r,ariaLabel:"text-highlight",maskId:"round-outlined-radius-2-stroke-1-IconTextHighlight"},a.default.createElement("path",{d:"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z",fill:"currentColor","fill-opacity":"0.15"}),a.default.createElement("path",{d:"M10 12.5H13.9973",stroke:"currentColor"}),a.default.createElement("path",{d:"M8.5 15.5L12 7.5L15.5 15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),M=k;
2
+
3
+ //# debugId=C8DE29BCF917E45C64756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconTextHighlight\"><path d=\"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><path d=\"M10 12.5H13.9973\" stroke=\"currentColor\"/><path d=\"M8.5 15.5L12 7.5L15.5 15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,wBAAihC,EAAjhC,IAAqB,EAAO,UAAU,iBAAiB,OAAO,sDAAqD,wBAAC,OAAD,CAAM,EAAE,gtBAAgtB,KAAK,eAAe,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CACzhC,EAEc",
9
+ "debugId": "C8DE29BCF917E45C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";var s=({children:e,size:t=24,ariaLabel:i,color:a,ariaHidden:n=!0,style:p,mode:C="masked",maskId:l,...m})=>{let h=C!=="raw"&&!!l;return r.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:a,...p}},i&&!n&&r.createElement("title",null,i),h?r.createElement(r.Fragment,null,r.createElement("mask",{id:l,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"}},e)),r.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):e)};import o from"react";var d=o.memo((e)=>o.createElement(s,{...e,ariaLabel:"text-highlight",maskId:"round-outlined-radius-2-stroke-1-IconTextHighlight"},o.createElement("path",{d:"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z",fill:"currentColor","fill-opacity":"0.15"}),o.createElement("path",{d:"M10 12.5H13.9973",stroke:"currentColor"}),o.createElement("path",{d:"M8.5 15.5L12 7.5L15.5 15.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))),k=d;export{d as IconTextHighlight,k as default};
2
+
3
+ //# debugId=13C3BA0019BD92E864756E2164756E21
@@ -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-outlined-radius-2-stroke-1-IconTextHighlight\"><path d=\"M7.37695 4.62368C12.2198 4.01728 18.6814 2.8376 18.6816 6.98696C18.6815 8.06765 18.2462 8.76798 17.5176 9.20668C20.324 9.47045 22.4998 10.2637 22.5 12.4752C22.4999 14.0805 21.3532 14.9378 19.6514 15.3883C20.2141 15.7325 20.5907 16.3513 20.5908 17.0592C20.5907 18.1012 19.7761 18.9616 18.7363 19.0299C17.4381 19.1152 15.7068 19.2433 14.3867 19.3952C13.3669 19.5125 12.1128 19.6995 11 19.8766C9.98949 20.0374 9.037 19.5551 8.54004 18.7545C5.72665 18.6258 3.40934 18.0103 3.40918 15.8161C3.40938 14.6197 4.09892 13.893 5.18164 13.4577C3.03049 13.0303 1.50014 12.1962 1.5 10.5661C1.50016 8.87206 3.15298 8.03916 5.4375 7.62758C5.36126 7.40136 5.31838 7.1602 5.31836 6.90981C5.31855 5.74305 6.2192 4.76866 7.37695 4.62368Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><path d=\"M10 12.5H13.9973\" stroke=\"currentColor\"/><path d=\"M8.5 15.5L12 7.5L15.5 15.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,gBAAihC,EAAjhC,IAAqB,EAAO,UAAU,iBAAiB,OAAO,sDAAqD,gBAAC,OAAD,CAAM,EAAE,gtBAAgtB,KAAK,eAAe,eAAa,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,CACzhC,EAEc",
9
+ "debugId": "13C3BA0019BD92E864756E2164756E21",
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