@central-icons-react/round-filled-radius-2-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 P=Object.create;var{getPrototypeOf:h,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:v}=Object,f=Object.prototype.hasOwnProperty;function d(e){return this[e]}var w,y,g=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?w??=new WeakMap:y??=new WeakMap,l=n.get(e);if(l)return l}o=e!=null?P(h(e)):{};let C=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let a of u(e))if(!f.call(C,a))p(C,a,{get:d.bind(e,a),enumerable:!0});if(t)n.set(e,C);return C},x=(e)=>{var r=(c??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of u(e))if(!f.call(r,t))p(r,t,{get:d.bind(e,t),enumerable:!(o=v(e,t))||o.enumerable})}return c.set(e,r),r},c;var V=(e)=>e;function b(e,r){this[e]=V.bind(null,r)}var B=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:b.bind(r,o)})};var L={};B(L,{CentralIconBase:()=>i});module.exports=x(L);var s=g(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:l,...C})=>{return s.default.createElement("svg",{...C,"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:t,...l}},o&&!n&&s.default.createElement("title",null,o),e)};var S={};B(S,{default:()=>G,IconCompassPointerSquare:()=>I});module.exports=x(S);var m=g(require("react"));var I=(e)=>{return m.default.createElement(i,{...e,ariaLabel:"compass-pointer-square, gps, direction"},m.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z",fill:"currentColor"}))},G=I;
2
+
3
+ //# debugId=D9BFB701FA26704164756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z\" fill=\"currentColor\"/></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,wBAAmxC,EAAnxC,IAAqB,EAAO,UAAU,0CAAyC,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+nCAA+nC,KAAK,eAAc,CAAI,GAG7wC",
9
+ "debugId": "D9BFB701FA26704164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";var C=({children:r,size:e=24,ariaLabel:t,color:l,ariaHidden:o=!0,style:a,...s})=>{return n.createElement("svg",{...s,"aria-hidden":o,role:o?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:l,...a}},t&&!o&&n.createElement("title",null,t),r)};import p from"react";var i=(r)=>{return p.createElement(C,{...r,ariaLabel:"compass-pointer-square, gps, direction"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z",fill:"currentColor"}))},g=i;export{g as default,i as IconCompassPointerSquare};
2
+
3
+ //# debugId=DA45E8B79DBE141C64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.3213 3C17.8632 3 18.3004 3.00038 18.6543 3.0293C19.0186 3.05907 19.3387 3.12163 19.6348 3.27246C20.1052 3.51214 20.4879 3.89483 20.7275 4.36523C20.8784 4.66133 20.9409 4.98136 20.9707 5.3457C20.9996 5.69964 21 6.13682 21 6.67871V17.3213C21 17.8632 20.9996 18.3004 20.9707 18.6543C20.9409 19.0186 20.8784 19.3387 20.7275 19.6348C20.4879 20.1052 20.1052 20.4879 19.6348 20.7275C19.3387 20.8784 19.0186 20.9409 18.6543 20.9707C18.3004 20.9996 17.8632 21 17.3213 21H6.67871C6.13682 21 5.69964 20.9996 5.3457 20.9707C4.98136 20.9409 4.66133 20.8784 4.36523 20.7275C3.89483 20.4879 3.51214 20.1052 3.27246 19.6348C3.12163 19.3387 3.05907 19.0186 3.0293 18.6543C3.00038 18.3004 3 17.8632 3 17.3213V6.67871C3 6.13682 3.00038 5.69964 3.0293 5.3457C3.05907 4.98136 3.12163 4.66133 3.27246 4.36523C3.51214 3.89483 3.89483 3.51214 4.36523 3.27246C4.66133 3.12163 4.98136 3.05907 5.3457 3.0293C5.69964 3.00038 6.13682 3 6.67871 3H17.3213ZM12.8936 7.80762C12.5244 7.07288 11.4756 7.07288 11.1064 7.80762L7.41895 15.1562C7.00031 15.9906 7.85194 16.8932 8.70898 16.5234L12 15.1025L15.291 16.5234C16.1481 16.8932 16.9997 15.9906 16.5811 15.1562L12.8936 7.80762Z\" fill=\"currentColor\"/></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,gBAAmxC,EAAnxC,IAAqB,EAAO,UAAU,0CAAyC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+nCAA+nC,KAAK,eAAc,CAAI,GAG7wC",
9
+ "debugId": "DA45E8B79DBE141C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:V,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var b,v,w=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?b??=new WeakMap:v??=new WeakMap,C=n.get(e);if(C)return C}o=e!=null?I(V(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of d(e))if(!f.call(l,s))p(l,s,{get:u.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},g=(e)=>{var r=(c??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of d(e))if(!f.call(r,t))p(r,t,{get:u.bind(e,t),enumerable:!(o=h(e,t))||o.enumerable})}return c.set(e,r),r},c;var y=(e)=>e;function P(e,r){this[e]=y.bind(null,r)}var x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:P.bind(r,o)})};var M={};x(M,{CentralIconBase:()=>m});module.exports=g(M);var i=w(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:C,...l})=>{return i.default.createElement("svg",{...l,"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:t,...C}},o&&!n&&i.default.createElement("title",null,o),e)};var Z={};x(Z,{default:()=>G,IconWindow2:()=>B});module.exports=g(Z);var a=w(require("react"));var B=(e)=>{return a.default.createElement(m,{...e,ariaLabel:"window-2, browser, app, desktop"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z",fill:"currentColor"}),a.default.createElement("path",{d:"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z",fill:"currentColor"}))},G=B;
1
+ var I=Object.create;var{getPrototypeOf:V,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var b,v,w=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?b??=new WeakMap:v??=new WeakMap,C=n.get(e);if(C)return C}o=e!=null?I(V(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of d(e))if(!f.call(l,s))p(l,s,{get:u.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},g=(e)=>{var r=(c??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of d(e))if(!f.call(r,t))p(r,t,{get:u.bind(e,t),enumerable:!(o=h(e,t))||o.enumerable})}return c.set(e,r),r},c;var y=(e)=>e;function P(e,r){this[e]=y.bind(null,r)}var x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:P.bind(r,o)})};var M={};x(M,{CentralIconBase:()=>m});module.exports=g(M);var i=w(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:C,...l})=>{return i.default.createElement("svg",{...l,"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:t,...C}},o&&!n&&i.default.createElement("title",null,o),e)};var Z={};x(Z,{default:()=>G,IconWindow2:()=>B});module.exports=g(Z);var a=w(require("react"));var B=(e)=>{return a.default.createElement(m,{...e,ariaLabel:"window-2, browser, app, desktop"},a.default.createElement("path",{d:"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z",fill:"currentColor"}))},G=B;
2
2
 
3
- //# debugId=B5D9D5A059DE2C6764756E2164756E21
3
+ //# debugId=9E705A9436BF992D64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z\" fill=\"currentColor\"/><path d=\"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z\" fill=\"currentColor\"/></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=\"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z\" fill=\"currentColor\"/></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,wBAA8qB,EAA9qB,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gbAAgb,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,CAAI,GAGxqB",
9
- "debugId": "B5D9D5A059DE2C6764756E2164756E21",
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,wBAAkvB,EAAlvB,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAG5uB",
9
+ "debugId": "9E705A9436BF992D64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...s})=>{return l.createElement("svg",{...s,"aria-hidden":o,role:o?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:C,...a}},n&&!o&&l.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(p,{...r,ariaLabel:"window-2, browser, app, desktop"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z",fill:"currentColor"}),t.createElement("path",{d:"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindow2};
1
+ import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...s})=>{return l.createElement("svg",{...s,"aria-hidden":o,role:o?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:C,...a}},n&&!o&&l.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(p,{...r,ariaLabel:"window-2, browser, app, desktop"},t.createElement("path",{d:"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindow2};
2
2
 
3
- //# debugId=2603020AD625802564756E2164756E21
3
+ //# debugId=E07E276E6233AEFA64756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V10H22V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM5 7C5 6.72386 5.22386 6.5 5.5 6.5C5.77614 6.5 6 6.72386 6 7C6 7.27614 5.77614 7.5 5.5 7.5C5.22386 7.5 5 7.27614 5 7ZM7 7C7 6.72386 7.22386 6.5 7.5 6.5C7.77614 6.5 8 6.72386 8 7C8 7.27614 7.77614 7.5 7.5 7.5C7.22386 7.5 7 7.27614 7 7ZM9 7C9 6.72386 9.22386 6.5 9.5 6.5C9.77614 6.5 10 6.72386 10 7C10 7.27614 9.77614 7.5 9.5 7.5C9.22386 7.5 9 7.27614 9 7Z\" fill=\"currentColor\"/><path d=\"M2 17.5V11H22V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5Z\" fill=\"currentColor\"/></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=\"M22 17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V11H22V17.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V10H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM5.75 6.25C5.33579 6.25 5 6.58579 5 7C5 7.41421 5.33579 7.75 5.75 7.75C6.16421 7.75 6.5 7.41421 6.5 7C6.5 6.58579 6.16421 6.25 5.75 6.25ZM8.25 6.25C7.83579 6.25 7.5 6.58579 7.5 7C7.5 7.41421 7.83579 7.75 8.25 7.75C8.66421 7.75 9 7.41421 9 7C9 6.58579 8.66421 6.25 8.25 6.25ZM10.75 6.25C10.3358 6.25 10 6.58579 10 7C10 7.41421 10.3358 7.75 10.75 7.75C11.1642 7.75 11.5 7.41421 11.5 7C11.5 6.58579 11.1642 6.25 10.75 6.25Z\" fill=\"currentColor\"/></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,gBAA8qB,EAA9qB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gbAAgb,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oFAAoF,KAAK,eAAc,CAAI,GAGxqB",
9
- "debugId": "2603020AD625802564756E2164756E21",
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,gBAAkvB,EAAlvB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAG5uB",
9
+ "debugId": "E07E276E6233AEFA64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:C,getOwnPropertyNames:m,getOwnPropertyDescriptor:V}=Object,u=Object.prototype.hasOwnProperty;function c(r){return this[r]}var b,v,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?b??=new WeakMap:v??=new WeakMap,a=n.get(r);if(a)return a}e=r!=null?B(I(r)):{};let l=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let s of m(r))if(!u.call(l,s))C(l,s,{get:c.bind(r,s),enumerable:!0});if(t)n.set(r,l);return l},h=(r)=>{var o=(f??=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 m(r))if(!u.call(o,t))C(o,t,{get:c.bind(r,t),enumerable:!(e=V(r,t))||e.enumerable})}return f.set(r,o),o},f;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var g=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var M={};g(M,{CentralIconBase:()=>d});module.exports=h(M);var i=w(require("react")),d=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:a,...l})=>{return i.default.createElement("svg",{...l,"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,...a}},e&&!n&&i.default.createElement("title",null,e),r)};var Z={};g(Z,{default:()=>G,IconWindowApp:()=>x});module.exports=h(Z);var p=w(require("react"));var x=(r)=>{return p.default.createElement(d,{...r,ariaLabel:"window-app, browser, app, desktop"},p.default.createElement("path",{d:"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z",fill:"currentColor"}),p.default.createElement("path",{d:"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z",fill:"currentColor"}),p.default.createElement("path",{d:"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z",fill:"currentColor"}))},G=x;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:C,getOwnPropertyNames:m,getOwnPropertyDescriptor:V}=Object,u=Object.prototype.hasOwnProperty;function c(r){return this[r]}var b,v,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?b??=new WeakMap:v??=new WeakMap,a=n.get(r);if(a)return a}e=r!=null?B(I(r)):{};let l=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let s of m(r))if(!u.call(l,s))C(l,s,{get:c.bind(r,s),enumerable:!0});if(t)n.set(r,l);return l},h=(r)=>{var o=(f??=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 m(r))if(!u.call(o,t))C(o,t,{get:c.bind(r,t),enumerable:!(e=V(r,t))||e.enumerable})}return f.set(r,o),o},f;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var g=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var M={};g(M,{CentralIconBase:()=>d});module.exports=h(M);var i=w(require("react")),d=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:a,...l})=>{return i.default.createElement("svg",{...l,"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,...a}},e&&!n&&i.default.createElement("title",null,e),r)};var Z={};g(Z,{default:()=>G,IconWindowApp:()=>x});module.exports=h(Z);var p=w(require("react"));var x=(r)=>{return p.default.createElement(d,{...r,ariaLabel:"window-app, browser, app, desktop"},p.default.createElement("path",{d:"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z",fill:"currentColor"}),p.default.createElement("path",{d:"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z",fill:"currentColor"}),p.default.createElement("path",{d:"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z",fill:"currentColor"}),p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z",fill:"currentColor"}))},G=x;
2
2
 
