@central-icons-react/round-filled-radius-3-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:"M15.7227 3C16.5436 3 17.1904 3.00045 17.7109 3.04297C18.2421 3.08637 18.6858 3.17645 19.0889 3.38184C19.7474 3.71738 20.2826 4.25262 20.6182 4.91113C20.8236 5.31423 20.9136 5.75789 20.957 6.28906C20.9996 6.8096 21 7.45636 21 8.27734V15.7227C21 16.5436 20.9996 17.1904 20.957 17.7109C20.9136 18.2421 20.8236 18.6858 20.6182 19.0889C20.2826 19.7474 19.7474 20.2826 19.0889 20.6182C18.6858 20.8236 18.2421 20.9136 17.7109 20.957C17.1904 20.9996 16.5436 21 15.7227 21H8.27734C7.45636 21 6.8096 20.9996 6.28906 20.957C5.75789 20.9136 5.31423 20.8236 4.91113 20.6182C4.25262 20.2826 3.71738 19.7474 3.38184 19.0889C3.17645 18.6858 3.08637 18.2421 3.04297 17.7109C3.00045 17.1904 3 16.5436 3 15.7227V8.27734C3 7.45636 3.00045 6.8096 3.04297 6.28906C3.08637 5.75789 3.17645 5.31423 3.38184 4.91113C3.71738 4.25262 4.25262 3.71738 4.91113 3.38184C5.31423 3.17645 5.75789 3.08637 6.28906 3.04297C6.8096 3.00045 7.45636 3 8.27734 3H15.7227ZM13.1172 8.00391C12.656 7.08465 11.344 7.08465 10.8828 8.00391L7.45117 14.8438C6.93303 15.8766 7.97383 16.9999 9.04297 16.5615L11.9053 15.3877C11.966 15.3628 12.034 15.3628 12.0947 15.3877L14.957 16.5615C16.0262 16.9999 17.067 15.8766 16.5488 14.8438L13.1172 8.00391Z",fill:"currentColor"}))},G=I;
2
+
3
+ //# debugId=518ACA8556DA7C5464756E2164756E21
@@ -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=\"M15.7227 3C16.5436 3 17.1904 3.00045 17.7109 3.04297C18.2421 3.08637 18.6858 3.17645 19.0889 3.38184C19.7474 3.71738 20.2826 4.25262 20.6182 4.91113C20.8236 5.31423 20.9136 5.75789 20.957 6.28906C20.9996 6.8096 21 7.45636 21 8.27734V15.7227C21 16.5436 20.9996 17.1904 20.957 17.7109C20.9136 18.2421 20.8236 18.6858 20.6182 19.0889C20.2826 19.7474 19.7474 20.2826 19.0889 20.6182C18.6858 20.8236 18.2421 20.9136 17.7109 20.957C17.1904 20.9996 16.5436 21 15.7227 21H8.27734C7.45636 21 6.8096 20.9996 6.28906 20.957C5.75789 20.9136 5.31423 20.8236 4.91113 20.6182C4.25262 20.2826 3.71738 19.7474 3.38184 19.0889C3.17645 18.6858 3.08637 18.2421 3.04297 17.7109C3.00045 17.1904 3 16.5436 3 15.7227V8.27734C3 7.45636 3.00045 6.8096 3.04297 6.28906C3.08637 5.75789 3.17645 5.31423 3.38184 4.91113C3.71738 4.25262 4.25262 3.71738 4.91113 3.38184C5.31423 3.17645 5.75789 3.08637 6.28906 3.04297C6.8096 3.00045 7.45636 3 8.27734 3H15.7227ZM13.1172 8.00391C12.656 7.08465 11.344 7.08465 10.8828 8.00391L7.45117 14.8438C6.93303 15.8766 7.97383 16.9999 9.04297 16.5615L11.9053 15.3877C11.966 15.3628 12.034 15.3628 12.0947 15.3877L14.957 16.5615C16.0262 16.9999 17.067 15.8766 16.5488 14.8438L13.1172 8.00391Z\" 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,wBAAm0C,EAAn0C,IAAqB,EAAO,UAAU,0CAAyC,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+qCAA+qC,KAAK,eAAc,CAAI,GAG7zC",
9
+ "debugId": "518ACA8556DA7C5464756E2164756E21",
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:"M15.7227 3C16.5436 3 17.1904 3.00045 17.7109 3.04297C18.2421 3.08637 18.6858 3.17645 19.0889 3.38184C19.7474 3.71738 20.2826 4.25262 20.6182 4.91113C20.8236 5.31423 20.9136 5.75789 20.957 6.28906C20.9996 6.8096 21 7.45636 21 8.27734V15.7227C21 16.5436 20.9996 17.1904 20.957 17.7109C20.9136 18.2421 20.8236 18.6858 20.6182 19.0889C20.2826 19.7474 19.7474 20.2826 19.0889 20.6182C18.6858 20.8236 18.2421 20.9136 17.7109 20.957C17.1904 20.9996 16.5436 21 15.7227 21H8.27734C7.45636 21 6.8096 20.9996 6.28906 20.957C5.75789 20.9136 5.31423 20.8236 4.91113 20.6182C4.25262 20.2826 3.71738 19.7474 3.38184 19.0889C3.17645 18.6858 3.08637 18.2421 3.04297 17.7109C3.00045 17.1904 3 16.5436 3 15.7227V8.27734C3 7.45636 3.00045 6.8096 3.04297 6.28906C3.08637 5.75789 3.17645 5.31423 3.38184 4.91113C3.71738 4.25262 4.25262 3.71738 4.91113 3.38184C5.31423 3.17645 5.75789 3.08637 6.28906 3.04297C6.8096 3.00045 7.45636 3 8.27734 3H15.7227ZM13.1172 8.00391C12.656 7.08465 11.344 7.08465 10.8828 8.00391L7.45117 14.8438C6.93303 15.8766 7.97383 16.9999 9.04297 16.5615L11.9053 15.3877C11.966 15.3628 12.034 15.3628 12.0947 15.3877L14.957 16.5615C16.0262 16.9999 17.067 15.8766 16.5488 14.8438L13.1172 8.00391Z",fill:"currentColor"}))},g=i;export{g as default,i as IconCompassPointerSquare};
2
+
3
+ //# debugId=64714433DE7031B264756E2164756E21
@@ -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=\"M15.7227 3C16.5436 3 17.1904 3.00045 17.7109 3.04297C18.2421 3.08637 18.6858 3.17645 19.0889 3.38184C19.7474 3.71738 20.2826 4.25262 20.6182 4.91113C20.8236 5.31423 20.9136 5.75789 20.957 6.28906C20.9996 6.8096 21 7.45636 21 8.27734V15.7227C21 16.5436 20.9996 17.1904 20.957 17.7109C20.9136 18.2421 20.8236 18.6858 20.6182 19.0889C20.2826 19.7474 19.7474 20.2826 19.0889 20.6182C18.6858 20.8236 18.2421 20.9136 17.7109 20.957C17.1904 20.9996 16.5436 21 15.7227 21H8.27734C7.45636 21 6.8096 20.9996 6.28906 20.957C5.75789 20.9136 5.31423 20.8236 4.91113 20.6182C4.25262 20.2826 3.71738 19.7474 3.38184 19.0889C3.17645 18.6858 3.08637 18.2421 3.04297 17.7109C3.00045 17.1904 3 16.5436 3 15.7227V8.27734C3 7.45636 3.00045 6.8096 3.04297 6.28906C3.08637 5.75789 3.17645 5.31423 3.38184 4.91113C3.71738 4.25262 4.25262 3.71738 4.91113 3.38184C5.31423 3.17645 5.75789 3.08637 6.28906 3.04297C6.8096 3.00045 7.45636 3 8.27734 3H15.7227ZM13.1172 8.00391C12.656 7.08465 11.344 7.08465 10.8828 8.00391L7.45117 14.8438C6.93303 15.8766 7.97383 16.9999 9.04297 16.5615L11.9053 15.3877C11.966 15.3628 12.034 15.3628 12.0947 15.3877L14.957 16.5615C16.0262 16.9999 17.067 15.8766 16.5488 14.8438L13.1172 8.00391Z\" 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,gBAAm0C,EAAn0C,IAAqB,EAAO,UAAU,0CAAyC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+qCAA+qC,KAAK,eAAc,CAAI,GAG7zC",
9
+ "debugId": "64714433DE7031B264756E2164756E21",
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:"M5.5 4C3.567 4 2 5.567 2 7.5V10H22V7.5C22 5.567 20.433 4 18.5 4H5.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 16.5V11H22V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.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 16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V11H22V16.5Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 4C20.433 4 22 5.567 22 7.5V10H2V7.5C2 5.567 3.567 4 5.5 4H18.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=000DDBAF8BB8234164756E2164756E21
3
+ //# debugId=802D3DB69E2511F364756E2164756E21
@@ -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=\"M5.5 4C3.567 4 2 5.567 2 7.5V10H22V7.5C22 5.567 20.433 4 18.5 4H5.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 16.5V11H22V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.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 16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V11H22V16.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 4C20.433 4 22 5.567 22 7.5V10H2V7.5C2 5.567 3.567 4 5.5 4H18.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,wBAAkqB,EAAlqB,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yaAAya,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+EAA+E,KAAK,eAAc,CAAI,GAG5pB",
9
- "debugId": "000DDBAF8BB8234164756E2164756E21",
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,wBAAsuB,EAAtuB,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4eAA4e,KAAK,eAAc,CAAI,GAGhuB",
9
+ "debugId": "802D3DB69E2511F364756E2164756E21",
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:"M5.5 4C3.567 4 2 5.567 2 7.5V10H22V7.5C22 5.567 20.433 4 18.5 4H5.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 16.5V11H22V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.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 16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V11H22V16.5Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5 4C20.433 4 22 5.567 22 7.5V10H2V7.5C2 5.567 3.567 4 5.5 4H18.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=28E0A65ED3A2A6CB64756E2164756E21
3
+ //# debugId=386B96FA3409D93E64756E2164756E21
@@ -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=\"M5.5 4C3.567 4 2 5.567 2 7.5V10H22V7.5C22 5.567 20.433 4 18.5 4H5.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 16.5V11H22V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.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 16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V11H22V16.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.5 4C20.433 4 22 5.567 22 7.5V10H2V7.5C2 5.567 3.567 4 5.5 4H18.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,gBAAkqB,EAAlqB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yaAAya,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+EAA+E,KAAK,eAAc,CAAI,GAG5pB",
9
- "debugId": "28E0A65ED3A2A6CB64756E2164756E21",
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,gBAAsuB,EAAtuB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4eAA4e,KAAK,eAAc,CAAI,GAGhuB",
9
+ "debugId": "386B96FA3409D93E64756E2164756E21",
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:"M5.5 4C3.567 4 2 5.567 2 7.5V16.5C2 18.433 3.567 20 5.5 20H18.5C20.433 20 22 18.433 22 16.5V7.5C22 5.567 20.433 4 18.5 4H5.5ZM21 10V7.5C21 6.11929 19.8807 5 18.5 5H5.5C4.11929 5 3 6.11929 3 7.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:"M18.5 4C20.433 4 22 5.567 22 7.5V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V7.5C2 5.567 3.567 4 5.5 4H18.5ZM5.5 5C4.11929 5 3 6.11929 3 7.5V10H21V7.5C21 6.11929 19.8807 5 18.5 5H5.5Z",fill:"currentColor"}))},G=x;
2
2
 
