@central-icons-react-native/round-outlined-radius-1-stroke-1 1.1.287 → 1.1.289
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.
- package/IconLayoutBottom/index.js +2 -2
- package/IconLayoutBottom/index.js.map +3 -3
- package/IconLayoutBottom/index.mjs +2 -2
- package/IconLayoutBottom/index.mjs.map +3 -3
- package/IconLayoutBottomFull/index.d.ts +4 -0
- package/IconLayoutBottomFull/index.js +3 -0
- package/IconLayoutBottomFull/index.js.map +11 -0
- package/IconLayoutBottomFull/index.mjs +3 -0
- package/IconLayoutBottomFull/index.mjs.map +11 -0
- package/IconLayoutHalfFull/index.d.ts +4 -0
- package/IconLayoutHalfFull/index.js +3 -0
- package/IconLayoutHalfFull/index.js.map +11 -0
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs +2 -2
- package/IconLayoutHalfFull/index.mjs.map +11 -0
- package/IconLayoutLeft/index.js +2 -2
- package/IconLayoutLeft/index.js.map +3 -3
- package/IconLayoutLeft/index.mjs +2 -2
- package/IconLayoutLeft/index.mjs.map +3 -3
- package/IconLayoutLeftFull/index.d.ts +4 -0
- package/IconLayoutLeftFull/index.js +3 -0
- package/IconLayoutLeftFull/index.js.map +11 -0
- package/IconLayoutLeftFull/index.mjs +3 -0
- package/IconLayoutLeftFull/index.mjs.map +11 -0
- package/IconLayoutRight/index.js +2 -2
- package/IconLayoutRight/index.js.map +3 -3
- package/IconLayoutRight/index.mjs +2 -2
- package/IconLayoutRight/index.mjs.map +3 -3
- package/IconLayoutRightFull/index.d.ts +4 -0
- package/IconLayoutRightFull/index.js +3 -0
- package/IconLayoutRightFull/index.js.map +11 -0
- package/IconLayoutRightFull/index.mjs +3 -0
- package/IconLayoutRightFull/index.mjs.map +11 -0
- package/IconLayoutThirdFull/index.d.ts +4 -0
- package/IconLayoutThirdFull/index.js +3 -0
- package/IconLayoutThirdFull/index.js.map +11 -0
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs +2 -2
- package/IconLayoutThirdFull/index.mjs.map +11 -0
- package/IconLayoutTop/index.js +2 -2
- package/IconLayoutTop/index.js.map +3 -3
- package/IconLayoutTop/index.mjs +2 -2
- package/IconLayoutTop/index.mjs.map +3 -3
- package/IconLayoutTopFull/index.d.ts +4 -0
- package/IconLayoutTopFull/index.js +3 -0
- package/IconLayoutTopFull/index.js.map +11 -0
- package/IconLayoutTopFull/index.mjs +3 -0
- package/IconLayoutTopFull/index.mjs.map +11 -0
- package/IconPackageDelivery/index.js +2 -2
- package/IconPackageDelivery/index.js.map +3 -3
- package/IconPackageDelivery/index.mjs +2 -2
- package/IconPackageDelivery/index.mjs.map +3 -3
- package/README.md +10 -10
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +3 -3
- package/index.d.ts +6 -6
- package/index.js +18 -18
- package/index.mjs +6 -6
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +11 -11
- package/IconLayoutBottom1/index.d.ts +0 -4
- package/IconLayoutBottom1/index.js +0 -3
- package/IconLayoutBottom1/index.js.map +0 -11
- package/IconLayoutBottom1/index.mjs +0 -3
- package/IconLayoutBottom1/index.mjs.map +0 -11
- package/IconLayoutHalf/index.d.ts +0 -4
- package/IconLayoutHalf/index.js +0 -3
- package/IconLayoutHalf/index.js.map +0 -11
- package/IconLayoutHalf/index.mjs.map +0 -11
- package/IconLayoutLeft1/index.d.ts +0 -4
- package/IconLayoutLeft1/index.js +0 -3
- package/IconLayoutLeft1/index.js.map +0 -11
- package/IconLayoutLeft1/index.mjs +0 -3
- package/IconLayoutLeft1/index.mjs.map +0 -11
- package/IconLayoutRight1/index.d.ts +0 -4
- package/IconLayoutRight1/index.js +0 -3
- package/IconLayoutRight1/index.js.map +0 -11
- package/IconLayoutRight1/index.mjs +0 -3
- package/IconLayoutRight1/index.mjs.map +0 -11
- package/IconLayoutThird/index.d.ts +0 -4
- package/IconLayoutThird/index.js +0 -3
- package/IconLayoutThird/index.js.map +0 -11
- package/IconLayoutThird/index.mjs.map +0 -11
- package/IconLayoutTop1/index.d.ts +0 -4
- package/IconLayoutTop1/index.js +0 -3
- package/IconLayoutTop1/index.js.map +0 -11
- package/IconLayoutTop1/index.mjs +0 -3
- package/IconLayoutTop1/index.mjs.map +0 -11
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z\" 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,wBAAuxF,EAAvxF,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAGjxF",
|
|
9
|
+
"debugId": "58984ECAB2CC7CD964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";import{Svg as M}from"react-native-svg";var o=({children:L,size:C=24,...e})=>{return n.createElement(M,{...e,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},L)};import r from"react";import{Path as t}from"react-native-svg";var Z=(L)=>{return r.createElement(o,{...L},r.createElement(t,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),r.createElement(t,{d:"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z",fill:"currentColor"}))},i=Z;export{i as default,Z as IconLayoutRightFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=ECA7AD70F80F5BDE64756E2164756E21
|
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z\" 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,gBAAuxF,EAAvxF,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAGjxF",
|
|
9
|
+
"debugId": "ECA7AD70F80F5BDE64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:P,defineProperty:t,getOwnPropertyNames:a,getOwnPropertyDescriptor:d}=Object,m=Object.prototype.hasOwnProperty;function f(C){return this[C]}var g,h,s=(C,r,o)=>{var L=C!=null&&typeof C==="object";if(L){var V=r?g??=new WeakMap:h??=new WeakMap,l=V.get(C);if(l)return l}o=C!=null?x(P(C)):{};let Z=r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o;for(let e of a(C))if(!m.call(Z,e))t(Z,e,{get:f.bind(C,e),enumerable:!0});if(L)V.set(C,Z);return Z},u=(C)=>{var r=(p??=new WeakMap).get(C),o;if(r)return r;if(r=t({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var L of a(C))if(!m.call(r,L))t(r,L,{get:f.bind(C,L),enumerable:!(o=d(C,L))||o.enumerable})}return p.set(C,r),r},p;var v=(C)=>C;function y(C,r){this[C]=v.bind(null,r)}var c=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0,configurable:!0,set:y.bind(r,o)})};var F={};c(F,{CentralIconBase:()=>H});module.exports=u(F);var i=s(require("react")),B=require("react-native-svg"),H=({children:C,size:r=24,...o})=>{return i.default.createElement(B.Svg,{...o,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};var S={};c(S,{default:()=>b,IconLayoutThirdFull:()=>I});module.exports=u(S);var M=s(require("react"));var n=require("react-native-svg"),I=(C)=>{return M.default.createElement(H,{...C},M.default.createElement(n.Path,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),M.default.createElement(n.Path,{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),M.default.createElement(n.Path,{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},b=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=DCEB63B275E9462F64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><Path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\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,wBAAs7F,EAAt7F,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAGh7F",
|
|
9
|
+
"debugId": "DCEB63B275E9462F64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Z from"react";import{Svg as n}from"react-native-svg";var t=({children:o,size:C=24,...M})=>{return Z.createElement(n,{...M,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o)};import r from"react";import{Path as L}from"react-native-svg";var e=(o)=>{return r.createElement(t,{...o},r.createElement(L,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),r.createElement(L,{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),r.createElement(L,{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},
|
|
1
|
+
import Z from"react";import{Svg as n}from"react-native-svg";var t=({children:o,size:C=24,...M})=>{return Z.createElement(n,{...M,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o)};import r from"react";import{Path as L}from"react-native-svg";var e=(o)=>{return r.createElement(t,{...o},r.createElement(L,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),r.createElement(L,{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),r.createElement(L,{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},i=e;export{i as default,e as IconLayoutThirdFull};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=6B5A50D010FA05F164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThirdFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><Path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\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,gBAAs7F,EAAt7F,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAGh7F",
|
|
9
|
+
"debugId": "6B5A50D010FA05F164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var k=Object.create;var{getPrototypeOf:v,defineProperty:t,getOwnPropertyNames:l,getOwnPropertyDescriptor:y}=Object,f=Object.prototype.hasOwnProperty;function d(o){return this[o]}var h,F,B=(o,r,e)=>{var n=o!=null&&typeof o==="object";if(n){var u=r?h??=new WeakMap:F??=new WeakMap,c=u.get(o);if(c)return c}e=o!=null?k(v(o)):{};let p=r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e;for(let a of l(o))if(!f.call(p,a))t(p,a,{get:d.bind(o,a),enumerable:!0});if(n)u.set(o,p);return p},I=(o)=>{var r=(i??=new WeakMap).get(o),e;if(r)return r;if(r=t({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var n of l(o))if(!f.call(r,n))t(r,n,{get:d.bind(o,n),enumerable:!(e=y(o,n))||e.enumerable})}return i.set(o,r),r},i;var S=(o)=>o;function b(o,r){this[o]=S.bind(null,r)}var L=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var j={};L(j,{CentralIconBase:()=>C});module.exports=I(j);var x=B(require("react")),P=require("react-native-svg"),C=({children:o,size:r=24,...e})=>{return x.default.createElement(P.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={};L(w,{default:()=>M,IconLayoutTop:()=>g});module.exports=I(w);var s=B(require("react"));var m=require("react-native-svg"),g=(o)=>{return s.default.createElement(C,{...o},s.default.createElement(m.Path,{d:"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(m.Path,{d:"M3.5 3.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},M=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=29F1F7D452E73F1E64756E2164756E21
|
|
@@ -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=\"M4.
|
|
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=\"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,
|
|
9
|
-
"debugId": "
|
|
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,wBAA0X,EAA1X,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpX",
|
|
9
|
+
"debugId": "29F1F7D452E73F1E64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var n=({children:r,size:o=24,...p})=>{return s.createElement(a,{...p,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 t}from"react-native-svg";var C=(r)=>{return e.createElement(n,{...r},e.createElement(t,{d:"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement(t,{d:"M3.5 3.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},x=C;export{x as default,C as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=3708526047AF42BC64756E2164756E21
|
|
@@ -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=\"M4.
|
|
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=\"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></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,
|
|
9
|
-
"debugId": "
|
|
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,gBAA0X,EAA1X,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpX",
|
|
9
|
+
"debugId": "3708526047AF42BC64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:P,defineProperty:t,getOwnPropertyNames:a,getOwnPropertyDescriptor:g}=Object,m=Object.prototype.hasOwnProperty;function s(C){return this[C]}var v,y,f=(C,r,o)=>{var L=C!=null&&typeof C==="object";if(L){var H=r?v??=new WeakMap:y??=new WeakMap,V=H.get(C);if(V)return V}o=C!=null?x(P(C)):{};let e=r||!C||!C.__esModule?t(o,"default",{value:C,enumerable:!0}):o;for(let M of a(C))if(!m.call(e,M))t(e,M,{get:s.bind(C,M),enumerable:!0});if(L)H.set(C,e);return e},c=(C)=>{var r=(l??=new WeakMap).get(C),o;if(r)return r;if(r=t({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var L of a(C))if(!m.call(r,L))t(r,L,{get:s.bind(C,L),enumerable:!(o=g(C,L))||o.enumerable})}return l.set(C,r),r},l;var F=(C)=>C;function d(C,r){this[C]=F.bind(null,r)}var u=(C,r)=>{for(var o in r)t(C,o,{get:r[o],enumerable:!0,configurable:!0,set:d.bind(r,o)})};var h={};u(h,{CentralIconBase:()=>Z});module.exports=c(h);var i=f(require("react")),B=require("react-native-svg"),Z=({children:C,size:r=24,...o})=>{return i.default.createElement(B.Svg,{...o,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};var S={};u(S,{default:()=>b,IconLayoutTopFull:()=>I});module.exports=c(S);var n=f(require("react"));var p=require("react-native-svg"),I=(C)=>{return n.default.createElement(Z,{...C},n.default.createElement(p.Path,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},b=I;
|
|
2
|
+
|
|
3
|
+
//# debugId=B42D948AE88D6C1164756E2164756E21
|
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" 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,wBAAsvF,EAAtvF,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAGhvF",
|
|
9
|
+
"debugId": "B42D948AE88D6C1164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";import{Svg as M}from"react-native-svg";var L=({children:r,size:C=24,...e})=>{return n.createElement(M,{...e,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r)};import o from"react";import{Path as t}from"react-native-svg";var Z=(r)=>{return o.createElement(L,{...r},o.createElement(t,{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),o.createElement(t,{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},i=Z;export{i as default,Z as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=E646B444DDC5A5C764756E2164756E21
|
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><Path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" 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,gBAAsvF,EAAtvF,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAGhvF",
|
|
9
|
+
"debugId": "E646B444DDC5A5C764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:v,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:j}=Object,l=Object.prototype.hasOwnProperty;function m(r){return this[r]}var y,H,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var a=o?y??=new WeakMap:H??=new WeakMap,d=a.get(r);if(d)return d}e=r!=null?x(v(r)):{};let C=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let i of k(r))if(!l.call(C,i))p(C,i,{get:m.bind(r,i),enumerable:!0});if(n)a.set(r,C);return C},f=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of k(r))if(!l.call(o,n))p(o,n,{get:m.bind(r,n),enumerable:!(e=j(r,n))||e.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function h(r,o){this[r]=M.bind(null,o)}var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:h.bind(o,e)})};var F={};B(F,{CentralIconBase:()=>u});module.exports=f(F);var I=L(require("react")),P=require("react-native-svg"),u=({children:r,size:o=24,...e})=>{return I.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 S={};B(S,{default:()=>V,IconPackageDelivery:()=>g});module.exports=f(S);var t=L(require("react"));var s=require("react-native-svg"),g=(r)=>{return t.default.createElement(u,{...r},t.default.createElement(s.Path,{d:"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M10 17.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(s.Path,{d:"M15.5 8.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},V=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=DC88A1A2F2A4FDBF64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/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 IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 17.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.5 8.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\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,+ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,wBAAs1B,EAAt1B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iLAAiL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kDAAkD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGh1B",
|
|
9
|
+
"debugId": "DC88A1A2F2A4FDBF64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import p from"react";import{Svg as C}from"react-native-svg";var
|
|
1
|
+
import p from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:r=24,...s})=>{return p.createElement(C,{...s,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import o from"react";import{Path as e}from"react-native-svg";var i=(n)=>{return o.createElement(t,{...n},o.createElement(e,{d:"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M10 17.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M15.5 8.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},I=i;export{I as default,i as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=D003F8969B38308D64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/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 IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPackageDelivery: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M10 17.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M15.5 8.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
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,gBAAs1B,EAAt1B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iLAAiL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,kDAAkD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGh1B",
|
|
9
|
+
"debugId": "D003F8969B38308D64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -1321,16 +1321,12 @@ Below is a complete list of available icons:
|
|
|
1321
1321
|
- IconLayoutTopbar
|
|
1322
1322
|
- IconLayoutDashboard
|
|
1323
1323
|
- IconLayoutWindow
|
|
1324
|
-
-
|
|
1325
|
-
-
|
|
1326
|
-
-
|
|
1327
|
-
-
|
|
1328
|
-
-
|
|
1329
|
-
-
|
|
1330
|
-
- IconLayoutLeft
|
|
1331
|
-
- IconLayoutLeft1
|
|
1332
|
-
- IconLayoutHalf
|
|
1333
|
-
- IconLayoutThird
|
|
1324
|
+
- IconLayoutTopFull
|
|
1325
|
+
- IconLayoutBottomFull
|
|
1326
|
+
- IconLayoutRightFull
|
|
1327
|
+
- IconLayoutLeftFull
|
|
1328
|
+
- IconLayoutHalfFull
|
|
1329
|
+
- IconLayoutThirdFull
|
|
1334
1330
|
- IconLayoutGrid1
|
|
1335
1331
|
- IconLayoutGrid2
|
|
1336
1332
|
- IconLayoutColumn
|
|
@@ -1383,6 +1379,10 @@ Below is a complete list of available icons:
|
|
|
1383
1379
|
- IconLayoutAllSides
|
|
1384
1380
|
- IconLayoutLeftRight
|
|
1385
1381
|
- IconLayoutTopBottom
|
|
1382
|
+
- IconLayoutRight
|
|
1383
|
+
- IconLayoutLeft
|
|
1384
|
+
- IconLayoutTop
|
|
1385
|
+
- IconLayoutBottom
|
|
1386
1386
|
|
|
1387
1387
|
### Location
|
|
1388
1388
|
|