@central-icons-react-native/round-filled-radius-3-stroke-1 1.1.286 → 1.1.288

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 (86) 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/IconLayoutBottom/index.js +2 -2
  7. package/IconLayoutBottom/index.js.map +3 -3
  8. package/IconLayoutBottom/index.mjs +2 -2
  9. package/IconLayoutBottom/index.mjs.map +3 -3
  10. package/IconLayoutBottomFull/index.d.ts +4 -0
  11. package/IconLayoutBottomFull/index.js +3 -0
  12. package/IconLayoutBottomFull/index.js.map +11 -0
  13. package/IconLayoutBottomFull/index.mjs +3 -0
  14. package/IconLayoutBottomFull/index.mjs.map +11 -0
  15. package/IconLayoutHalfFull/index.d.ts +4 -0
  16. package/IconLayoutHalfFull/index.js +3 -0
  17. package/IconLayoutHalfFull/index.js.map +11 -0
  18. package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs +2 -2
  19. package/IconLayoutHalfFull/index.mjs.map +11 -0
  20. package/IconLayoutLeft/index.js +2 -2
  21. package/IconLayoutLeft/index.js.map +3 -3
  22. package/IconLayoutLeft/index.mjs +2 -2
  23. package/IconLayoutLeft/index.mjs.map +3 -3
  24. package/IconLayoutLeftFull/index.d.ts +4 -0
  25. package/IconLayoutLeftFull/index.js +3 -0
  26. package/IconLayoutLeftFull/index.js.map +11 -0
  27. package/IconLayoutLeftFull/index.mjs +3 -0
  28. package/IconLayoutLeftFull/index.mjs.map +11 -0
  29. package/IconLayoutLeftRight/index.d.ts +4 -0
  30. package/IconLayoutLeftRight/index.js +3 -0
  31. package/IconLayoutLeftRight/index.js.map +11 -0
  32. package/IconLayoutLeftRight/index.mjs +3 -0
  33. package/IconLayoutLeftRight/index.mjs.map +11 -0
  34. package/IconLayoutRight/index.js +2 -2
  35. package/IconLayoutRight/index.js.map +3 -3
  36. package/IconLayoutRight/index.mjs +2 -2
  37. package/IconLayoutRight/index.mjs.map +3 -3
  38. package/IconLayoutRightFull/index.d.ts +4 -0
  39. package/IconLayoutRightFull/index.js +3 -0
  40. package/IconLayoutRightFull/index.js.map +11 -0
  41. package/IconLayoutRightFull/index.mjs +3 -0
  42. package/IconLayoutRightFull/index.mjs.map +11 -0
  43. package/IconLayoutThirdFull/index.d.ts +4 -0
  44. package/IconLayoutThirdFull/index.js +3 -0
  45. package/{IconLayoutThird → IconLayoutThirdFull}/index.js.map +4 -4
  46. package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs +2 -2
  47. package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs.map +4 -4
  48. package/IconLayoutTop/index.js +2 -2
  49. package/IconLayoutTop/index.js.map +3 -3
  50. package/IconLayoutTop/index.mjs +2 -2
  51. package/IconLayoutTop/index.mjs.map +3 -3
  52. package/IconLayoutTopBottom/index.d.ts +4 -0
  53. package/IconLayoutTopBottom/index.js +3 -0
  54. package/IconLayoutTopBottom/index.js.map +11 -0
  55. package/IconLayoutTopBottom/index.mjs +3 -0
  56. package/IconLayoutTopBottom/index.mjs.map +11 -0
  57. package/IconLayoutTopFull/index.d.ts +4 -0
  58. package/IconLayoutTopFull/index.js +3 -0
  59. package/IconLayoutTopFull/index.js.map +11 -0
  60. package/IconLayoutTopFull/index.mjs +3 -0
  61. package/IconLayoutTopFull/index.mjs.map +11 -0
  62. package/IconQwik/index.d.ts +4 -0
  63. package/IconQwik/index.js +3 -0
  64. package/IconQwik/index.js.map +11 -0
  65. package/IconQwik/index.mjs +3 -0
  66. package/IconQwik/index.mjs.map +11 -0
  67. package/README.md +14 -6
  68. package/filtered-icons.json +1 -1
  69. package/icons/index.d.ts +1 -1
  70. package/icons/index.js +2 -2
  71. package/icons/index.js.map +3 -3
  72. package/icons/index.mjs +2 -2
  73. package/icons/index.mjs.map +3 -3
  74. package/icons-index.json +4 -4
  75. package/index.d.ts +10 -2
  76. package/index.js +30 -6
  77. package/index.mjs +10 -2
  78. package/license-check.js +1 -1
  79. package/package.json +1 -1
  80. package/skills/central-icons-react-native/SKILL.md +15 -7
  81. package/IconLayoutHalf/index.d.ts +0 -4
  82. package/IconLayoutHalf/index.js +0 -3
  83. package/IconLayoutHalf/index.js.map +0 -11
  84. package/IconLayoutHalf/index.mjs.map +0 -11
  85. package/IconLayoutThird/index.d.ts +0 -4
  86. package/IconLayoutThird/index.js +0 -3
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRightFull/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 IconLayoutRightFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H14L14 21L8.27778 21C7.45651 21 6.80954 21 6.28889 20.9575C5.75771 20.9141 5.31413 20.8239 4.91103 20.6185C4.25247 20.283 3.71703 19.7475 3.38148 19.089C3.17609 18.6859 3.08593 18.2423 3.04253 17.7111C2.99999 17.1905 3 16.5435 3 15.7222V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M15 21L15.7222 21C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V8.27778C21 7.45651 21 6.80954 20.9575 6.28889C20.9141 5.75771 20.8239 5.31413 20.6185 4.91103C20.283 4.25247 19.7475 3.71703 19.089 3.38148C18.6859 3.17609 18.2423 3.08593 17.7111 3.04253C17.1905 2.99999 16.5435 3 15.7222 3H15L15 21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRightFull;\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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAygC,EAAzgC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,geAAge,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,idAAid,KAAK,eAAc,CAAI,GAGngC",
9
+ "debugId": "249A132DDD89CB1164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as e}from"react-native-svg";var a=(o)=>{return C.createElement(t,{...o},C.createElement(e,{d:"M8.27779 3H14L14 21L8.27778 21C7.45651 21 6.80954 21 6.28889 20.9575C5.75771 20.9141 5.31413 20.8239 4.91103 20.6185C4.25247 20.283 3.71703 19.7475 3.38148 19.089C3.17609 18.6859 3.08593 18.2423 3.04253 17.7111C2.99999 17.1905 3 16.5435 3 15.7222V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z",fill:"currentColor"}),C.createElement(e,{d:"M15 21L15.7222 21C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V8.27778C21 7.45651 21 6.80954 20.9575 6.28889C20.9141 5.75771 20.8239 5.31413 20.6185 4.91103C20.283 4.25247 19.7475 3.71703 19.089 3.38148C18.6859 3.17609 18.2423 3.08593 17.7111 3.04253C17.1905 2.99999 16.5435 3 15.7222 3H15L15 21Z",fill:"currentColor"}))},P=a;export{P as default,a as IconLayoutRightFull};
2
+
3
+ //# debugId=80DC75C99AF2F9A164756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRightFull/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 IconLayoutRightFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H14L14 21L8.27778 21C7.45651 21 6.80954 21 6.28889 20.9575C5.75771 20.9141 5.31413 20.8239 4.91103 20.6185C4.25247 20.283 3.71703 19.7475 3.38148 19.089C3.17609 18.6859 3.08593 18.2423 3.04253 17.7111C2.99999 17.1905 3 16.5435 3 15.7222V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M15 21L15.7222 21C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V8.27778C21 7.45651 21 6.80954 20.9575 6.28889C20.9141 5.75771 20.8239 5.31413 20.6185 4.91103C20.283 4.25247 19.7475 3.71703 19.089 3.38148C18.6859 3.17609 18.2423 3.08593 17.7111 3.04253C17.1905 2.99999 16.5435 3 15.7222 3H15L15 21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRightFull;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAygC,EAAzgC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,geAAge,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,idAAid,KAAK,eAAc,CAAI,GAGngC",
9
+ "debugId": "80DC75C99AF2F9A164756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutThirdFull: FC<CentralIconBaseProps>;
4
+ export default IconLayoutThirdFull;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:v,defineProperty:e,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,L,I=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?F??=new WeakMap:L??=new WeakMap,s=f.get(r);if(s)return s}t=r!=null?h(v(r)):{};let p=o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t;for(let a of c(r))if(!i.call(p,a))e(p,a,{get:B.bind(r,a),enumerable:!0});if(n)f.set(r,p);return p},x=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!i.call(o,n))e(o,n,{get:B.bind(r,n),enumerable:!(t=y(r,n))||t.enumerable})}return u.set(r,o),o},u;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>m});module.exports=x(M);var d=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return d.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>w,IconLayoutThirdFull:()=>V});module.exports=x(Z);var l=I(require("react"));var C=require("react-native-svg"),V=(r)=>{return l.default.createElement(m,{...r},l.default.createElement(C.Path,{d:"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z",fill:"currentColor"}),l.default.createElement(C.Path,{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),l.default.createElement(C.Path,{d:"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z",fill:"currentColor"}))},w=V;
2
+
3
+ //# debugId=42AA5F7ED201656D64756E2164756E21
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThird/index.tsx"],
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThird: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z\" fill=\"currentColor\"/><Path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><Path d=\"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThird;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z\" fill=\"currentColor\"/><Path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><Path d=\"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\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,2ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAA+U,EAA/U,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGzU",
9
- "debugId": "7F0882984695FD4664756E2164756E21",
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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA+U,EAA/U,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGzU",
9
+ "debugId": "42AA5F7ED201656D64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";import{Svg as C}from"react-native-svg";var e=({children:t,size:r=24,...p})=>{return l.createElement(C,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as n}from"react-native-svg";var a=(t)=>{return o.createElement(e,{...t},o.createElement(n,{d:"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z",fill:"currentColor"}),o.createElement(n,{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),o.createElement(n,{d:"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z",fill:"currentColor"}))},d=a;export{d as default,a as IconLayoutThird};
1
+ import p from"react";import{Svg as C}from"react-native-svg";var e=({children:t,size:r=24,...l})=>{return p.createElement(C,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as n}from"react-native-svg";var a=(t)=>{return o.createElement(e,{...t},o.createElement(n,{d:"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z",fill:"currentColor"}),o.createElement(n,{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),o.createElement(n,{d:"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z",fill:"currentColor"}))},d=a;export{d as default,a as IconLayoutThirdFull};
2
2
 
3
- //# debugId=837E8C205B45E6C164756E2164756E21
3
+ //# debugId=04203F3205E102C964756E2164756E21
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThird/index.tsx"],
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThird: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z\" fill=\"currentColor\"/><Path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><Path d=\"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThird;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M5.5 3C4.11929 3 3 4.11929 3 5.5V8.25L21 8.25V5.5C21 4.11929 19.8807 3 18.5 3H5.5Z\" fill=\"currentColor\"/><Path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><Path d=\"M3 15.75V18.5C3 19.8807 4.11929 21 5.5 21H18.5C19.8807 21 21 19.8807 21 18.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA+U,EAA/U,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGzU",
9
- "debugId": "837E8C205B45E6C164756E2164756E21",
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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA+U,EAA/U,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGzU",
9
+ "debugId": "04203F3205E102C964756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var d=Object.create;var{getPrototypeOf:h,defineProperty:e,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var H,S,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?H??=new WeakMap:S??=new WeakMap,f=s.get(r);if(f)return f}C=r!=null?d(h(r)):{};let n=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let l of u(r))if(!i.call(n,l))e(n,l,{get:B.bind(r,l),enumerable:!0});if(t)s.set(r,n);return n},x=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!i.call(o,t))e(o,t,{get:B.bind(r,t),enumerable:!(C=F(r,t))||C.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function b(r,o){this[r]=V.bind(null,o)}var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:b.bind(o,C)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=x(w);var g=I(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return g.default.createElement(v.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};P(M,{default:()=>Z,IconLayoutTop:()=>y});module.exports=x(M);var p=I(require("react"));var m=require("react-native-svg"),y=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z",fill:"currentColor"}))},Z=y;
1
+ var d=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var H,S,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?H??=new WeakMap:S??=new WeakMap,f=s.get(r);if(f)return f}t=r!=null?d(h(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let l of u(r))if(!i.call(p,l))n(p,l,{get:B.bind(r,l),enumerable:!0});if(e)s.set(r,p);return p},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!i.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=F(r,e))||t.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>a});module.exports=x(M);var g=I(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return g.default.createElement(v.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var V={};P(V,{default:()=>Z,IconLayoutTop:()=>y});module.exports=x(V);var C=I(require("react"));var m=require("react-native-svg"),y=(r)=>{return C.default.createElement(a,{...r},C.default.createElement(m.Path,{d:"M3 9.5C3 7.567 4.567 6 6.5 6H17.5C19.433 6 21 7.56701 21 9.5V17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V9.5Z",fill:"currentColor"}),C.default.createElement(m.Path,{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},Z=y;
2
2
 
3
- //# debugId=F38CBBEA7FA70E9664756E2164756E21
3
+ //# debugId=9079176B38B18DF864756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/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 IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 9.5C3 7.567 4.567 6 6.5 6H17.5C19.433 6 21 7.56701 21 9.5V17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V9.5Z\" fill=\"currentColor\"/><Path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\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,wBAA2/B,EAA3/B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,ydAAyd,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,GAGr/B",
9
- "debugId": "F38CBBEA7FA70E9664756E2164756E21",
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,wBAAyV,EAAzV,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kIAAkI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGnV",
9
+ "debugId": "9079176B38B18DF864756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as e}from"react-native-svg";var a=(o)=>{return C.createElement(t,{...o},C.createElement(e,{d:"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z",fill:"currentColor"}),C.createElement(e,{d:"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTop};
1
+ import C from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return C.createElement(l,{...p,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 9.5C3 7.567 4.567 6 6.5 6H17.5C19.433 6 21 7.56701 21 9.5V17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V9.5Z",fill:"currentColor"}),t.createElement(n,{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTop};
2
2
 
3
- //# debugId=FE1B7F1FC3EB189364756E2164756E21
3
+ //# debugId=9E8E0BD60518CE6F64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/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 IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTop: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M3 9.5C3 7.567 4.567 6 6.5 6H17.5C19.433 6 21 7.56701 21 9.5V17.5C21 19.433 19.433 21 17.5 21H6.5C4.567 21 3 19.433 3 17.5V9.5Z\" fill=\"currentColor\"/><Path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\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,gBAA2/B,EAA3/B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,ydAAyd,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,GAGr/B",
9
- "debugId": "FE1B7F1FC3EB189364756E2164756E21",
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,gBAAyV,EAAzV,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kIAAkI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGnV",
9
+ "debugId": "9E8E0BD60518CE6F64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutTopBottom: FC<CentralIconBaseProps>;
4
+ export default IconLayoutTopBottom;
@@ -0,0 +1,3 @@
1
+ var v=Object.create;var{getPrototypeOf:y,defineProperty:e,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(o){return this[o]}var F,S,I=(o,r,t)=>{var n=o!=null&&typeof o==="object";if(n){var f=r?F??=new WeakMap:S??=new WeakMap,s=f.get(o);if(s)return s}t=o!=null?v(y(o)):{};let p=r||!o||!o.__esModule?e(t,"default",{value:o,enumerable:!0}):t;for(let a of u(o))if(!i.call(p,a))e(p,a,{get:B.bind(o,a),enumerable:!0});if(n)f.set(o,p);return p},x=(o)=>{var r=(c??=new WeakMap).get(o),t;if(r)return r;if(r=e({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of u(o))if(!i.call(r,n))e(r,n,{get:B.bind(o,n),enumerable:!(t=h(o,n))||t.enumerable})}return c.set(o,r),r},c;var b=(o)=>o;function M(o,r){this[o]=b.bind(null,r)}var P=(o,r)=>{for(var t in r)e(o,t,{get:r[t],enumerable:!0,configurable:!0,set:M.bind(r,t)})};var Z={};P(Z,{CentralIconBase:()=>m});module.exports=x(Z);var g=I(require("react")),H=require("react-native-svg"),m=({children:o,size:r=24,...t})=>{return g.default.createElement(H.Svg,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var w={};P(w,{default:()=>V,IconLayoutTopBottom:()=>d});module.exports=x(w);var C=I(require("react"));var l=require("react-native-svg"),d=(o)=>{return C.default.createElement(m,{...o},C.default.createElement(l.Path,{d:"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M17.5 6C19.433 6 21 7.567 21 9.5V14.5C21 16.433 19.433 18 17.5 18H6.5C4.567 18 3 16.433 3 14.5V9.5C3 7.567 4.567 6 6.5 6H17.5Z",fill:"currentColor"}),C.default.createElement(l.Path,{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z",fill:"currentColor"}))},V=d;
2
+
3
+ //# debugId=6E69FDEE77F3E28D64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/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 IconLayoutTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z\" fill=\"currentColor\"/><Path d=\"M17.5 6C19.433 6 21 7.567 21 9.5V14.5C21 16.433 19.433 18 17.5 18H6.5C4.567 18 3 16.433 3 14.5V9.5C3 7.567 4.567 6 6.5 6H17.5Z\" fill=\"currentColor\"/><Path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA+f,EAA/f,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yIAAyI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,CAAI,GAGzf",
9
+ "debugId": "6E69FDEE77F3E28D64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:o=24,...C})=>{return p.createElement(l,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t)};import r from"react";import{Path as n}from"react-native-svg";var a=(t)=>{return r.createElement(e,{...t},r.createElement(n,{d:"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z",fill:"currentColor"}),r.createElement(n,{d:"M17.5 6C19.433 6 21 7.567 21 9.5V14.5C21 16.433 19.433 18 17.5 18H6.5C4.567 18 3 16.433 3 14.5V9.5C3 7.567 4.567 6 6.5 6H17.5Z",fill:"currentColor"}),r.createElement(n,{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTopBottom};
2
+
3
+ //# debugId=6F96EF5BB23AFEDA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/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 IconLayoutTopBottom: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z\" fill=\"currentColor\"/><Path d=\"M17.5 6C19.433 6 21 7.567 21 9.5V14.5C21 16.433 19.433 18 17.5 18H6.5C4.567 18 3 16.433 3 14.5V9.5C3 7.567 4.567 6 6.5 6H17.5Z\" fill=\"currentColor\"/><Path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA+f,EAA/f,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yIAAyI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iIAAiI,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,CAAI,GAGzf",
9
+ "debugId": "6F96EF5BB23AFEDA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutTopFull: FC<CentralIconBaseProps>;
4
+ export default IconLayoutTopFull;
@@ -0,0 +1,3 @@
1
+ var F=Object.create;var{getPrototypeOf:d,defineProperty:e,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var H,S,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?H??=new WeakMap:S??=new WeakMap,f=s.get(r);if(f)return f}C=r!=null?F(d(r)):{};let n=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let l of u(r))if(!i.call(n,l))e(n,l,{get:B.bind(r,l),enumerable:!0});if(t)s.set(r,n);return n},x=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!i.call(o,t))e(o,t,{get:B.bind(r,t),enumerable:!(C=h(r,t))||C.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function b(r,o){this[r]=V.bind(null,o)}var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:b.bind(o,C)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=x(w);var g=I(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return g.default.createElement(v.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};P(M,{default:()=>Z,IconLayoutTopFull:()=>y});module.exports=x(M);var p=I(require("react"));var m=require("react-native-svg"),y=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z",fill:"currentColor"}))},Z=y;
2
+
3
+ //# debugId=6FA8706CDDA0A33064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/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 IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\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,6ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA2/B,EAA3/B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,ydAAyd,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,GAGr/B",
9
+ "debugId": "6FA8706CDDA0A33064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as e}from"react-native-svg";var a=(o)=>{return C.createElement(t,{...o},C.createElement(e,{d:"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z",fill:"currentColor"}),C.createElement(e,{d:"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTopFull};
2
+
3
+ //# debugId=2D341AF9B3CFE1B564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/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 IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.27779 3H15.7222C16.5435 3 17.1905 2.99999 17.7111 3.04253C18.2423 3.08593 18.6859 3.17609 19.089 3.38148C19.7475 3.71703 20.283 4.25247 20.6185 4.91103C20.8239 5.31413 20.9141 5.75771 20.9575 6.28889C21 6.80954 21 7.45651 21 8.27778V9H3V8.27779C3 7.45652 2.99999 6.80954 3.04253 6.28889C3.08593 5.75771 3.17609 5.31413 3.38148 4.91103C3.71703 4.25247 4.25247 3.71703 4.91103 3.38148C5.31413 3.17609 5.75771 3.08593 6.28889 3.04253C6.80954 2.99999 7.45653 3 8.27779 3Z\" fill=\"currentColor\"/><Path d=\"M3 10V15.7222C3 16.5435 2.99999 17.1905 3.04253 17.7111C3.08593 18.2423 3.17609 18.6859 3.38148 19.089C3.71703 19.7475 4.25247 20.283 4.91103 20.6185C5.31413 20.8239 5.75771 20.9141 6.28889 20.9575C6.80954 21 7.45651 21 8.27778 21H15.7222C16.5435 21 17.1905 21 17.7111 20.9575C18.2423 20.9141 18.6859 20.8239 19.089 20.6185C19.7475 20.283 20.283 19.7475 20.6185 19.089C20.8239 18.6859 20.9141 18.2423 20.9575 17.7111C21 17.1905 21 16.5435 21 15.7222V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA2/B,EAA3/B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,ydAAyd,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0cAA0c,KAAK,eAAc,CAAI,GAGr/B",
9
+ "debugId": "2D341AF9B3CFE1B564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconQwik: FC<CentralIconBaseProps>;
4
+ export default IconQwik;
@@ -0,0 +1,3 @@
1
+ var g=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function i(o){return this[o]}var F,M,u=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var a=r?F??=new WeakMap:M??=new WeakMap,m=a.get(o);if(m)return m}e=o!=null?g(h(o)):{};let L=r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e;for(let p of c(o))if(!f.call(L,p))n(L,p,{get:i.bind(o,p),enumerable:!0});if(t)a.set(o,L);return L},B=(o)=>{var r=(s??=new WeakMap).get(o),e;if(r)return r;if(r=n({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!f.call(r,t))n(r,t,{get:i.bind(o,t),enumerable:!(e=y(o,t))||e.enumerable})}return s.set(o,r),r},s;var S=(o)=>o;function Z(o,r){this[o]=S.bind(null,r)}var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0,configurable:!0,set:Z.bind(r,e)})};var b={};I(b,{CentralIconBase:()=>C});module.exports=B(b);var d=u(require("react")),v=require("react-native-svg"),C=({children:o,size:r=24,...e})=>{return d.default.createElement(v.Svg,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var w={};I(w,{default:()=>V,IconQwik:()=>P});module.exports=B(w);var l=u(require("react"));var x=require("react-native-svg"),P=(o)=>{return l.default.createElement(C,{...o},l.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z",fill:"currentColor"}))},V=P;
2
+
3
+ //# debugId=5DA13A27DFA942F064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/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 IconQwik: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\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,oECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAqC,CAAC,IAAU,CAC3D,OAAO,wBAAk6B,EAAl6B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG55B",
9
+ "debugId": "5DA13A27DFA942F064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import L from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...n})=>{return L.createElement(p,{...n,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};import t from"react";import{Path as C}from"react-native-svg";var l=(r)=>{return t.createElement(e,{...r},t.createElement(C,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z",fill:"currentColor"}))},v=l;export{v as default,l as IconQwik};
2
+
3
+ //# debugId=9F2A3986E7DA85F464756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/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 IconQwik: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\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,EAAqC,CAAC,IAAU,CAC3D,OAAO,gBAAk6B,EAAl6B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG55B",
9
+ "debugId": "9F2A3986E7DA85F464756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1321,12 +1321,12 @@ Below is a complete list of available icons:
1321
1321
  - IconLayoutTopbar
1322
1322
  - IconLayoutDashboard
1323
1323
  - IconLayoutWindow
1324
- - IconLayoutTop
1325
- - IconLayoutBottom
1326
- - IconLayoutRight
1327
- - IconLayoutLeft
1328
- - IconLayoutHalf
1329
- - IconLayoutThird
1324
+ - IconLayoutTopFull
1325
+ - IconLayoutBottomFull
1326
+ - IconLayoutRightFull
1327
+ - IconLayoutLeftFull
1328
+ - IconLayoutHalfFull
1329
+ - IconLayoutThirdFull
1330
1330
  - IconLayoutGrid1
1331
1331
  - IconLayoutGrid2
1332
1332
  - IconLayoutColumn
@@ -1376,6 +1376,13 @@ Below is a complete list of available icons:
1376
1376
  - IconLayoutAlignTopBottom
1377
1377
  - IconGrid
1378
1378
  - IconGridBox
1379
+ - IconLayoutAllSides
1380
+ - IconLayoutLeftRight
1381
+ - IconLayoutTopBottom
1382
+ - IconLayoutRight
1383
+ - IconLayoutLeft
1384
+ - IconLayoutTop
1385
+ - IconLayoutBottom
1379
1386
 
1380
1387
  ### Location
1381
1388
 
@@ -1842,6 +1849,7 @@ Below is a complete list of available icons:
1842
1849
  - IconBitcoinCircle
1843
1850
  - IconSwift
1844
1851
  - IconSiriGen2
1852
+ - IconQwik
1845
1853
 
1846
1854
  ### Sound & Music
1847
1855