@central-icons-react-native/round-filled-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 { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCompassPointerSquare: FC<CentralIconBaseProps>;
4
+ export default IconCompassPointerSquare;
@@ -0,0 +1,3 @@
1
+ var L=Object.create;var{getPrototypeOf:S,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function u(o){return this[o]}var y,F,B=(o,r,C)=>{var e=o!=null&&typeof o==="object";if(e){var m=r?y??=new WeakMap:F??=new WeakMap,s=m.get(o);if(s)return s}C=o!=null?L(S(o)):{};let n=r||!o||!o.__esModule?t(C,"default",{value:o,enumerable:!0}):C;for(let p of f(o))if(!i.call(n,p))t(n,p,{get:u.bind(o,p),enumerable:!0});if(e)m.set(o,n);return n},I=(o)=>{var r=(c??=new WeakMap).get(o),C;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of f(o))if(!i.call(r,e))t(r,e,{get:u.bind(o,e),enumerable:!(C=h(o,e))||C.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function w(o,r){this[o]=b.bind(null,r)}var P=(o,r)=>{for(var C in r)t(o,C,{get:r[C],enumerable:!0,configurable:!0,set:w.bind(r,C)})};var H={};P(H,{CentralIconBase:()=>l});module.exports=I(H);var d=B(require("react")),v=require("react-native-svg"),l=({children:o,size:r=24,...C})=>{return d.default.createElement(v.Svg,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var M={};P(M,{default:()=>V,IconCompassPointerSquare:()=>g});module.exports=I(M);var a=B(require("react"));var x=require("react-native-svg"),g=(o)=>{return a.default.createElement(l,{...o},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.4316 3.00001C18.684 2.99998 18.9305 2.9996 19.1387 3.01661C19.3672 3.0353 19.6369 3.07957 19.9082 3.21778C20.2845 3.40951 20.5905 3.71556 20.7822 4.0918C20.9204 4.36306 20.9647 4.63283 20.9834 4.86133C21.0004 5.06945 21 5.31603 21 5.56836V18.4316C21 18.684 21.0004 18.9306 20.9834 19.1387C20.9647 19.3672 20.9204 19.6369 20.7822 19.9082C20.5905 20.2845 20.2845 20.5905 19.9082 20.7822C19.6369 20.9204 19.3672 20.9647 19.1387 20.9834C18.9306 21.0004 18.684 21 18.4316 21H5.56836C5.31603 21 5.06945 21.0004 4.86133 20.9834C4.63283 20.9647 4.36306 20.9204 4.0918 20.7822C3.71556 20.5905 3.40951 20.2845 3.21778 19.9082C3.07957 19.637 3.0353 19.3672 3.01661 19.1387C2.9996 18.9305 2.99998 18.684 3.00001 18.4316V5.56836C2.99998 5.31599 2.9996 5.06949 3.01661 4.86133C3.0353 4.63283 3.07957 4.36306 3.21778 4.0918C3.40951 3.71555 3.71555 3.40951 4.0918 3.21778C4.36306 3.07957 4.63283 3.0353 4.86133 3.01661C5.06949 2.9996 5.31599 2.99998 5.56836 3.00001H18.4316ZM13.0127 7.95118C12.5205 7.26294 11.4795 7.26293 10.9873 7.95118L10.8906 8.10938L7.417 14.8106C6.88703 15.8329 7.90377 16.9675 8.97754 16.5518L12 15.3799L15.0225 16.5518C16.0962 16.9675 17.113 15.8329 16.583 14.8106L13.1094 8.10938L13.0127 7.95118Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=105D4FE66483619964756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.4316 3.00001C18.684 2.99998 18.9305 2.9996 19.1387 3.01661C19.3672 3.0353 19.6369 3.07957 19.9082 3.21778C20.2845 3.40951 20.5905 3.71556 20.7822 4.0918C20.9204 4.36306 20.9647 4.63283 20.9834 4.86133C21.0004 5.06945 21 5.31603 21 5.56836V18.4316C21 18.684 21.0004 18.9306 20.9834 19.1387C20.9647 19.3672 20.9204 19.6369 20.7822 19.9082C20.5905 20.2845 20.2845 20.5905 19.9082 20.7822C19.6369 20.9204 19.3672 20.9647 19.1387 20.9834C18.9306 21.0004 18.684 21 18.4316 21H5.56836C5.31603 21 5.06945 21.0004 4.86133 20.9834C4.63283 20.9647 4.36306 20.9204 4.0918 20.7822C3.71556 20.5905 3.40951 20.2845 3.21778 19.9082C3.07957 19.637 3.0353 19.3672 3.01661 19.1387C2.9996 18.9305 2.99998 18.684 3.00001 18.4316V5.56836C2.99998 5.31599 2.9996 5.06949 3.01661 4.86133C3.0353 4.63283 3.07957 4.36306 3.21778 4.0918C3.40951 3.71555 3.71555 3.40951 4.0918 3.21778C4.36306 3.07957 4.63283 3.0353 4.86133 3.01661C5.06949 2.9996 5.31599 2.99998 5.56836 3.00001H18.4316ZM13.0127 7.95118C12.5205 7.26294 11.4795 7.26293 10.9873 7.95118L10.8906 8.10938L7.417 14.8106C6.88703 15.8329 7.90377 16.9675 8.97754 16.5518L12 15.3799L15.0225 16.5518C16.0962 16.9675 17.113 15.8329 16.583 14.8106L13.1094 8.10938L13.0127 7.95118Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,oFCvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqD,CAAC,IAAU,CAC3E,OAAO,wBAA8xC,EAA9xC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6rCAA6rC,KAAK,eAAc,CAAI,GAGxxC",
9
+ "debugId": "105D4FE66483619964756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var C=({children:r,size:o=24,...t})=>{return n.createElement(p,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import e from"react";import{Path as l}from"react-native-svg";var a=(r)=>{return e.createElement(C,{...r},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.4316 3.00001C18.684 2.99998 18.9305 2.9996 19.1387 3.01661C19.3672 3.0353 19.6369 3.07957 19.9082 3.21778C20.2845 3.40951 20.5905 3.71556 20.7822 4.0918C20.9204 4.36306 20.9647 4.63283 20.9834 4.86133C21.0004 5.06945 21 5.31603 21 5.56836V18.4316C21 18.684 21.0004 18.9306 20.9834 19.1387C20.9647 19.3672 20.9204 19.6369 20.7822 19.9082C20.5905 20.2845 20.2845 20.5905 19.9082 20.7822C19.6369 20.9204 19.3672 20.9647 19.1387 20.9834C18.9306 21.0004 18.684 21 18.4316 21H5.56836C5.31603 21 5.06945 21.0004 4.86133 20.9834C4.63283 20.9647 4.36306 20.9204 4.0918 20.7822C3.71556 20.5905 3.40951 20.2845 3.21778 19.9082C3.07957 19.637 3.0353 19.3672 3.01661 19.1387C2.9996 18.9305 2.99998 18.684 3.00001 18.4316V5.56836C2.99998 5.31599 2.9996 5.06949 3.01661 4.86133C3.0353 4.63283 3.07957 4.36306 3.21778 4.0918C3.40951 3.71555 3.71555 3.40951 4.0918 3.21778C4.36306 3.07957 4.63283 3.0353 4.86133 3.01661C5.06949 2.9996 5.31599 2.99998 5.56836 3.00001H18.4316ZM13.0127 7.95118C12.5205 7.26294 11.4795 7.26293 10.9873 7.95118L10.8906 8.10938L7.417 14.8106C6.88703 15.8329 7.90377 16.9675 8.97754 16.5518L12 15.3799L15.0225 16.5518C16.0962 16.9675 17.113 15.8329 16.583 14.8106L13.1094 8.10938L13.0127 7.95118Z",fill:"currentColor"}))},v=a;export{v as default,a as IconCompassPointerSquare};
2
+
3
+ //# debugId=5DB9996DCCEBF76664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCompassPointerSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCompassPointerSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.4316 3.00001C18.684 2.99998 18.9305 2.9996 19.1387 3.01661C19.3672 3.0353 19.6369 3.07957 19.9082 3.21778C20.2845 3.40951 20.5905 3.71556 20.7822 4.0918C20.9204 4.36306 20.9647 4.63283 20.9834 4.86133C21.0004 5.06945 21 5.31603 21 5.56836V18.4316C21 18.684 21.0004 18.9306 20.9834 19.1387C20.9647 19.3672 20.9204 19.6369 20.7822 19.9082C20.5905 20.2845 20.2845 20.5905 19.9082 20.7822C19.6369 20.9204 19.3672 20.9647 19.1387 20.9834C18.9306 21.0004 18.684 21 18.4316 21H5.56836C5.31603 21 5.06945 21.0004 4.86133 20.9834C4.63283 20.9647 4.36306 20.9204 4.0918 20.7822C3.71556 20.5905 3.40951 20.2845 3.21778 19.9082C3.07957 19.637 3.0353 19.3672 3.01661 19.1387C2.9996 18.9305 2.99998 18.684 3.00001 18.4316V5.56836C2.99998 5.31599 2.9996 5.06949 3.01661 4.86133C3.0353 4.63283 3.07957 4.36306 3.21778 4.0918C3.40951 3.71555 3.71555 3.40951 4.0918 3.21778C4.36306 3.07957 4.63283 3.0353 4.86133 3.01661C5.06949 2.9996 5.31599 2.99998 5.56836 3.00001H18.4316ZM13.0127 7.95118C12.5205 7.26294 11.4795 7.26293 10.9873 7.95118L10.8906 8.10938L7.417 14.8106C6.88703 15.8329 7.90377 16.9675 8.97754 16.5518L12 15.3799L15.0225 16.5518C16.0962 16.9675 17.113 15.8329 16.583 14.8106L13.1094 8.10938L13.0127 7.95118Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCompassPointerSquare;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAA8xC,EAA9xC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6rCAA6rC,KAAK,eAAc,CAAI,GAGxxC",
9
+ "debugId": "5DB9996DCCEBF76664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconWindowSquare: FC<CentralIconBaseProps>;
4
+ export default IconWindowSquare;
@@ -0,0 +1,3 @@
1
+ var M=Object.create;var{getPrototypeOf:S,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:Z}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?h??=new WeakMap:y??=new WeakMap,s=f.get(r);if(s)return s}e=r!=null?M(S(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))t(C,l,{get:d.bind(r,l),enumerable:!0});if(n)f.set(r,C);return C},I=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=Z(r,n))||e.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function H(r,o){this[r]=F.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:H.bind(o,e)})};var V={};v(V,{CentralIconBase:()=>a});module.exports=I(V);var x=B(require("react")),P=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.default.createElement(P.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};v(b,{default:()=>w,IconWindowSquare:()=>g});module.exports=I(b);var p=B(require("react"));var m=require("react-native-svg"),g=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M21 19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V11H21V19Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3C20.1046 3 21 3.89543 21 5V9H3V5C3 3.89543 3.89543 3 5 3H19ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))},w=g;
2
+
3
+ //# debugId=39453CC224DFB59B64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21 19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V11H21V19Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19 3C20.1046 3 21 3.89543 21 5V9H3V5C3 3.89543 3.89543 3 5 3H19ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,4ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAAulB,EAAvlB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2EAA2E,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8YAA8Y,KAAK,eAAc,CAAI,GAGjlB",
9
+ "debugId": "39453CC224DFB59B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M21 19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V11H21V19Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 3C20.1046 3 21 3.89543 21 5V9H3V5C3 3.89543 3.89543 3 5 3H19ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z",fill:"currentColor"}))},x=a;export{x as default,a as IconWindowSquare};
2
+
3
+ //# debugId=8DC9C3C15E84CCBD64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowSquare/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowSquare: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M21 19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V11H21V19Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19 3C20.1046 3 21 3.89543 21 5V9H3V5C3 3.89543 3.89543 3 5 3H19ZM6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5ZM8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5ZM11 5C10.4477 5 10 5.44772 10 6C10 6.55228 10.4477 7 11 7C11.5523 7 12 6.55228 12 6C12 5.44772 11.5523 5 11 5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconWindowSquare;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAulB,EAAvlB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2EAA2E,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8YAA8Y,KAAK,eAAc,CAAI,GAGjlB",
9
+ "debugId": "8DC9C3C15E84CCBD64756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1294,6 +1294,7 @@ Below is a complete list of available icons:
1294
1294
  - IconCheckmark2Medium
1295
1295
  - IconCard
1296
1296
  - IconUnblock
1297
+ - IconWindowSquare
1297
1298
 
1298
1299
  ### Keyboard
1299
1300
 
@@ -1398,6 +1399,7 @@ Below is a complete list of available icons:
1398
1399
  - IconMapPin2
1399
1400
  - IconMapEditFlat
1400
1401
  - IconPinFocus
1402
+ - IconCompassPointerSquare
1401
1403
 
1402
1404
  ### Nature & Energy
1403
1405