@central-icons-react/round-outlined-radius-1-stroke-1 1.1.284 → 1.1.286

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 IconCompassPointerSquare: React.FC<CentralIconBaseProps>;
4
+ export default IconCompassPointerSquare;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:h,defineProperty:s,getOwnPropertyNames:u,getOwnPropertyDescriptor:P}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var k,w,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?k??=new WeakMap:w??=new WeakMap,C=n.get(r);if(C)return C}e=r!=null?I(h(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let i of u(r))if(!d.call(p,i))s(p,i,{get:f.bind(r,i),enumerable:!0});if(t)n.set(r,p);return p},L=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!d.call(o,t))s(o,t,{get:f.bind(r,t),enumerable:!(e=P(r,t))||e.enumerable})}return m.set(r,o),o},m;var y=(r)=>r;function V(r,o){this[r]=y.bind(null,o)}var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var b={};x(b,{CentralIconBase:()=>c});module.exports=L(b);var l=g(require("react")),c=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:C,...p})=>{return l.default.createElement("svg",{...p,"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:t,...C}},e&&!n&&l.default.createElement("title",null,e),r)};var S={};x(S,{default:()=>v,IconCompassPointerSquare:()=>B});module.exports=L(S);var a=g(require("react"));var B=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"compass-pointer-square, gps, direction"},a.default.createElement("path",{d:"M20.5 18.9V5.1C20.5 4.53995 20.5 4.25992 20.391 4.04601C20.2951 3.85785 20.1422 3.70487 19.954 3.60899C19.7401 3.5 19.4601 3.5 18.9 3.5H5.1C4.53995 3.5 4.25992 3.5 4.04601 3.60899C3.85785 3.70487 3.70487 3.85785 3.60899 4.04601C3.5 4.25992 3.5 4.53995 3.5 5.1V18.9C3.5 19.46 3.5 19.7401 3.60899 19.954C3.70487 20.1421 3.85785 20.2951 4.04601 20.391C4.25992 20.5 4.53995 20.5 5.1 20.5H18.9C19.4601 20.5 19.7401 20.5 19.954 20.391C20.1422 20.2951 20.2951 20.1421 20.391 19.954C20.5 19.7401 20.5 19.46 20.5 18.9Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M7.7956 15.7693L11.7766 7.83683C11.8688 7.65301 12.1312 7.65301 12.2234 7.83683L16.2044 15.7693C16.3076 15.9749 16.1017 16.199 15.8881 16.1135L12.0928 14.5954C12.0332 14.5716 11.9668 14.5716 11.9072 14.5954L8.11189 16.1135C7.89828 16.199 7.69241 15.9749 7.7956 15.7693Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},v=B;
2
+
3
+ //# debugId=471D85FB4A3887D564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCompassPointerSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"compass-pointer-square, gps, direction\"><path d=\"M20.5 18.9V5.1C20.5 4.53995 20.5 4.25992 20.391 4.04601C20.2951 3.85785 20.1422 3.70487 19.954 3.60899C19.7401 3.5 19.4601 3.5 18.9 3.5H5.1C4.53995 3.5 4.25992 3.5 4.04601 3.60899C3.85785 3.70487 3.70487 3.85785 3.60899 4.04601C3.5 4.25992 3.5 4.53995 3.5 5.1V18.9C3.5 19.46 3.5 19.7401 3.60899 19.954C3.70487 20.1421 3.85785 20.2951 4.04601 20.391C4.25992 20.5 4.53995 20.5 5.1 20.5H18.9C19.4601 20.5 19.7401 20.5 19.954 20.391C20.1422 20.2951 20.2951 20.1421 20.391 19.954C20.5 19.7401 20.5 19.46 20.5 18.9Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.7956 15.7693L11.7766 7.83683C11.8688 7.65301 12.1312 7.65301 12.2234 7.83683L16.2044 15.7693C16.3076 15.9749 16.1017 16.199 15.8881 16.1135L12.0928 14.5954C12.0332 14.5716 11.9668 14.5716 11.9072 14.5954L8.11189 16.1135C7.89828 16.199 7.69241 15.9749 7.7956 15.7693Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,oFCjCY,IAAlB,sBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,wBAAy/B,EAAz/B,IAAqB,EAAO,UAAU,0CAAyC,wBAAC,OAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGn/B",
9
+ "debugId": "471D85FB4A3887D564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var s=({children:o,size:r=24,ariaLabel:n,color:C,ariaHidden:e=!0,style:a,...i})=>{return p.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},n&&!e&&p.createElement("title",null,n),o)};import t from"react";var l=(o)=>{return t.createElement(s,{...o,ariaLabel:"compass-pointer-square, gps, direction"},t.createElement("path",{d:"M20.5 18.9V5.1C20.5 4.53995 20.5 4.25992 20.391 4.04601C20.2951 3.85785 20.1422 3.70487 19.954 3.60899C19.7401 3.5 19.4601 3.5 18.9 3.5H5.1C4.53995 3.5 4.25992 3.5 4.04601 3.60899C3.85785 3.70487 3.70487 3.85785 3.60899 4.04601C3.5 4.25992 3.5 4.53995 3.5 5.1V18.9C3.5 19.46 3.5 19.7401 3.60899 19.954C3.70487 20.1421 3.85785 20.2951 4.04601 20.391C4.25992 20.5 4.53995 20.5 5.1 20.5H18.9C19.4601 20.5 19.7401 20.5 19.954 20.391C20.1422 20.2951 20.2951 20.1421 20.391 19.954C20.5 19.7401 20.5 19.46 20.5 18.9Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M7.7956 15.7693L11.7766 7.83683C11.8688 7.65301 12.1312 7.65301 12.2234 7.83683L16.2044 15.7693C16.3076 15.9749 16.1017 16.199 15.8881 16.1135L12.0928 14.5954C12.0332 14.5716 11.9668 14.5716 11.9072 14.5954L8.11189 16.1135C7.89828 16.199 7.69241 15.9749 7.7956 15.7693Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconCompassPointerSquare};
2
+
3
+ //# debugId=128940558E15292664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/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} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCompassPointerSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"compass-pointer-square, gps, direction\"><path d=\"M20.5 18.9V5.1C20.5 4.53995 20.5 4.25992 20.391 4.04601C20.2951 3.85785 20.1422 3.70487 19.954 3.60899C19.7401 3.5 19.4601 3.5 18.9 3.5H5.1C4.53995 3.5 4.25992 3.5 4.04601 3.60899C3.85785 3.70487 3.70487 3.85785 3.60899 4.04601C3.5 4.25992 3.5 4.53995 3.5 5.1V18.9C3.5 19.46 3.5 19.7401 3.60899 19.954C3.70487 20.1421 3.85785 20.2951 4.04601 20.391C4.25992 20.5 4.53995 20.5 5.1 20.5H18.9C19.4601 20.5 19.7401 20.5 19.954 20.391C20.1422 20.2951 20.2951 20.1421 20.391 19.954C20.5 19.7401 20.5 19.46 20.5 18.9Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.7956 15.7693L11.7766 7.83683C11.8688 7.65301 12.1312 7.65301 12.2234 7.83683L16.2044 15.7693C16.3076 15.9749 16.1017 16.199 15.8881 16.1135L12.0928 14.5954C12.0332 14.5716 11.9668 14.5716 11.9072 14.5954L8.11189 16.1135C7.89828 16.199 7.69241 15.9749 7.7956 15.7693Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAAy/B,EAAz/B,IAAqB,EAAO,UAAU,0CAAyC,gBAAC,OAAD,CAAM,EAAE,ggBAAggB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gRAAgR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGn/B",
9
+ "debugId": "128940558E15292664756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var y,P,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?y??=new WeakMap:P??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?B(I(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let a of u(r))if(!d.call(C,a))p(C,a,{get:f.bind(r,a),enumerable:!0});if(t)n.set(r,C);return C},g=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!d.call(o,t))p(o,t,{get:f.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function k(r,o){this[r]=V.bind(null,o)}var h=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:k.bind(o,e)})};var M={};h(M,{CentralIconBase:()=>m});module.exports=g(M);var i=w(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:s,...C})=>{return i.default.createElement("svg",{...C,"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:t,...s}},e&&!n&&i.default.createElement("title",null,e),r)};var v={};h(v,{default:()=>G,IconWindow2:()=>x});module.exports=g(v);var l=w(require("react"));var x=(r)=>{return l.default.createElement(m,{...r,ariaLabel:"window-2, browser, app, desktop"},l.default.createElement("path",{d:"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z",stroke:"currentColor",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},G=x;
1
+ var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,y,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?b??=new WeakMap:y??=new WeakMap,s=C.get(r);if(s)return s}t=r!=null?x(B(r)):{};let l=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let i of c(r))if(!m.call(l,i))p(l,i,{get:h.bind(r,i),enumerable:!0});if(e)C.set(r,l);return l},k=(r)=>{var o=(d??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!m.call(o,e))p(o,e,{get:h.bind(r,e),enumerable:!(t=I(r,e))||t.enumerable})}return d.set(r,o),o},d;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var w=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var M={};w(M,{CentralIconBase:()=>u});module.exports=k(M);var a=f(require("react")),u=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:C=!0,style:s,...l})=>{return a.default.createElement("svg",{...l,"aria-hidden":C,role:C?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:e,...s}},t&&!C&&a.default.createElement("title",null,t),r)};var v={};w(v,{default:()=>G,IconWindow2:()=>g});module.exports=k(v);var n=f(require("react"));var g=(r)=>{return n.default.createElement(u,{...r,ariaLabel:"window-2, browser, app, desktop"},n.default.createElement("path",{d:"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z",stroke:"currentColor",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M2.5 10.5H21.5",stroke:"currentColor",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),n.default.createElement("path",{d:"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),n.default.createElement("path",{d:"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},G=g;
2
2
 
3
- //# debugId=FC350BDDD2B1CEEB64756E2164756E21
3
+ //# debugId=E2588C9350E1611064756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M2.5 10.5H21.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAu2B,EAAv2B,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,qLAAqL,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4eAA4e,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAGj2B",
9
- "debugId": "FC350BDDD2B1CEEB64756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAmkC,EAAnkC,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAG7jC",
9
+ "debugId": "E2588C9350E1611064756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";var p=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:l,...a})=>{return C.createElement("svg",{...a,"aria-hidden":e,role:e?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:s,...l}},n&&!e&&C.createElement("title",null,n),o)};import t from"react";var i=(o)=>{return t.createElement(p,{...o,ariaLabel:"window-2, browser, app, desktop"},t.createElement("path",{d:"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z",stroke:"currentColor",strokeLinejoin:"round"}),t.createElement("path",{d:"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},w=i;export{w as default,i as IconWindow2};
1
+ import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:s,...i})=>{return C.createElement("svg",{...i,"aria-hidden":e,role:e?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,...s}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var a=(t)=>{return o.createElement(l,{...t,ariaLabel:"window-2, browser, app, desktop"},o.createElement("path",{d:"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement("path",{d:"M2.5 10.5H21.5",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement("path",{d:"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),o.createElement("path",{d:"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),o.createElement("path",{d:"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},f=a;export{f as default,a as IconWindow2};
2
2
 
3
- //# debugId=A77D08E3E3F47CA764756E2164756E21
3
+ //# debugId=31297EFF0637A3EC64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M2.5 10.5H21.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindow2;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAu2B,EAAv2B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,qLAAqL,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,4eAA4e,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAGj2B",
9
- "debugId": "A77D08E3E3F47CA764756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAmkC,EAAnkC,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAG7jC",
9
+ "debugId": "31297EFF0637A3EC64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:C,getOwnPropertyNames:u,getOwnPropertyDescriptor:b}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var y,P,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?y??=new WeakMap:P??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?B(I(r)):{};let p=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let l of u(r))if(!d.call(p,l))C(p,l,{get:f.bind(r,l),enumerable:!0});if(t)n.set(r,p);return p},g=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!d.call(o,t))C(o,t,{get:f.bind(r,t),enumerable:!(e=b(r,t))||e.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function k(r,o){this[r]=V.bind(null,o)}var h=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:k.bind(o,e)})};var M={};h(M,{CentralIconBase:()=>m});module.exports=g(M);var i=w(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:s,...p})=>{return i.default.createElement("svg",{...p,"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:t,...s}},e&&!n&&i.default.createElement("title",null,e),r)};var v={};h(v,{default:()=>G,IconWindowApp:()=>x});module.exports=g(v);var a=w(require("react"));var x=(r)=>{return a.default.createElement(m,{...r,ariaLabel:"window-app, browser, app, desktop"},a.default.createElement("path",{d:"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z",stroke:"currentColor",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},G=x;
1
+ var x=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,y,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?b??=new WeakMap:y??=new WeakMap,s=p.get(r);if(s)return s}t=r!=null?x(B(r)):{};let C=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let a of c(r))if(!m.call(C,a))l(C,a,{get:h.bind(r,a),enumerable:!0});if(e)p.set(r,C);return C},k=(r)=>{var o=(d??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!m.call(o,e))l(o,e,{get:h.bind(r,e),enumerable:!(t=I(r,e))||t.enumerable})}return d.set(r,o),o},d;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var w=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var M={};w(M,{CentralIconBase:()=>u});module.exports=k(M);var i=f(require("react")),u=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:p=!0,style:s,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":p,role:p?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:e,...s}},t&&!p&&i.default.createElement("title",null,t),r)};var v={};w(v,{default:()=>G,IconWindowApp:()=>g});module.exports=k(v);var n=f(require("react"));var g=(r)=>{return n.default.createElement(u,{...r,ariaLabel:"window-app, browser, app, desktop"},n.default.createElement("path",{d:"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z",stroke:"currentColor",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M2.5 10.5H21.5",stroke:"currentColor",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),n.default.createElement("path",{d:"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),n.default.createElement("path",{d:"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},G=g;
2
2
 
3
- //# debugId=FDE3D1389A23290164756E2164756E21
3
+ //# debugId=A57F7BFEA7339D8D64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowApp: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-app, browser, app, desktop\"><path d=\"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowApp: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-app, browser, app, desktop\"><path d=\"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M2.5 10.5H21.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAy2B,EAAz2B,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,qLAAqL,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4eAA4e,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAGn2B",
9
- "debugId": "FDE3D1389A23290164756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAqkC,EAArkC,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,wBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAG/jC",
9
+ "debugId": "A57F7BFEA7339D8D64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";var C=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:a,...l})=>{return p.createElement("svg",{...l,"aria-hidden":e,role:e?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:s,...a}},n&&!e&&p.createElement("title",null,n),o)};import t from"react";var i=(o)=>{return t.createElement(C,{...o,ariaLabel:"window-app, browser, app, desktop"},t.createElement("path",{d:"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z",stroke:"currentColor",strokeLinejoin:"round"}),t.createElement("path",{d:"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},w=i;export{w as default,i as IconWindowApp};
1
+ import p from"react";var C=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:s,...a})=>{return p.createElement("svg",{...a,"aria-hidden":e,role:e?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:l,...s}},n&&!e&&p.createElement("title",null,n),t)};import o from"react";var i=(t)=>{return o.createElement(C,{...t,ariaLabel:"window-app, browser, app, desktop"},o.createElement("path",{d:"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement("path",{d:"M2.5 10.5H21.5",stroke:"currentColor",strokeLinejoin:"round"}),o.createElement("path",{d:"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),o.createElement("path",{d:"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}),o.createElement("path",{d:"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.25"}))},f=i;export{f as default,i as IconWindowApp};
2
2
 
3
- //# debugId=1ACC4AE5278B693C64756E2164756E21
3
+ //# debugId=85CE68F6DE454BDE64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowApp: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-app, browser, app, desktop\"><path d=\"M2.5 10.5H21.5M3.5 19.5H20.5C21.0523 19.5 21.5 19.0523 21.5 18.5V5.5C21.5 4.94772 21.0523 4.5 20.5 4.5H3.5C2.94772 4.5 2.5 4.94772 2.5 5.5V18.5C2.5 19.0523 2.94771 19.5 3.5 19.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.5 7.875C5.70711 7.875 5.875 7.70711 5.875 7.5C5.875 7.29289 5.70711 7.125 5.5 7.125C5.29289 7.125 5.125 7.29289 5.125 7.5C5.125 7.70711 5.29289 7.875 5.5 7.875ZM7.5 7.875C7.70711 7.875 7.875 7.70711 7.875 7.5C7.875 7.29289 7.70711 7.125 7.5 7.125C7.29289 7.125 7.125 7.29289 7.125 7.5C7.125 7.70711 7.29289 7.875 7.5 7.875ZM9.5 7.875C9.70711 7.875 9.875 7.70711 9.875 7.5C9.875 7.29289 9.70711 7.125 9.5 7.125C9.29289 7.125 9.125 7.29289 9.125 7.5C9.125 7.70711 9.29289 7.875 9.5 7.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowApp: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-app, browser, app, desktop\"><path d=\"M2.5 5.5C2.5 4.94772 2.94772 4.5 3.5 4.5H20.5C21.0523 4.5 21.5 4.94772 21.5 5.5V18.5C21.5 19.0523 21.0523 19.5 20.5 19.5H3.5C2.94771 19.5 2.5 19.0523 2.5 18.5V5.5Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M2.5 10.5H21.5\" stroke=\"currentColor\" strokeLinejoin=\"round\"/><path d=\"M5.75 6.875C6.09518 6.875 6.375 7.15482 6.375 7.5C6.375 7.84518 6.09518 8.125 5.75 8.125C5.40482 8.125 5.125 7.84518 5.125 7.5C5.125 7.15482 5.40482 6.875 5.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M8.25 6.875C8.59518 6.875 8.875 7.15482 8.875 7.5C8.875 7.84518 8.59518 8.125 8.25 8.125C7.90482 8.125 7.625 7.84518 7.625 7.5C7.625 7.15482 7.90482 6.875 8.25 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/><path d=\"M10.75 6.875C11.0952 6.875 11.375 7.15482 11.375 7.5C11.375 7.84518 11.0952 8.125 10.75 8.125C10.4048 8.125 10.125 7.84518 10.125 7.5C10.125 7.15482 10.4048 6.875 10.75 6.875Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.25\"/></CentralIconBase>;\n};\n\nexport default IconWindowApp;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAy2B,EAAz2B,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,qLAAqL,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,4eAA4e,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAGn2B",
9
- "debugId": "1ACC4AE5278B693C64756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAqkC,EAArkC,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,yKAAyK,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,EAAE,gBAAC,OAAD,CAAM,EAAE,kLAAkL,KAAK,eAAe,OAAO,eAAe,YAAY,OAAM,CAAI,GAG/jC",
9
+ "debugId": "85CE68F6DE454BDE64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquare: React.FC<CentralIconBaseProps>;
4
+ export default IconWindowSquare;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:k}=Object,m=Object.prototype.hasOwnProperty;function f(r){return this[r]}var b,y,h=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?b??=new WeakMap:y??=new WeakMap,s=p.get(r);if(s)return s}e=r!=null?B(I(r)):{};let C=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let a of c(r))if(!m.call(C,a))l(C,a,{get:f.bind(r,a),enumerable:!0});if(t)p.set(r,C);return C},w=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!m.call(o,t))l(o,t,{get:f.bind(r,t),enumerable:!(e=k(r,t))||e.enumerable})}return d.set(r,o),o},d;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var g=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var L={};g(L,{CentralIconBase:()=>u});module.exports=w(L);var i=h(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:p=!0,style:s,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":p,role:p?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},e&&!p&&i.default.createElement("title",null,e),r)};var M={};g(M,{default:()=>S,IconWindowSquare:()=>x});module.exports=w(M);var n=h(require("react"));var x=(r)=>{return n.default.createElement(u,{...r,ariaLabel:"window-square, browser, app, desktop"},n.default.createElement("path",{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),n.default.createElement("path",{d:"M3.75 9.5H20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},S=x;
2
+
3
+ //# debugId=63C4A9F0BAD31AFB64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/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} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-square, browser, app, desktop\"><path d=\"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,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,CACD,4ECjCY,IAAlB,sBAGO,IAAM,EAAmD,CAAC,IAAU,CACzE,OAAO,wBAA27B,EAA37B,IAAqB,EAAO,UAAU,wCAAuC,wBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGr7B",
9
+ "debugId": "63C4A9F0BAD31AFB64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var C=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...a})=>{return p.createElement("svg",{...a,"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:l,...s}},n&&!t&&p.createElement("title",null,n),e)};import o from"react";var i=(e)=>{return o.createElement(C,{...e,ariaLabel:"window-square, browser, app, desktop"},o.createElement("path",{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z",fill:"currentColor"}),o.createElement("path",{d:"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z",fill:"currentColor"}),o.createElement("path",{d:"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z",fill:"currentColor"}),o.createElement("path",{d:"M3.75 9.5H20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},h=i;export{h as default,i as IconWindowSquare};
2
+
3
+ //# debugId=C22EB8386392344264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/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} & 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 ...props\n}) => {\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 {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindowSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-square, browser, app, desktop\"><path d=\"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5H19.5C20.0523 3.5 20.5 3.94772 20.5 4.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5V4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7.25 6.5C7.25 6.91421 6.91421 7.25 6.5 7.25C6.08579 7.25 5.75 6.91421 5.75 6.5C5.75 6.08579 6.08579 5.75 6.5 5.75C6.91421 5.75 7.25 6.08579 7.25 6.5Z\" fill=\"currentColor\"/><path d=\"M9.5 6.5C9.5 6.91421 9.16421 7.25 8.75 7.25C8.33579 7.25 8 6.91421 8 6.5C8 6.08579 8.33579 5.75 8.75 5.75C9.16421 5.75 9.5 6.08579 9.5 6.5Z\" fill=\"currentColor\"/><path d=\"M11.75 6.5C11.75 6.91421 11.4142 7.25 11 7.25C10.5858 7.25 10.25 6.91421 10.25 6.5C10.25 6.08579 10.5858 5.75 11 5.75C11.4142 5.75 11.75 6.08579 11.75 6.5Z\" fill=\"currentColor\"/><path d=\"M3.75 9.5H20.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA27B,EAA37B,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8IAA8I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGr7B",
9
+ "debugId": "C22EB8386392344264756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1328,6 +1328,7 @@ Below is a complete list of available icons:
1328
1328
  - IconCheckmark2Medium
1329
1329
  - IconCard
1330
1330
  - IconUnblock
1331
+ - IconWindowSquare
1331
1332
 
1332
1333
  ### Keyboard
1333
1334
 
@@ -1432,6 +1433,7 @@ Below is a complete list of available icons:
1432
1433
  - IconMapPin2
1433
1434
  - IconMapEditFlat
1434
1435
  - IconPinFocus
1436
+ - IconCompassPointerSquare
1435
1437
 
1436
1438
  ### Nature & Energy
1437
1439