3
- //# debugId=770E21A0812D7A9564756E2164756E21
3
+ //# debugId=904BF1628062437264756E2164756E21
@@ -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=\"M5.5 4C3.567 4 2 5.567 2 7.5V16.5C2 18.433 3.567 20 5.5 20H18.5C20.433 20 22 18.433 22 16.5V7.5C22 5.567 20.433 4 18.5 4H5.5ZM21 10V7.5C21 6.11929 19.8807 5 18.5 5H5.5C4.11929 5 3 6.11929 3 7.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=\"M18.5 4C20.433 4 22 5.567 22 7.5V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V7.5C2 5.567 3.567 4 5.5 4H18.5ZM5.5 5C4.11929 5 3 6.11929 3 7.5V10H21V7.5C21 6.11929 19.8807 5 18.5 5H5.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,wBAA0wB,EAA1wB,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,2MAA2M,KAAK,eAAc,CAAI,GAGpwB",
9
- "debugId": "770E21A0812D7A9564756E2164756E21",
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,wBAA22B,EAA32B,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,4MAA4M,KAAK,eAAc,CAAI,GAGr2B",
9
+ "debugId": "904BF1628062437264756E2164756E21",
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:"M5.5 4C3.567 4 2 5.567 2 7.5V16.5C2 18.433 3.567 20 5.5 20H18.5C20.433 20 22 18.433 22 16.5V7.5C22 5.567 20.433 4 18.5 4H5.5ZM21 10V7.5C21 6.11929 19.8807 5 18.5 5H5.5C4.11929 5 3 6.11929 3 7.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:"M18.5 4C20.433 4 22 5.567 22 7.5V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V7.5C2 5.567 3.567 4 5.5 4H18.5ZM5.5 5C4.11929 5 3 6.11929 3 7.5V10H21V7.5C21 6.11929 19.8807 5 18.5 5H5.5Z",fill:"currentColor"}))},w=i;export{w as default,i as IconWindowApp};
2
2
 
