@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.285 → 1.1.287

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.
Files changed (67) hide show
  1. package/IconLayoutAllSides/index.d.ts +4 -0
  2. package/IconLayoutAllSides/index.js +3 -0
  3. package/IconLayoutAllSides/index.js.map +11 -0
  4. package/IconLayoutAllSides/index.mjs +3 -0
  5. package/IconLayoutAllSides/index.mjs.map +11 -0
  6. package/IconLayoutBottom1/index.d.ts +4 -0
  7. package/IconLayoutBottom1/index.js +3 -0
  8. package/IconLayoutBottom1/index.js.map +11 -0
  9. package/IconLayoutBottom1/index.mjs +3 -0
  10. package/IconLayoutBottom1/index.mjs.map +11 -0
  11. package/IconLayoutLeft1/index.d.ts +4 -0
  12. package/IconLayoutLeft1/index.js +3 -0
  13. package/IconLayoutLeft1/index.js.map +11 -0
  14. package/IconLayoutLeft1/index.mjs +3 -0
  15. package/IconLayoutLeft1/index.mjs.map +11 -0
  16. package/IconLayoutLeftRight/index.d.ts +4 -0
  17. package/IconLayoutLeftRight/index.js +3 -0
  18. package/IconLayoutLeftRight/index.js.map +11 -0
  19. package/IconLayoutLeftRight/index.mjs +3 -0
  20. package/IconLayoutLeftRight/index.mjs.map +11 -0
  21. package/IconLayoutRight1/index.d.ts +4 -0
  22. package/IconLayoutRight1/index.js +3 -0
  23. package/IconLayoutRight1/index.js.map +11 -0
  24. package/IconLayoutRight1/index.mjs +3 -0
  25. package/IconLayoutRight1/index.mjs.map +11 -0
  26. package/IconLayoutTop1/index.d.ts +4 -0
  27. package/IconLayoutTop1/index.js +3 -0
  28. package/IconLayoutTop1/index.js.map +11 -0
  29. package/IconLayoutTop1/index.mjs +3 -0
  30. package/IconLayoutTop1/index.mjs.map +11 -0
  31. package/IconLayoutTopBottom/index.d.ts +4 -0
  32. package/IconLayoutTopBottom/index.js +3 -0
  33. package/IconLayoutTopBottom/index.js.map +11 -0
  34. package/IconLayoutTopBottom/index.mjs +3 -0
  35. package/IconLayoutTopBottom/index.mjs.map +11 -0
  36. package/IconQwik/index.d.ts +4 -0
  37. package/IconQwik/index.js +3 -0
  38. package/IconQwik/index.js.map +11 -0
  39. package/IconQwik/index.mjs +3 -0
  40. package/IconQwik/index.mjs.map +11 -0
  41. package/IconWindow2/index.js +2 -2
  42. package/IconWindow2/index.js.map +3 -3
  43. package/IconWindow2/index.mjs +2 -2
  44. package/IconWindow2/index.mjs.map +3 -3
  45. package/IconWindowApp/index.js +2 -2
  46. package/IconWindowApp/index.js.map +3 -3
  47. package/IconWindowApp/index.mjs +2 -2
  48. package/IconWindowApp/index.mjs.map +3 -3
  49. package/IconWindowSquare/index.d.ts +4 -0
  50. package/IconWindowSquare/index.js +3 -0
  51. package/IconWindowSquare/index.js.map +11 -0
  52. package/IconWindowSquare/index.mjs +3 -0
  53. package/IconWindowSquare/index.mjs.map +11 -0
  54. package/README.md +9 -0
  55. package/filtered-icons.json +1 -1
  56. package/icons/index.d.ts +1 -1
  57. package/icons/index.js +2 -2
  58. package/icons/index.js.map +3 -3
  59. package/icons/index.mjs +2 -2
  60. package/icons/index.mjs.map +3 -3
  61. package/icons-index.json +4 -4
  62. package/index.d.ts +9 -0
  63. package/index.js +27 -0
  64. package/index.mjs +9 -0
  65. package/license-check.js +1 -1
  66. package/package.json +1 -1
  67. package/skills/central-icons-react-native/SKILL.md +10 -1
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/index.tsx"],
4
4
  "sourcesContent": [
5
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 IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 11H21M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 7C3 5.89543 3.89543 5 5 5H19C20.1046 5 21 5.89543 21 7V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V7Z\" 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": "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,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAkvB,EAAlvB,IAAqB,GAAO,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,GAG5uB",
9
- "debugId": "07F7A597EE1C840C64756E2164756E21",
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,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAg+B,EAAh+B,IAAqB,GAAO,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,GAG19B",
9
+ "debugId": "4C1A39F2056AEFEC64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return p.createElement(s,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M3 11H21M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement(n,{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"}))},P=a;export{P as default,a as IconWindowApp};
1
+ import s from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:r=24,...C})=>{return s.createElement(p,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var l=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M3 7C3 5.89543 3.89543 5 5 5H19C20.1046 5 21 5.89543 21 7V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V7Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M3 11H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{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(t,{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(t,{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"}))},I=l;export{I as default,l as IconWindowApp};
2
2
 
3
- //# debugId=B496F2581EAF6DF064756E2164756E21
3
+ //# debugId=FBF21BB3208A14C564756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconWindowApp/index.tsx"],
4
4
  "sourcesContent": [
5
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 IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 11H21M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconWindowApp: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 7C3 5.89543 3.89543 5 5 5H19C20.1046 5 21 5.89543 21 7V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V7Z\" 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,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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAkvB,EAAlvB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mIAAmI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gbAAgb,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG5uB",
9
- "debugId": "B496F2581EAF6DF064756E2164756E21",
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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAg+B,EAAh+B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,+IAA+I,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,wJAAwJ,KAAK,eAAe,OAAO,eAAe,YAAY,MAAK,CAAI,GAG19B",
9
+ "debugId": "FBF21BB3208A14C564756E2164756E21",
10
10
  "names": []
11
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 h=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:M}=Object,c=Object.prototype.hasOwnProperty;function f(r){return this[r]}var S,y,k=(r,o,n)=>{var e=r!=null&&typeof r==="object";if(e){var u=o?S??=new WeakMap:y??=new WeakMap,a=u.get(r);if(a)return a}n=r!=null?h(v(r)):{};let l=o||!r||!r.__esModule?p(n,"default",{value:r,enumerable:!0}):n;for(let s of m(r))if(!c.call(l,s))p(l,s,{get:f.bind(r,s),enumerable:!0});if(e)u.set(r,l);return l},B=(r)=>{var o=(d??=new WeakMap).get(r),n;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of m(r))if(!c.call(o,e))p(o,e,{get:f.bind(r,e),enumerable:!(n=M(r,e))||n.enumerable})}return d.set(r,o),o},d;var F=(r)=>r;function L(r,o){this[r]=F.bind(null,o)}var I=(r,o)=>{for(var n in o)p(r,n,{get:o[n],enumerable:!0,configurable:!0,set:L.bind(o,n)})};var Z={};I(Z,{CentralIconBase:()=>i});module.exports=B(Z);var x=k(require("react")),P=require("react-native-svg"),i=({children:r,size:o=24,...n})=>{return x.default.createElement(P.Svg,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var b={};I(b,{default:()=>w,IconWindowSquare:()=>g});module.exports=B(b);var t=k(require("react"));var C=require("react-native-svg"),g=(r)=>{return t.default.createElement(i,{...r},t.default.createElement(C.Path,{d:"M4 6C4 4.89543 4.89543 4 6 4H18C19.1046 4 20 4.89543 20 6V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(C.Path,{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(C.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"}),t.default.createElement(C.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"}),t.default.createElement(C.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"}))},w=g;
2
+
3
+ //# debugId=A3EB02FDA07C5D4264756E2164756E21
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4H18C19.1046 4 20 4.89543 20 6V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18V6Z\" 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": "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,wBAA+wB,EAA/wB,IAAqB,GAAO,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,GAGzwB",
9
+ "debugId": "A3EB02FDA07C5D4264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var t=({children:e,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"},e)};import o from"react";import{Path as n}from"react-native-svg";var s=(e)=>{return o.createElement(t,{...e},o.createElement(n,{d:"M4 6C4 4.89543 4.89543 4 6 4H18C19.1046 4 20 4.89543 20 6V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M4.75 10H19.25",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{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(n,{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(n,{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"}))},x=s;export{x as default,s as IconWindowSquare};
2
+
3
+ //# debugId=C5C875A21B6DBFE464756E2164756E21
@@ -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=\"M4 6C4 4.89543 4.89543 4 6 4H18C19.1046 4 20 4.89543 20 6V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18V6Z\" 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,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,gBAA+wB,EAA/wB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0HAA0H,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,wGAAwG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8HAA8H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAGzwB",
9
+ "debugId": "C5C875A21B6DBFE464756E2164756E21",
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
 
@@ -1321,9 +1322,13 @@ Below is a complete list of available icons:
1321
1322
  - IconLayoutDashboard
1322
1323
  - IconLayoutWindow
1323
1324
  - IconLayoutTop
1325
+ - IconLayoutTop1
1324
1326
  - IconLayoutBottom
1327
+ - IconLayoutBottom1
1325
1328
  - IconLayoutRight
1329
+ - IconLayoutRight1
1326
1330
  - IconLayoutLeft
1331
+ - IconLayoutLeft1
1327
1332
  - IconLayoutHalf
1328
1333
  - IconLayoutThird
1329
1334
  - IconLayoutGrid1
@@ -1375,6 +1380,9 @@ Below is a complete list of available icons:
1375
1380
  - IconLayoutAlignTopBottom
1376
1381
  - IconGrid
1377
1382
  - IconGridBox
1383
+ - IconLayoutAllSides
1384
+ - IconLayoutLeftRight
1385
+ - IconLayoutTopBottom
1378
1386
 
1379
1387
  ### Location
1380
1388
 
@@ -1841,6 +1849,7 @@ Below is a complete list of available icons:
1841
1849
  - IconBitcoinCircle
1842
1850
  - IconSwift
1843
1851
  - IconSiriGen2
1852
+ - IconQwik
1844
1853
 
1845
1854
  ### Sound & Music
1846
1855