@central-icons-react/round-outlined-radius-1-stroke-2 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 x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:I}=Object,d=Object.prototype.hasOwnProperty;function f(r){return this[r]}var P,w,g=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?P??=new WeakMap:w??=new WeakMap,C=n.get(r);if(C)return C}e=r!=null?x(B(r)):{};let s=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of u(r))if(!d.call(s,i))p(s,i,{get:f.bind(r,i),enumerable:!0});if(t)n.set(r,s);return s},h=(r)=>{var o=(m??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!d.call(o,t))p(o,t,{get:f.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return m.set(r,o),o},m;var y=(r)=>r;function V(r,o){this[r]=y.bind(null,o)}var L=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var b={};L(b,{CentralIconBase:()=>c});module.exports=h(b);var l=g(require("react")),c=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:C,...s})=>{return l.default.createElement("svg",{...s,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...C}},e&&!n&&l.default.createElement("title",null,e),r)};var S={};L(S,{default:()=>v,IconCompassPointerSquare:()=>k});module.exports=h(S);var a=g(require("react"));var k=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"compass-pointer-square, gps, direction"},a.default.createElement("path",{d:"M20 18.4V5.6C20 5.03995 20 4.75992 19.891 4.54601C19.7951 4.35785 19.6422 4.20487 19.454 4.10899C19.2401 4 18.9601 4 18.4 4H5.6C5.03995 4 4.75992 4 4.54601 4.10899C4.35785 4.20487 4.20487 4.35785 4.10899 4.54601C4 4.75992 4 5.03995 4 5.6V18.4C4 18.96 4 19.2401 4.10899 19.454C4.20487 19.6421 4.35785 19.7951 4.54601 19.891C4.75992 20 5.03995 20 5.6 20H18.4C18.9601 20 19.2401 20 19.454 19.891C19.6422 19.7951 19.7951 19.6421 19.891 19.454C20 19.2401 20 18.96 20 18.4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M8.30433 15.2712L11.7781 8.56979C11.8713 8.38985 12.1287 8.38985 12.222 8.56979L15.6957 15.2712C15.8017 15.4757 15.5982 15.7026 15.3834 15.6193L12.0903 14.3433C12.0322 14.3208 11.9678 14.3208 11.9097 14.3433L8.61661 15.6193C8.40183 15.7026 8.19832 15.4757 8.30433 15.2712Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},v=k;
2
+
3
+ //# debugId=FB92C38DB55016F464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCompassPointerSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"compass-pointer-square, gps, direction\"><path d=\"M20 18.4V5.6C20 5.03995 20 4.75992 19.891 4.54601C19.7951 4.35785 19.6422 4.20487 19.454 4.10899C19.2401 4 18.9601 4 18.4 4H5.6C5.03995 4 4.75992 4 4.54601 4.10899C4.35785 4.20487 4.20487 4.35785 4.10899 4.54601C4 4.75992 4 5.03995 4 5.6V18.4C4 18.96 4 19.2401 4.10899 19.454C4.20487 19.6421 4.35785 19.7951 4.54601 19.891C4.75992 20 5.03995 20 5.6 20H18.4C18.9601 20 19.2401 20 19.454 19.891C19.6422 19.7951 19.7951 19.6421 19.891 19.454C20 19.2401 20 18.96 20 18.4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.30433 15.2712L11.7781 8.56979C11.8713 8.38985 12.1287 8.38985 12.222 8.56979L15.6957 15.2712C15.8017 15.4757 15.5982 15.7026 15.3834 15.6193L12.0903 14.3433C12.0322 14.3208 11.9678 14.3208 11.9097 14.3433L8.61661 15.6193C8.40183 15.7026 8.19832 15.4757 8.30433 15.2712Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,oFCjCY,IAAlB,sBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,wBAAk/B,EAAl/B,IAAqB,EAAO,UAAU,0CAAyC,wBAAC,OAAD,CAAM,EAAE,sdAAsd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mRAAmR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5+B",
9
+ "debugId": "FB92C38DB55016F464756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";var p=({children:o,size:r=24,ariaLabel:n,color:C,ariaHidden:e=!0,style:a,...i})=>{return s.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},n&&!e&&s.createElement("title",null,n),o)};import t from"react";var l=(o)=>{return t.createElement(p,{...o,ariaLabel:"compass-pointer-square, gps, direction"},t.createElement("path",{d:"M20 18.4V5.6C20 5.03995 20 4.75992 19.891 4.54601C19.7951 4.35785 19.6422 4.20487 19.454 4.10899C19.2401 4 18.9601 4 18.4 4H5.6C5.03995 4 4.75992 4 4.54601 4.10899C4.35785 4.20487 4.20487 4.35785 4.10899 4.54601C4 4.75992 4 5.03995 4 5.6V18.4C4 18.96 4 19.2401 4.10899 19.454C4.20487 19.6421 4.35785 19.7951 4.54601 19.891C4.75992 20 5.03995 20 5.6 20H18.4C18.9601 20 19.2401 20 19.454 19.891C19.6422 19.7951 19.7951 19.6421 19.891 19.454C20 19.2401 20 18.96 20 18.4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M8.30433 15.2712L11.7781 8.56979C11.8713 8.38985 12.1287 8.38985 12.222 8.56979L15.6957 15.2712C15.8017 15.4757 15.5982 15.7026 15.3834 15.6193L12.0903 14.3433C12.0322 14.3208 11.9678 14.3208 11.9097 14.3433L8.61661 15.6193C8.40183 15.7026 8.19832 15.4757 8.30433 15.2712Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconCompassPointerSquare};
2
+
3
+ //# debugId=BE315694966CF1D864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCompassPointerSquare: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"compass-pointer-square, gps, direction\"><path d=\"M20 18.4V5.6C20 5.03995 20 4.75992 19.891 4.54601C19.7951 4.35785 19.6422 4.20487 19.454 4.10899C19.2401 4 18.9601 4 18.4 4H5.6C5.03995 4 4.75992 4 4.54601 4.10899C4.35785 4.20487 4.20487 4.35785 4.10899 4.54601C4 4.75992 4 5.03995 4 5.6V18.4C4 18.96 4 19.2401 4.10899 19.454C4.20487 19.6421 4.35785 19.7951 4.54601 19.891C4.75992 20 5.03995 20 5.6 20H18.4C18.9601 20 19.2401 20 19.454 19.891C19.6422 19.7951 19.7951 19.6421 19.891 19.454C20 19.2401 20 18.96 20 18.4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8.30433 15.2712L11.7781 8.56979C11.8713 8.38985 12.1287 8.38985 12.222 8.56979L15.6957 15.2712C15.8017 15.4757 15.5982 15.7026 15.3834 15.6193L12.0903 14.3433C12.0322 14.3208 11.9678 14.3208 11.9097 14.3433L8.61661 15.6193C8.40183 15.7026 8.19832 15.4757 8.30433 15.2712Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAAk/B,EAAl/B,IAAqB,EAAO,UAAU,0CAAyC,gBAAC,OAAD,CAAM,EAAE,sdAAsd,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,mRAAmR,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5+B",
9
+ "debugId": "BE315694966CF1D864756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:d,getOwnPropertyDescriptor:b}=Object,u=Object.prototype.hasOwnProperty;function f(r){return this[r]}var y,P,w=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?y??=new WeakMap:P??=new WeakMap,s=n.get(r);if(s)return s}t=r!=null?B(I(r)):{};let C=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let a of d(r))if(!u.call(C,a))p(C,a,{get:f.bind(r,a),enumerable:!0});if(e)n.set(r,C);return C},h=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of d(r))if(!u.call(o,e))p(o,e,{get:f.bind(r,e),enumerable:!(t=b(r,e))||t.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function k(r,o){this[r]=V.bind(null,o)}var g=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:k.bind(o,t)})};var M={};g(M,{CentralIconBase:()=>m});module.exports=h(M);var i=w(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:s,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...s}},t&&!n&&i.default.createElement("title",null,t),r)};var v={};g(v,{default:()=>G,IconWindow2:()=>x});module.exports=h(v);var l=w(require("react"));var x=(r)=>{return l.default.createElement(m,{...r,ariaLabel:"window-2, browser, app, desktop"},l.default.createElement("path",{d:"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},G=x;
1
+ var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,h=Object.prototype.hasOwnProperty;function m(r){return this[r]}var b,y,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?b??=new WeakMap:y??=new WeakMap,s=C.get(r);if(s)return s}t=r!=null?x(B(r)):{};let l=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let a of c(r))if(!h.call(l,a))p(l,a,{get:m.bind(r,a),enumerable:!0});if(e)C.set(r,l);return l},k=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!h.call(o,e))p(o,e,{get:m.bind(r,e),enumerable:!(t=I(r,e))||t.enumerable})}return u.set(r,o),o},u;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var w=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var W={};w(W,{CentralIconBase:()=>d});module.exports=k(W);var i=f(require("react")),d=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:C=!0,style:s,...l})=>{return i.default.createElement("svg",{...l,"aria-hidden":C,role:C?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...s}},t&&!C&&i.default.createElement("title",null,t),r)};var M={};w(M,{default:()=>v,IconWindow2:()=>g});module.exports=k(M);var n=f(require("react"));var g=(r)=>{return n.default.createElement(d,{...r,ariaLabel:"window-2, browser, app, desktop"},n.default.createElement("path",{d:"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement("path",{d:"M3 11H21",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement("path",{d:"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),n.default.createElement("path",{d:"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),n.default.createElement("path",{d:"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},v=g;
2
2
 
3
- //# debugId=B5363B5826F0C56964756E2164756E21
3
+ //# debugId=077416427DA4009964756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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=\"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M3 11H21\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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,wBAAivB,EAAjvB,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,gbAAgb,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG3uB",
9
- "debugId": "B5363B5826F0C56964756E2164756E21",
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,wBAAk7B,EAAl7B,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG56B",
9
+ "debugId": "077416427DA4009964756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";var p=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:l,...a})=>{return C.createElement("svg",{...a,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!t&&C.createElement("title",null,n),o)};import e from"react";var i=(o)=>{return e.createElement(p,{...o,ariaLabel:"window-2, browser, app, desktop"},e.createElement("path",{d:"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z",stroke:"currentColor",strokeWidth:"2"}),e.createElement("path",{d:"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},w=i;export{w as default,i as IconWindow2};
1
+ import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:s,...a})=>{return C.createElement("svg",{...a,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...s}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var i=(t)=>{return o.createElement(l,{...t,ariaLabel:"window-2, browser, app, desktop"},o.createElement("path",{d:"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M3 11H21",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),o.createElement("path",{d:"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),o.createElement("path",{d:"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},f=i;export{f as default,i as IconWindow2};
2
2
 
3
- //# debugId=9692FA27F62F2CCE64756E2164756E21
3
+ //# debugId=C8074BCEC62556E364756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindow2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWindow2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"window-2, browser, app, desktop\"><path d=\"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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=\"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M3 11H21\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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,gBAAivB,EAAjvB,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,gbAAgb,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG3uB",
9
- "debugId": "9692FA27F62F2CCE64756E2164756E21",
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,gBAAk7B,EAAl7B,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG56B",
9
+ "debugId": "C8074BCEC62556E364756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:C,getOwnPropertyNames:d,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function f(r){return this[r]}var b,y,w=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?b??=new WeakMap:y??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?B(I(r)):{};let p=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let l of d(r))if(!u.call(p,l))C(p,l,{get:f.bind(r,l),enumerable:!0});if(t)n.set(r,p);return p},h=(r)=>{var o=(m??=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 d(r))if(!u.call(o,t))C(o,t,{get:f.bind(r,t),enumerable:!(e=k(r,t))||e.enumerable})}return m.set(r,o),o},m;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var g=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var M={};g(M,{CentralIconBase:()=>c});module.exports=h(M);var i=w(require("react")),c=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:s,...p})=>{return i.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},e&&!n&&i.default.createElement("title",null,e),r)};var v={};g(v,{default:()=>G,IconWindowApp:()=>x});module.exports=h(v);var a=w(require("react"));var x=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"window-app, browser, app, desktop"},a.default.createElement("path",{d:"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},G=x;
1
+ var x=Object.create;var{getPrototypeOf:B,defineProperty:C,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,h=Object.prototype.hasOwnProperty;function k(r){return this[r]}var b,y,m=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var p=o?b??=new WeakMap:y??=new WeakMap,l=p.get(r);if(l)return l}t=r!=null?x(B(r)):{};let s=o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t;for(let i of c(r))if(!h.call(s,i))C(s,i,{get:k.bind(r,i),enumerable:!0});if(e)p.set(r,s);return s},f=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!h.call(o,e))C(o,e,{get:k.bind(r,e),enumerable:!(t=I(r,e))||t.enumerable})}return u.set(r,o),o},u;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var w=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0,configurable:!0,set:V.bind(o,t)})};var W={};w(W,{CentralIconBase:()=>d});module.exports=f(W);var a=m(require("react")),d=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:p=!0,style:l,...s})=>{return a.default.createElement("svg",{...s,"aria-hidden":p,role:p?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...l}},t&&!p&&a.default.createElement("title",null,t),r)};var L={};w(L,{default:()=>M,IconWindowApp:()=>g});module.exports=f(L);var n=m(require("react"));var g=(r)=>{return n.default.createElement(d,{...r,ariaLabel:"window-app, browser, app, desktop"},n.default.createElement("path",{d:"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M3 11H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),n.default.createElement("path",{d:"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),n.default.createElement("path",{d:"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},M=g;
2
2
 
3
- //# debugId=C9D4A7C3C62AAF8964756E2164756E21
3
+ //# debugId=BAD52CB34D8C91A664756E2164756E21
@@ -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=\"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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=\"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3 11H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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,wBAAgyB,EAAhyB,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gbAAgb,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG1xB",
9
- "debugId": "C9D4A7C3C62AAF8964756E2164756E21",
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,wBAA8gC,EAA9gC,IAAqB,EAAO,UAAU,qCAAoC,wBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxgC",
9
+ "debugId": "BAD52CB34D8C91A664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";var C=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:a,...l})=>{return p.createElement("svg",{...l,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...a}},n&&!e&&p.createElement("title",null,n),o)};import t from"react";var i=(o)=>{return t.createElement(C,{...o,ariaLabel:"window-app, browser, app, desktop"},t.createElement("path",{d:"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},w=i;export{w as default,i as IconWindowApp};
1
+ import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:C,ariaHidden:e=!0,style:l,...i})=>{return p.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...l}},n&&!e&&p.createElement("title",null,n),t)};import o from"react";var a=(t)=>{return o.createElement(s,{...t,ariaLabel:"window-app, browser, app, desktop"},o.createElement("path",{d:"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M3 11H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),o.createElement("path",{d:"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}),o.createElement("path",{d:"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.5"}))},m=a;export{m as default,a as IconWindowApp};
2
2
 
3
- //# debugId=8B2CD087E878FF6C64756E2164756E21
3
+ //# debugId=BDE28EEF4FBB69FD64756E2164756E21
@@ -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=\"M3 11H21M4 19H20C20.5523 19 21 18.5523 21 18V6C21 5.44772 20.5523 5 20 5H4C3.44772 5 3 5.44772 3 6V18C3 18.5523 3.44772 19 4 19Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 8.75C6.41421 8.75 6.75 8.41421 6.75 8C6.75 7.58579 6.41421 7.25 6 7.25C5.58579 7.25 5.25 7.58579 5.25 8C5.25 8.41421 5.58579 8.75 6 8.75ZM9 8.75C9.41421 8.75 9.75 8.41421 9.75 8C9.75 7.58579 9.41421 7.25 9 7.25C8.58579 7.25 8.25 7.58579 8.25 8C8.25 8.41421 8.58579 8.75 9 8.75ZM12 8.75C12.4142 8.75 12.75 8.41421 12.75 8C12.75 7.58579 12.4142 7.25 12 7.25C11.5858 7.25 11.25 7.58579 11.25 8C11.25 8.41421 11.5858 8.75 12 8.75Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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=\"M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H4C3.44772 19 3 18.5523 3 18V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3 11H21\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6 7.25C6.41421 7.25 6.75 7.58579 6.75 8C6.75 8.41421 6.41421 8.75 6 8.75C5.58579 8.75 5.25 8.41421 5.25 8C5.25 7.58579 5.58579 7.25 6 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M9 7.25C9.41421 7.25 9.75 7.58579 9.75 8C9.75 8.41421 9.41421 8.75 9 8.75C8.58579 8.75 8.25 8.41421 8.25 8C8.25 7.58579 8.58579 7.25 9 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/><path d=\"M12 7.25C12.4142 7.25 12.75 7.58579 12.75 8C12.75 8.41421 12.4142 8.75 12 8.75C11.5858 8.75 11.25 8.41421 11.25 8C11.25 7.58579 11.5858 7.25 12 7.25Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"0.5\"/></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,gBAAgyB,EAAhyB,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gbAAgb,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG1xB",
9
- "debugId": "8B2CD087E878FF6C64756E2164756E21",
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,gBAA8gC,EAA9gC,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAGxgC",
9
+ "debugId": "BDE28EEF4FBB69FD64756E2164756E21",
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 x=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function f(r){return this[r]}var b,y,h=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var p=o?b??=new WeakMap:y??=new WeakMap,s=p.get(r);if(s)return s}e=r!=null?x(B(r)):{};let C=o||!r||!r.__esModule?l(e,"default",{value:r,enumerable:!0}):e;for(let a of c(r))if(!m.call(C,a))l(C,a,{get:f.bind(r,a),enumerable:!0});if(t)p.set(r,C);return C},w=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of c(r))if(!m.call(o,t))l(o,t,{get:f.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return d.set(r,o),o},d;var P=(r)=>r;function V(r,o){this[r]=P.bind(null,o)}var k=(r,o)=>{for(var e in o)l(r,e,{get:o[e],enumerable:!0,configurable:!0,set:V.bind(o,e)})};var L={};k(L,{CentralIconBase:()=>u});module.exports=w(L);var i=h(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:p=!0,style:s,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":p,role:p?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},e&&!p&&i.default.createElement("title",null,e),r)};var M={};k(M,{default:()=>S,IconWindowSquare:()=>g});module.exports=w(M);var n=h(require("react"));var g=(r)=>{return n.default.createElement(u,{...r,ariaLabel:"window-square, browser, app, desktop"},n.default.createElement("path",{d:"M4 5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),n.default.createElement("path",{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),n.default.createElement("path",{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}))},S=g;
2
+
3
+ //# debugId=F210B09F81A6FB7C64756E2164756E21
@@ -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=\"M4 5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 10H19.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" 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,wBAAg0B,EAAh0B,IAAqB,EAAO,UAAU,wCAAuC,wBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAG1zB",
9
+ "debugId": "F210B09F81A6FB7C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var C=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:t=!0,style:s,...a})=>{return p.createElement("svg",{...a,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},n&&!t&&p.createElement("title",null,n),e)};import o from"react";var i=(e)=>{return o.createElement(C,{...e,ariaLabel:"window-square, browser, app, desktop"},o.createElement("path",{d:"M4 5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z",fill:"currentColor"}),o.createElement("path",{d:"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z",fill:"currentColor"}),o.createElement("path",{d:"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z",fill:"currentColor"}))},h=i;export{h as default,i as IconWindowSquare};
2
+
3
+ //# debugId=7E6134EA52680FF764756E2164756E21
@@ -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=\"M4 5C4 4.44772 4.44772 4 5 4H19C19.5523 4 20 4.44772 20 5V19C20 19.5523 19.5523 20 19 20H5C4.44772 20 4 19.5523 4 19V5Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4.75 10H19.25\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7C6 6.44772 6.44772 6 7 6C7.55228 6 8 6.44772 8 7Z\" fill=\"currentColor\"/><path d=\"M10.5 7C10.5 7.55228 10.0523 8 9.5 8C8.94772 8 8.5 7.55228 8.5 7C8.5 6.44772 8.94772 6 9.5 6C10.0523 6 10.5 6.44772 10.5 7Z\" fill=\"currentColor\"/><path d=\"M13 7C13 7.55228 12.5523 8 12 8C11.4477 8 11 7.55228 11 7C11 6.44772 11.4477 6 12 6C12.5523 6 13 6.44772 13 7Z\" 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,gBAAg0B,EAAh0B,IAAqB,EAAO,UAAU,wCAAuC,gBAAC,OAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAG1zB",
9
+ "debugId": "7E6134EA52680FF764756E2164756E21",
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