3
- //# debugId=420F490D4715CBD364756E2164756E21
3
+ //# debugId=E356E494710A9AED64756E2164756E21
@@ -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=\"M5.5 4C3.567 4 2 5.567 2 7.5V16.5C2 18.433 3.567 20 5.5 20H18.5C20.433 20 22 18.433 22 16.5V7.5C22 5.567 20.433 4 18.5 4H5.5ZM21 10V7.5C21 6.11929 19.8807 5 18.5 5H5.5C4.11929 5 3 6.11929 3 7.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=\"M18.5 4C20.433 4 22 5.567 22 7.5V16.5C22 18.433 20.433 20 18.5 20H5.5C3.567 20 2 18.433 2 16.5V7.5C2 5.567 3.567 4 5.5 4H18.5ZM5.5 5C4.11929 5 3 6.11929 3 7.5V10H21V7.5C21 6.11929 19.8807 5 18.5 5H5.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,gBAA0wB,EAA1wB,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,2MAA2M,KAAK,eAAc,CAAI,GAGpwB",
9
- "debugId": "420F490D4715CBD364756E2164756E21",
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,gBAA22B,EAA32B,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,4MAA4M,KAAK,eAAc,CAAI,GAGr2B",
9
+ "debugId": "E356E494710A9AED64756E2164756E21",
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 17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V10H21V17.5Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.5 3C19.433 3 21 4.567 21 6.5V9H3V6.5C3 4.567 4.567 3 6.5 3H17.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=B3C5AB07675A197D64756E2164756E21
@@ -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 17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V10H21V17.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5 3C19.433 3 21 4.567 21 6.5V9H3V6.5C3 4.567 4.567 3 6.5 3H17.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,wBAAmvB,EAAnvB,IAAqB,EAAO,UAAU,wCAAuC,wBAAC,OAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ofAAof,KAAK,eAAc,CAAI,GAG7uB",
9
+ "debugId": "B3C5AB07675A197D64756E2164756E21",
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 17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V10H21V17.5Z",fill:"currentColor"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.5 3C19.433 3 21 4.567 21 6.5V9H3V6.5C3 4.567 4.567 3 6.5 3H17.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=662E1609AD85D77A64756E2164756E21
@@ -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 17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V10H21V17.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5 3C19.433 3 21 4.567 21 6.5V9H3V6.5C3 4.567 4.567 3 6.5 3H17.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,gBAAmvB,EAAnvB,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,gFAAgF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ofAAof,KAAK,eAAc,CAAI,GAG7uB",
9
+ "debugId": "662E1609AD85D77A64756E2164756E21",
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