@central-icons-react/square-outlined-radius-0-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:i,getOwnPropertyNames:h,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function f(e){return this[e]}var b,S,w=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var l=r?b??=new WeakMap:S??=new WeakMap,m=l.get(e);if(m)return m}o=e!=null?y(B(e)):{};let a=r||!e||!e.__esModule?i(o,"default",{value:e,enumerable:!0}):o;if(e&&typeof e==="object"||typeof e==="function"){for(let s of h(e))if(!u.call(a,s))i(a,s,{get:f.bind(e,s),enumerable:!0})}if(t)l.set(e,a);return a},c=(e)=>{var r=(C??=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 h(e))if(!u.call(r,t))i(r,t,{get:f.bind(e,t),enumerable:!(o=P(e,t))||o.enumerable})}return C.set(e,r),r},C;var v=(e)=>e;function G(e,r){this[e]=v.bind(null,r)}var g=(e,r)=>{for(var o in r)i(e,o,{get:r[o],enumerable:!0,configurable:!0,set:G.bind(r,o)})};var V={};g(V,{CentralIconBase:()=>d});module.exports=c(V);var n=w(require("react")),d=({children:e,size:r=24,ariaLabel:o,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}},o&&!l&&n.default.createElement("title",null,o),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"}},e)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};var W={};g(W,{IconAirplaneWindowClosed:()=>k,default:()=>A});module.exports=c(W);var p=w(require("react"));var k=p.default.memo((e)=>p.default.createElement(d,{...e,ariaLabel:"airplane-window-closed, dark-mode",maskId:"square-outlined-radius-0-stroke-2-IconAirplaneWindowClosed"},p.default.createElement("path",{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement("path",{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2"}))),A=k;
2
+
3
+ //# debugId=989825922438743364756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconAirplaneWindowClosed\"><path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 17H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAgvB,EAAhvB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,8DAA6D,wBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,CACxvB,EAEc",
9
+ "debugId": "989825922438743364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var a=({children:o,size:r=24,ariaLabel:l,color:i,ariaHidden:n=!0,style:p,mode:m="masked",maskId:s,...d})=>{let C=m!=="raw"&&!!s;return e.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&&e.createElement("title",null,l),C?e.createElement(e.Fragment,null,e.createElement("mask",{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},e.createElement("rect",{width:"24",height:"24",fill:"#000"}),e.createElement("g",{fill:"none",style:{color:"#fff"}},o)),e.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):o)};import t from"react";var h=t.memo((o)=>t.createElement(a,{...o,ariaLabel:"airplane-window-closed, dark-mode",maskId:"square-outlined-radius-0-stroke-2-IconAirplaneWindowClosed"},t.createElement("path",{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement("path",{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2"}))),k=h;export{h as IconAirplaneWindowClosed,k as default};
2
+
3
+ //# debugId=430FA7A372E4B61164756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconAirplaneWindowClosed\"><path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 17H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAgvB,EAAhvB,IAAqB,EAAO,UAAU,oCAAoC,OAAO,8DAA6D,gBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,CACxvB,EAEc",
9
+ "debugId": "430FA7A372E4B61164756E2164756E21",
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:a,getOwnPropertyNames:h,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function f(r){return this[r]}var b,S,g=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var i=e?b??=new WeakMap:S??=new WeakMap,m=i.get(r);if(m)return m}o=r!=null?y(B(r)):{};let l=e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;if(r&&typeof r==="object"||typeof r==="function"){for(let s of h(r))if(!u.call(l,s))a(l,s,{get:f.bind(r,s),enumerable:!0})}if(t)i.set(r,l);return l},w=(r)=>{var e=(d??=new WeakMap).get(r),o;if(e)return e;if(e=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of h(r))if(!u.call(e,t))a(e,t,{get:f.bind(r,t),enumerable:!(o=P(r,t))||o.enumerable})}return d.set(r,e),e},d;var W=(r)=>r;function v(r,e){this[r]=W.bind(null,e)}var k=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0,configurable:!0,set:v.bind(e,o)})};var G={};k(G,{CentralIconBase:()=>C});module.exports=w(G);var n=g(require("react")),C=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:i=!0,style:m,mode:l="masked",maskId:s,...x})=>{let I=l!=="raw"&&!!s;return n.default.createElement("svg",{...x,"aria-hidden":i,role:i?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:t,...m}},o&&!i&&n.default.createElement("title",null,o),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"}},r)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):r)};var V={};k(V,{IconAirplaneWindowOpen:()=>c,default:()=>L});module.exports=w(V);var p=g(require("react"));var c=p.default.memo((r)=>p.default.createElement(C,{...r,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"square-outlined-radius-0-stroke-2-IconAirplaneWindowOpen"},p.default.createElement("path",{d:"M5 8H19",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement("path",{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement("path",{d:"M11.5 21L9 13H13L19 17.5",stroke:"currentColor",strokeWidth:"2"}))),L=c;
2
+
3
+ //# debugId=6EF11E5B1A92424764756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconAirplaneWindowOpen\"><path d=\"M5 8H19\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M11.5 21L9 13H13L19 17.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAA8zB,EAA9zB,IAAqB,EAAO,UAAU,2CAA2C,OAAO,4DAA2D,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,YAAY,IAAG,CAAI,CACt0B,EAEc",
9
+ "debugId": "6EF11E5B1A92424764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import r from"react";var l=({children:t,size:e=24,ariaLabel:i,color:p,ariaHidden:n=!0,style:a,mode:m="masked",maskId:s,...C})=>{let d=m!=="raw"&&!!s;return r.createElement("svg",{...C,"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:p,...a}},i&&!n&&r.createElement("title",null,i),d?r.createElement(r.Fragment,null,r.createElement("mask",{id:s,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"}},t)),r.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):t)};import o from"react";var h=o.memo((t)=>o.createElement(l,{...t,ariaLabel:"airplane-window-open, light-mode, flight",maskId:"square-outlined-radius-0-stroke-2-IconAirplaneWindowOpen"},o.createElement("path",{d:"M5 8H19",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M11.5 21L9 13H13L19 17.5",stroke:"currentColor",strokeWidth:"2"}))),c=h;export{h as IconAirplaneWindowOpen,c as default};
2
+
3
+ //# debugId=BC2781ACB429B14A64756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconAirplaneWindowOpen\"><path d=\"M5 8H19\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M4.5 12C4.5 10.628 4.57526 9.00353 4.66738 7.529C4.82135 5.06456 6.82052 3.14055 9.28833 3.05633C10.2469 3.02361 11.2118 3 12 3C12.7882 3 13.7531 3.02361 14.7117 3.05633C17.1795 3.14055 19.1786 5.06456 19.3326 7.529C19.4247 9.00353 19.5 10.628 19.5 12C19.5 13.372 19.4247 14.9965 19.3326 16.471C19.1786 18.9354 17.1795 20.8595 14.7117 20.9437C13.7531 20.9764 12.7882 21 12 21C11.2118 21 10.2469 20.9764 9.28833 20.9437C6.82052 20.8595 4.82135 18.9354 4.66738 16.471C4.57526 14.9965 4.5 13.372 4.5 12Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M11.5 21L9 13H13L19 17.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAA8zB,EAA9zB,IAAqB,EAAO,UAAU,2CAA2C,OAAO,4DAA2D,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,ufAAuf,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,2BAA2B,OAAO,eAAe,YAAY,IAAG,CAAI,CACt0B,EAEc",
9
+ "debugId": "BC2781ACB429B14A64756E2164756E21",
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,h=(r,e,o)=>{var n=r!=null&&typeof r==="object";if(n){var i=e?P??=new WeakMap:L??=new WeakMap,p=i.get(r);if(p)return p}o=r!=null?B(I(r)):{};let a=e||!r||!r.__esModule?c(o,"default",{value:r,enumerable:!0}):o;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},g=(r)=>{var e=(d??=new WeakMap).get(r),o;if(e)return e;if(e=c({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of u(r))if(!C.call(e,n))c(e,n,{get:f.bind(r,n),enumerable:!(o=b(r,n))||o.enumerable})}return d.set(r,e),e},d;var S=(r)=>r;function v(r,e){this[r]=S.bind(null,e)}var k=(r,e)=>{for(var o in e)c(r,o,{get:e[o],enumerable:!0,configurable:!0,set:v.bind(e,o)})};var G={};k(G,{CentralIconBase:()=>m});module.exports=g(G);var l=h(require("react")),m=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:i=!0,style:p,mode:a="masked",maskId:s,...y})=>{let w=a!=="raw"&&!!s;return l.default.createElement("svg",{...y,"aria-hidden":i,role:i?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:n,...p}},o&&!i&&l.default.createElement("title",null,o),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={};k(V,{IconBandage:()=>x,default:()=>M});module.exports=g(V);var t=h(require("react"));var x=t.default.memo((r)=>t.default.createElement(m,{...r,ariaLabel:"bandage, plster, repair",maskId:"square-outlined-radius-0-stroke-2-IconBandage"},t.default.createElement("path",{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),t.default.createElement("path",{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),t.default.createElement("path",{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),t.default.createElement("circle",{cx:"12",cy:"10",r:"1",fill:"currentColor"}),t.default.createElement("circle",{cx:"14",cy:"12",r:"1",fill:"currentColor"}),t.default.createElement("circle",{cx:"12",cy:"14",r:"1",fill:"currentColor"}),t.default.createElement("circle",{cx:"9.99961",cy:"12.0001",r:"0.9",fill:"currentColor"}))),M=x;
2
+
3
+ //# debugId=30E9C773E232EBEA64756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconBandage\"><path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><circle cx=\"9.99961\" cy=\"12.0001\" r=\"0.9\" 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,wBAA6sB,EAA7sB,IAAqB,EAAO,UAAU,0BAA0B,OAAO,iDAAgD,wBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,wBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CACrtB,EAEc",
9
+ "debugId": "30E9C773E232EBEA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import e from"react";var i=({children:t,size:o=24,ariaLabel:s,color:a,ariaHidden:n=!0,style:c,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 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,...c}},s&&!n&&e.createElement("title",null,s),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 r from"react";var u=r.memo((t)=>r.createElement(i,{...t,ariaLabel:"bandage, plster, repair",maskId:"square-outlined-radius-0-stroke-2-IconBandage"},r.createElement("path",{d:"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M6 12L12 18",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M12 6L18 12",stroke:"currentColor",strokeWidth:"2"}),r.createElement("circle",{cx:"12",cy:"10",r:"1",fill:"currentColor"}),r.createElement("circle",{cx:"14",cy:"12",r:"1",fill:"currentColor"}),r.createElement("circle",{cx:"12",cy:"14",r:"1",fill:"currentColor"}),r.createElement("circle",{cx:"9.99961",cy:"12.0001",r:"0.9",fill:"currentColor"}))),x=u;export{u as IconBandage,x as default};
2
+
3
+ //# debugId=7A4C0CEAFC2FAB9864756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconBandage\"><path d=\"M4.75 12.75L12.75 4.75C14.5449 2.95507 17.4551 2.95508 19.25 4.75C21.0449 6.54492 21.0449 9.45507 19.25 11.25L11.25 19.25C9.45507 21.0449 6.54492 21.0449 4.75 19.25C2.95508 17.4551 2.95507 14.5449 4.75 12.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 12L12 18\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M12 6L18 12\" stroke=\"currentColor\" strokeWidth=\"2\"/><circle cx=\"12\" cy=\"10\" r=\"1\" fill=\"currentColor\"/><circle cx=\"14\" cy=\"12\" r=\"1\" fill=\"currentColor\"/><circle cx=\"12\" cy=\"14\" r=\"1\" fill=\"currentColor\"/><circle cx=\"9.99961\" cy=\"12.0001\" r=\"0.9\" 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,gBAA6sB,EAA7sB,IAAqB,EAAO,UAAU,0BAA0B,OAAO,iDAAgD,gBAAC,OAAD,CAAM,EAAE,mNAAmN,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,KAAK,eAAc,EAAE,gBAAC,SAAD,CAAQ,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAc,CAAI,CACrtB,EAEc",
9
+ "debugId": "7A4C0CEAFC2FAB9864756E2164756E21",
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:g,getOwnPropertyDescriptor:P}=Object,d=Object.prototype.hasOwnProperty;function f(t){return this[t]}var V,b,u=(t,r,e)=>{var o=t!=null&&typeof t==="object";if(o){var s=r?V??=new WeakMap:b??=new WeakMap,C=s.get(t);if(C)return C}e=t!=null?I(B(t)):{};let i=r||!t||!t.__esModule?p(e,"default",{value:t,enumerable:!0}):e;if(t&&typeof t==="object"||typeof t==="function"){for(let l of g(t))if(!d.call(i,l))p(i,l,{get:f.bind(t,l),enumerable:!0})}if(o)s.set(t,i);return i},c=(t)=>{var r=(h??=new WeakMap).get(t),e;if(r)return r;if(r=p({},"__esModule",{value:!0}),t&&typeof t==="object"||typeof t==="function"){for(var o of g(t))if(!d.call(r,o))p(r,o,{get:f.bind(t,o),enumerable:!(e=P(t,o))||e.enumerable})}return h.set(t,r),r},h;var S=(t)=>t;function v(t,r){this[t]=S.bind(null,r)}var x=(t,r)=>{for(var e in r)p(t,e,{get:r[e],enumerable:!0,configurable:!0,set:v.bind(r,e)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=c(G);var n=u(require("react")),m=({children:t,size:r=24,ariaLabel:e,color:o,ariaHidden:s=!0,style:C,mode:i="masked",maskId:l,...w})=>{let y=i!=="raw"&&!!l;return n.default.createElement("svg",{...w,"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:o,...C}},e&&!s&&n.default.createElement("title",null,e),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"}},t)),n.default.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):t)};var H={};x(H,{IconTextHighlight:()=>k,default:()=>L});module.exports=c(H);var a=u(require("react"));var k=a.default.memo((t)=>a.default.createElement(m,{...t,ariaLabel:"text-highlight",maskId:"square-outlined-radius-0-stroke-2-IconTextHighlight"},a.default.createElement("path",{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),a.default.createElement("path",{d:"M9.5 13.5H14.5",stroke:"currentColor",strokeWidth:"2"}),a.default.createElement("path",{d:"M9 16V15.25L11.75 8H12.25L15 15.25V16",stroke:"currentColor",strokeWidth:"2"}))),L=k;
2
+
3
+ //# debugId=3EA99777E9717D2264756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconTextHighlight\"><path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><path d=\"M9.5 13.5H14.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 16V15.25L11.75 8H12.25L15 15.25V16\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,wBAAs9B,EAAt9B,IAAqB,EAAO,UAAU,iBAAiB,OAAO,uDAAsD,wBAAC,OAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,wCAAwC,OAAO,eAAe,YAAY,IAAG,CAAI,CAC99B,EAEc",
9
+ "debugId": "3EA99777E9717D2264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import t from"react";var i=({children:o,size:r=24,ariaLabel:s,color:a,ariaHidden:n=!0,style:p,mode:C="masked",maskId:l,...m})=>{let h=C!=="raw"&&!!l;return t.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:a,...p}},s&&!n&&t.createElement("title",null,s),h?t.createElement(t.Fragment,null,t.createElement("mask",{id:l,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},t.createElement("rect",{width:"24",height:"24",fill:"#000"}),t.createElement("g",{fill:"none",style:{color:"#fff"}},o)),t.createElement("rect",{width:"24",height:"24",fill:"currentColor",mask:`url(#${l})`})):o)};import e from"react";var g=e.memo((o)=>e.createElement(i,{...o,ariaLabel:"text-highlight",maskId:"square-outlined-radius-0-stroke-2-IconTextHighlight"},e.createElement("path",{d:"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z",fill:"currentColor","fill-opacity":"0.15"}),e.createElement("path",{d:"M9.5 13.5H14.5",stroke:"currentColor",strokeWidth:"2"}),e.createElement("path",{d:"M9 16V15.25L11.75 8H12.25L15 15.25V16",stroke:"currentColor",strokeWidth:"2"}))),k=g;export{g as IconTextHighlight,k as default};
2
+
3
+ //# debugId=CE01E973D457C2B664756E2164756E21
@@ -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=\"square-outlined-radius-0-stroke-2-IconTextHighlight\"><path d=\"M7.15723 4.27547C12.2307 3.64017 19 2.40392 19 6.75106C18.9998 7.88344 18.5439 8.61767 17.7803 9.07723C20.7204 9.35357 23 10.184 23 12.5011C22.9997 14.1824 21.799 15.0809 20.0166 15.5528C20.6057 15.9135 20.9999 16.5615 21 17.3028C20.9998 18.3942 20.1467 19.2956 19.0576 19.3673C17.6975 19.4566 15.883 19.591 14.5 19.7501C13.4316 19.873 12.118 20.0685 10.9521 20.254C9.8933 20.4225 8.89552 19.9172 8.375 19.0782C5.42806 18.9433 3.0005 18.2993 3 16.0011C3 14.7474 3.72292 13.9865 4.85742 13.5304C2.60383 13.0827 1.00044 12.2086 1 10.5011C1 8.72638 2.73095 7.85125 5.12402 7.42C5.0446 7.18363 5.00004 6.93152 5 6.67C5.00018 5.44766 5.94432 4.42734 7.15723 4.27547Z\" fill=\"currentColor\" fill-opacity=\"0.15\"/><path d=\"M9.5 13.5H14.5\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 16V15.25L11.75 8H12.25L15 15.25V16\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,gBAAs9B,EAAt9B,IAAqB,EAAO,UAAU,iBAAiB,OAAO,uDAAsD,gBAAC,OAAD,CAAM,EAAE,wpBAAwpB,KAAK,eAAe,eAAa,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,wCAAwC,OAAO,eAAe,YAAY,IAAG,CAAI,CAC99B,EAEc",
9
+ "debugId": "CE01E973D457C2B664756E2164756E21",
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