@central-icons-react-native/round-filled-radius-1-stroke-2 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
|
@@ -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=\"
|
|
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 9C3 7.89543 3.89543 7 5 7H19C20.1046 7 21 7.89543 21 9V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V9Z\" fill=\"currentColor\"/><Path d=\"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4C21 4.55228 20.5523 5 20 5H4C3.44772 5 3 4.55228 3 4Z\" 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,
|
|
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,wBAAmU,EAAnU,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAG7T",
|
|
9
|
+
"debugId": "77BB2E9FCEE0B8ED64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
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 9C3 7.89543 3.89543 7 5 7H19C20.1046 7 21 7.89543 21 9V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V9Z",fill:"currentColor"}),t.createElement(n,{d:"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4C21 4.55228 20.5523 5 20 5H4C3.44772 5 3 4.55228 3 4Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=742B4E875B0874BE64756E2164756E21
|
|
@@ -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=\"
|
|
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 9C3 7.89543 3.89543 7 5 7H19C20.1046 7 21 7.89543 21 9V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19V9Z\" fill=\"currentColor\"/><Path d=\"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4C21 4.55228 20.5523 5 20 5H4C3.44772 5 3 4.55228 3 4Z\" 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,
|
|
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,gBAAmU,EAAnU,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAG7T",
|
|
9
|
+
"debugId": "742B4E875B0874BE64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:L,defineProperty:e,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function B(o){return this[o]}var S,b,I=(o,r,C)=>{var t=o!=null&&typeof o==="object";if(t){var m=r?S??=new WeakMap:b??=new WeakMap,s=m.get(o);if(s)return s}C=o!=null?F(L(o)):{};let n=r||!o||!o.__esModule?e(C,"default",{value:o,enumerable:!0}):C;for(let p of f(o))if(!u.call(n,p))e(n,p,{get:B.bind(o,p),enumerable:!0});if(t)m.set(o,n);return n},i=(o)=>{var r=(c??=new WeakMap).get(o),C;if(r)return r;if(r=e({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of f(o))if(!u.call(r,t))e(r,t,{get:B.bind(o,t),enumerable:!(C=h(o,t))||C.enumerable})}return c.set(o,r),r},c;var d=(o)=>o;function w(o,r){this[o]=d.bind(null,r)}var x=(o,r)=>{for(var C in r)e(o,C,{get:r[C],enumerable:!0,configurable:!0,set:w.bind(r,C)})};var H={};x(H,{CentralIconBase:()=>a});module.exports=i(H);var P=I(require("react")),g=require("react-native-svg"),a=({children:o,size:r=24,...C})=>{return P.default.createElement(g.Svg,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};var V={};x(V,{default:()=>$,IconLayoutTopFull:()=>y});module.exports=i(V);var l=I(require("react"));var v=require("react-native-svg"),y=(o)=>{return l.default.createElement(a,{...o},l.default.createElement(v.Path,{d:"M4.86178 3.01695C5.06993 2.99994 5.31573 2.99997 5.56811 3H18.4319C18.6843 2.99997 18.9301 2.99994 19.1382 3.01695C19.3668 3.03563 19.6366 3.07969 19.908 3.21799C20.2843 3.40974 20.5903 3.7157 20.782 4.09202C20.9203 4.36345 20.9644 4.63318 20.9831 4.86178C21.0001 5.06989 21 5.31573 21 5.56806V18.432C21 18.6844 21.0001 18.9301 20.9831 19.1382C20.9644 19.3668 20.9203 19.6366 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.6366 20.9203 19.3668 20.9644 19.1382 20.9831C18.9301 21.0001 18.6843 21 18.432 21H5.56797C5.31565 21 5.06989 21.0001 4.86178 20.9831C4.63318 20.9644 4.36345 20.9203 4.09202 20.782C3.7157 20.5903 3.40974 20.2843 3.21799 19.908C3.07969 19.6366 3.03563 19.3668 3.01695 19.1382C2.99994 18.9301 2.99997 18.6843 3 18.4319L3 11L21 11V9L3 9L3 5.56809C2.99997 5.31572 2.99994 5.06993 3.01695 4.86178C3.03563 4.63318 3.07969 4.36345 3.21799 4.09202C3.40974 3.7157 3.7157 3.40974 4.09202 3.21799C4.36345 3.07969 4.63318 3.03563 4.86178 3.01695Z",fill:"currentColor"}))},$=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=78CA164F023451BD64756E2164756E21
|
|
@@ -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.86178 3.01695C5.06993 2.99994 5.31573 2.99997 5.56811 3H18.4319C18.6843 2.99997 18.9301 2.99994 19.1382 3.01695C19.3668 3.03563 19.6366 3.07969 19.908 3.21799C20.2843 3.40974 20.5903 3.7157 20.782 4.09202C20.9203 4.36345 20.9644 4.63318 20.9831 4.86178C21.0001 5.06989 21 5.31573 21 5.56806V18.432C21 18.6844 21.0001 18.9301 20.9831 19.1382C20.9644 19.3668 20.9203 19.6366 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.6366 20.9203 19.3668 20.9644 19.1382 20.9831C18.9301 21.0001 18.6843 21 18.432 21H5.56797C5.31565 21 5.06989 21.0001 4.86178 20.9831C4.63318 20.9644 4.36345 20.9203 4.09202 20.782C3.7157 20.5903 3.40974 20.2843 3.21799 19.908C3.07969 19.6366 3.03563 19.3668 3.01695 19.1382C2.99994 18.9301 2.99997 18.6843 3 18.4319L3 11L21 11V9L3 9L3 5.56809C2.99997 5.31572 2.99994 5.06993 3.01695 4.86178C3.03563 4.63318 3.07969 4.36345 3.21799 4.09202C3.40974 3.7157 3.7157 3.40974 4.09202 3.21799C4.36345 3.07969 4.63318 3.03563 4.86178 3.01695Z\" 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,wBAA0gC,EAA1gC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+8BAA+8B,KAAK,eAAc,CAAI,GAGpgC",
|
|
9
|
+
"debugId": "78CA164F023451BD64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";import{Svg as p}from"react-native-svg";var C=({children:r,size:o=24,...e})=>{return n.createElement(p,{...e,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 a}from"react-native-svg";var l=(r)=>{return t.createElement(C,{...r},t.createElement(a,{d:"M4.86178 3.01695C5.06993 2.99994 5.31573 2.99997 5.56811 3H18.4319C18.6843 2.99997 18.9301 2.99994 19.1382 3.01695C19.3668 3.03563 19.6366 3.07969 19.908 3.21799C20.2843 3.40974 20.5903 3.7157 20.782 4.09202C20.9203 4.36345 20.9644 4.63318 20.9831 4.86178C21.0001 5.06989 21 5.31573 21 5.56806V18.432C21 18.6844 21.0001 18.9301 20.9831 19.1382C20.9644 19.3668 20.9203 19.6366 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.6366 20.9203 19.3668 20.9644 19.1382 20.9831C18.9301 21.0001 18.6843 21 18.432 21H5.56797C5.31565 21 5.06989 21.0001 4.86178 20.9831C4.63318 20.9644 4.36345 20.9203 4.09202 20.782C3.7157 20.5903 3.40974 20.2843 3.21799 19.908C3.07969 19.6366 3.03563 19.3668 3.01695 19.1382C2.99994 18.9301 2.99997 18.6843 3 18.4319L3 11L21 11V9L3 9L3 5.56809C2.99997 5.31572 2.99994 5.06993 3.01695 4.86178C3.03563 4.63318 3.07969 4.36345 3.21799 4.09202C3.40974 3.7157 3.7157 3.40974 4.09202 3.21799C4.36345 3.07969 4.63318 3.03563 4.86178 3.01695Z",fill:"currentColor"}))},g=l;export{g as default,l as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=2E78FA78E521F31364756E2164756E21
|
|
@@ -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.86178 3.01695C5.06993 2.99994 5.31573 2.99997 5.56811 3H18.4319C18.6843 2.99997 18.9301 2.99994 19.1382 3.01695C19.3668 3.03563 19.6366 3.07969 19.908 3.21799C20.2843 3.40974 20.5903 3.7157 20.782 4.09202C20.9203 4.36345 20.9644 4.63318 20.9831 4.86178C21.0001 5.06989 21 5.31573 21 5.56806V18.432C21 18.6844 21.0001 18.9301 20.9831 19.1382C20.9644 19.3668 20.9203 19.6366 20.782 19.908C20.5903 20.2843 20.2843 20.5903 19.908 20.782C19.6366 20.9203 19.3668 20.9644 19.1382 20.9831C18.9301 21.0001 18.6843 21 18.432 21H5.56797C5.31565 21 5.06989 21.0001 4.86178 20.9831C4.63318 20.9644 4.36345 20.9203 4.09202 20.782C3.7157 20.5903 3.40974 20.2843 3.21799 19.908C3.07969 19.6366 3.03563 19.3668 3.01695 19.1382C2.99994 18.9301 2.99997 18.6843 3 18.4319L3 11L21 11V9L3 9L3 5.56809C2.99997 5.31572 2.99994 5.06993 3.01695 4.86178C3.03563 4.63318 3.07969 4.36345 3.21799 4.09202C3.40974 3.7157 3.7157 3.40974 4.09202 3.21799C4.36345 3.07969 4.63318 3.03563 4.86178 3.01695Z\" 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,gBAA0gC,EAA1gC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+8BAA+8B,KAAK,eAAc,CAAI,GAGpgC",
|
|
9
|
+
"debugId": "2E78FA78E521F31364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,F,v=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var c=o?h??=new WeakMap:F??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?H(V(r)):{};let t=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of i(r))if(!u.call(t,p))n(t,p,{get:d.bind(r,p),enumerable:!0});if(C)c.set(r,t);return t},B=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of i(r))if(!u.call(o,C))n(o,C,{get:d.bind(r,C),enumerable:!(e=y(r,C))||e.enumerable})}return s.set(r,o),o},s;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};I(M,{CentralIconBase:()=>a});module.exports=B(M);var P=v(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(g.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 Z={};I(Z,{default:()=>w,IconPackageDelivery:()=>x});module.exports=B(Z);var l=v(require("react"));var m=require("react-native-svg"),x=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"
|
|
1
|
+
var H=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,F,v=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var c=o?h??=new WeakMap:F??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?H(V(r)):{};let t=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of i(r))if(!u.call(t,p))n(t,p,{get:d.bind(r,p),enumerable:!0});if(C)c.set(r,t);return t},B=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of i(r))if(!u.call(o,C))n(o,C,{get:d.bind(r,C),enumerable:!(e=y(r,C))||e.enumerable})}return s.set(r,o),o},s;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var I=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};I(M,{CentralIconBase:()=>a});module.exports=B(M);var P=v(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(g.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 Z={};I(Z,{default:()=>w,IconPackageDelivery:()=>x});module.exports=B(Z);var l=v(require("react"));var m=require("react-native-svg"),x=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M14.5 4H12C10.8954 4 10 4.89543 10 6V12C10 13.1046 10.8954 14 12 14H19C20.1046 14 21 13.1046 21 12V6C21 4.89543 20.1046 4 19 4H16.5V8C16.5 8.55228 16.0523 9 15.5 9C14.9477 9 14.5 8.55228 14.5 8V4Z",fill:"currentColor"}))},w=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=40EC878CA9AC94B064756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z\" fill=\"currentColor\"/><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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z\" fill=\"currentColor\"/><Path d=\"M14.5 4H12C10.8954 4 10 4.89543 10 6V12C10 13.1046 10.8954 14 12 14H19C20.1046 14 21 13.1046 21 12V6C21 4.89543 20.1046 4 19 4H16.5V8C16.5 8.55228 16.0523 9 15.5 9C14.9477 9 14.5 8.55228 14.5 8V4Z\" fill=\"currentColor\"/></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,wBAAytB,EAAztB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oZAAoZ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGntB",
|
|
9
|
+
"debugId": "40EC878CA9AC94B064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import l from"react";import{Svg as p}from"react-native-svg";var C=({children:o,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return e.createElement(C,{...o},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z",fill:"currentColor"}),e.createElement(n,{d:"
|
|
1
|
+
import l from"react";import{Svg as p}from"react-native-svg";var C=({children:o,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return e.createElement(C,{...o},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z",fill:"currentColor"}),e.createElement(n,{d:"M14.5 4H12C10.8954 4 10 4.89543 10 6V12C10 13.1046 10.8954 14 12 14H19C20.1046 14 21 13.1046 21 12V6C21 4.89543 20.1046 4 19 4H16.5V8C16.5 8.55228 16.0523 9 15.5 9C14.9477 9 14.5 8.55228 14.5 8V4Z",fill:"currentColor"}))},P=a;export{P as default,a as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=CDB9AAD1E25A047564756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z\" fill=\"currentColor\"/><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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4C3 3.44772 3.44772 3 4 3H6C7.10457 3 8 3.89543 8 5V13.126C9.40561 13.4878 10.5122 14.5944 10.874 16H20C20.5523 16 21 16.4477 21 17C21 17.5523 20.5523 18 20 18H10.874C10.4299 19.7252 8.86384 21 7 21C4.79086 21 3 19.2091 3 17C3 15.1362 4.27477 13.5701 6 13.126V5H4C3.44772 5 3 4.55228 3 4ZM7 15C8.10457 15 9 15.8954 9 17C9 18.1046 8.10457 19 7 19C5.89543 19 5 18.1046 5 17C5 15.8954 5.89543 15 7 15Z\" fill=\"currentColor\"/><Path d=\"M14.5 4H12C10.8954 4 10 4.89543 10 6V12C10 13.1046 10.8954 14 12 14H19C20.1046 14 21 13.1046 21 12V6C21 4.89543 20.1046 4 19 4H16.5V8C16.5 8.55228 16.0523 9 15.5 9C14.9477 9 14.5 8.55228 14.5 8V4Z\" fill=\"currentColor\"/></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,gBAAytB,EAAztB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oZAAoZ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGntB",
|
|
9
|
+
"debugId": "CDB9AAD1E25A047564756E2164756E21",
|
|
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
|
|