3
- //# debugId=F6AF780963F40C8464756E2164756E21
3
+ //# debugId=3A62C76B56AE38EA64756E2164756E21
@@ -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=\"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z\" fill=\"currentColor\"/><path d=\"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z\" fill=\"currentColor\"/><path d=\"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z\" fill=\"currentColor\"/></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=\"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z\" fill=\"currentColor\"/><path d=\"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z\" fill=\"currentColor\"/><path d=\"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z\" fill=\"currentColor\"/></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,wBAAsxB,EAAtxB,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qHAAqH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uNAAuN,KAAK,eAAc,CAAI,GAGhxB",
9
- "debugId": "F6AF780963F40C8464756E2164756E21",
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,wBAAu3B,EAAv3B,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wNAAwN,KAAK,eAAc,CAAI,GAGj3B",
9
+ "debugId": "3A62C76B56AE38EA64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:C,ariaHidden:t=!0,style:a,...s})=>{return l.createElement("svg",{...s,"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:C,...a}},n&&!t&&l.createElement("title",null,n),e)};import o from"react";var i=(e)=>{return o.createElement(p,{...e,ariaLabel:"window-app, browser, app, desktop"},o.createElement("path",{d:"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z",fill:"currentColor"}),o.createElement("path",{d:"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z",fill:"currentColor"}),o.createElement("path",{d:"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z",fill:"currentColor"}),o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindowApp};
1
+ import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:C,ariaHidden:t=!0,style:a,...s})=>{return l.createElement("svg",{...s,"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:C,...a}},n&&!t&&l.createElement("title",null,n),e)};import o from"react";var i=(e)=>{return o.createElement(p,{...e,ariaLabel:"window-app, browser, app, desktop"},o.createElement("path",{d:"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z",fill:"currentColor"}),o.createElement("path",{d:"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z",fill:"currentColor"}),o.createElement("path",{d:"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z",fill:"currentColor"}),o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindowApp};
2
2
 
3
- //# debugId=79FFA3EA818A1AAA64756E2164756E21
3
+ //# debugId=9FC00F6057AB179D64756E2164756E21
@@ -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=\"M5 7.5C5 7.22386 5.22386 7 5.5 7C5.77614 7 6 7.22386 6 7.5C6 7.77614 5.77614 8 5.5 8C5.22386 8 5 7.77614 5 7.5Z\" fill=\"currentColor\"/><path d=\"M7 7.5C7 7.22386 7.22386 7 7.5 7C7.77614 7 8 7.22386 8 7.5C8 7.77614 7.77614 8 7.5 8C7.22386 8 7 7.77614 7 7.5Z\" fill=\"currentColor\"/><path d=\"M9 7.5C9 7.22386 9.22386 7 9.5 7C9.77614 7 10 7.22386 10 7.5C10 7.77614 9.77614 8 9.5 8C9.22386 8 9 7.77614 9 7.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 4C3.11929 4 2 5.11929 2 6.5V17.5C2 18.8807 3.11929 20 4.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H4.5ZM21 10V6.5C21 5.67157 20.3284 5 19.5 5H4.5C3.67157 5 3 5.67157 3 6.5V10H21Z\" fill=\"currentColor\"/></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=\"M5.75 6.75C6.16421 6.75 6.5 7.08579 6.5 7.5C6.5 7.91421 6.16421 8.25 5.75 8.25C5.33579 8.25 5 7.91421 5 7.5C5 7.08579 5.33579 6.75 5.75 6.75Z\" fill=\"currentColor\"/><path d=\"M8.25 6.75C8.66421 6.75 9 7.08579 9 7.5C9 7.91421 8.66421 8.25 8.25 8.25C7.83579 8.25 7.5 7.91421 7.5 7.5C7.5 7.08579 7.83579 6.75 8.25 6.75Z\" fill=\"currentColor\"/><path d=\"M10.75 6.75C11.1642 6.75 11.5 7.08579 11.5 7.5C11.5 7.91421 11.1642 8.25 10.75 8.25C10.3358 8.25 10 7.91421 10 7.5C10 7.08579 10.3358 6.75 10.75 6.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM4.5 5C3.67157 5 3 5.67157 3 6.5V10H21V6.5C21 5.67157 20.3284 5 19.5 5H4.5Z\" fill=\"currentColor\"/></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,gBAAsxB,EAAtxB,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,qHAAqH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uNAAuN,KAAK,eAAc,CAAI,GAGhxB",
9
- "debugId": "79FFA3EA818A1AAA64756E2164756E21",
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,gBAAu3B,EAAv3B,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gJAAgJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yJAAyJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wNAAwN,KAAK,eAAc,CAAI,GAGj3B",
9
+ "debugId": "9FC00F6057AB179D64756E2164756E21",
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 I=Object.create;var{getPrototypeOf:V,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,d=Object.prototype.hasOwnProperty;function f(e){return this[e]}var b,v,w=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?b??=new WeakMap:v??=new WeakMap,C=n.get(e);if(C)return C}o=e!=null?I(V(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of c(e))if(!d.call(l,s))p(l,s,{get:f.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},g=(e)=>{var r=(u??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of c(e))if(!d.call(r,t))p(r,t,{get:f.bind(e,t),enumerable:!(o=h(e,t))||o.enumerable})}return u.set(e,r),r},u;var y=(e)=>e;function P(e,r){this[e]=y.bind(null,r)}var x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:P.bind(r,o)})};var M={};x(M,{CentralIconBase:()=>m});module.exports=g(M);var i=w(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:C,...l})=>{return i.default.createElement("svg",{...l,"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:t,...C}},o&&!n&&i.default.createElement("title",null,o),e)};var S={};x(S,{default:()=>Z,IconWindowSquare:()=>B});module.exports=g(S);var a=w(require("react"));var B=(e)=>{return a.default.createElement(m,{...e,ariaLabel:"window-square, browser, app, desktop"},a.default.createElement("path",{d:"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))},Z=B;
2
+
3
+ //# debugId=25DDB7225BF0FB3F64756E2164756E21
@@ -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=\"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" fill=\"currentColor\"/></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,wBAA+vB,EAA/vB,IAAqB,EAAO,UAAU,wCAAuC,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,GAGzvB",
9
+ "debugId": "25DDB7225BF0FB3F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...s})=>{return l.createElement("svg",{...s,"aria-hidden":o,role:o?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:C,...a}},n&&!o&&l.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(p,{...r,ariaLabel:"window-square, browser, app, desktop"},t.createElement("path",{d:"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindowSquare};
2
+
3
+ //# debugId=B96C14171C98528464756E2164756E21
@@ -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=\"M21 18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V10H21V18.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 3C19.8807 3 21 4.11929 21 5.5V9H3V5.5C3 4.11929 4.11929 3 5.5 3H18.5ZM6 5.25C5.58579 5.25 5.25 5.58579 5.25 6C5.25 6.41421 5.58579 6.75 6 6.75C6.41421 6.75 6.75 6.41421 6.75 6C6.75 5.58579 6.41421 5.25 6 5.25ZM8.25 5.25C7.83579 5.25 7.5 5.58579 7.5 6C7.5 6.41421 7.83579 6.75 8.25 6.75C8.66421 6.75 9 6.41421 9 6C9 5.58579 8.66421 5.25 8.25 5.25ZM10.5 5.25C10.0858 5.25 9.75 5.58579 9.75 6C9.75 6.41421 10.0858 6.75 10.5 6.75C10.9142 6.75 11.25 6.41421 11.25 6C11.25 5.58579 10.9142 5.25 10.5 5.25Z\" fill=\"currentColor\"/></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,gBAA+vB,EAA/vB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2fAA2f,KAAK,eAAc,CAAI,GAGzvB",
9
+ "debugId": "B96C14171C98528464756E2164756E21",
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