@central-icons-react-native/round-filled-radius-0-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/{IconLayoutBottom1 → IconLayoutBottomFull}/index.js.map +4 -4
- package/IconLayoutBottomFull/index.mjs +3 -0
- package/{IconLayoutBottom1 → IconLayoutBottomFull}/index.mjs.map +4 -4
- package/IconLayoutHalfFull/index.d.ts +4 -0
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.js +2 -2
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.js.map +4 -4
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs +2 -2
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.mjs.map +4 -4
- 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/{IconLayoutLeft1 → IconLayoutLeftFull}/index.js.map +4 -4
- package/IconLayoutLeftFull/index.mjs +3 -0
- package/{IconLayoutLeft1 → IconLayoutLeftFull}/index.mjs.map +4 -4
- 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/{IconLayoutRight1 → IconLayoutRightFull}/index.js.map +4 -4
- package/IconLayoutRightFull/index.mjs +3 -0
- package/{IconLayoutRight1 → IconLayoutRightFull}/index.mjs.map +4 -4
- package/IconLayoutThirdFull/index.d.ts +4 -0
- package/IconLayoutThirdFull/index.js +3 -0
- package/{IconLayoutThird → IconLayoutThirdFull}/index.js.map +4 -4
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs +2 -2
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs.map +4 -4
- 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/{IconLayoutTop1 → IconLayoutTopFull}/index.js.map +4 -4
- package/IconLayoutTopFull/index.mjs +3 -0
- package/{IconLayoutTop1 → IconLayoutTopFull}/index.mjs.map +4 -4
- 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.mjs +0 -3
- package/IconLayoutHalf/index.d.ts +0 -4
- package/IconLayoutLeft1/index.d.ts +0 -4
- package/IconLayoutLeft1/index.js +0 -3
- package/IconLayoutLeft1/index.mjs +0 -3
- package/IconLayoutRight1/index.d.ts +0 -4
- package/IconLayoutRight1/index.js +0 -3
- package/IconLayoutRight1/index.mjs +0 -3
- package/IconLayoutThird/index.d.ts +0 -4
- package/IconLayoutThird/index.js +0 -3
- package/IconLayoutTop1/index.d.ts +0 -4
- package/IconLayoutTop1/index.js +0 -3
- package/IconLayoutTop1/index.mjs +0 -3
|
@@ -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=\"M3
|
|
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 8C3 7.73478 3.10543 7.4805 3.29297 7.29297C3.4805 7.10543 3.73478 7 4 7H20C20.5523 7 21 7.44772 21 8V20C21 20.2652 20.8946 20.5195 20.707 20.707C20.5195 20.8946 20.2652 21 20 21H4C3.44772 21 3 20.5523 3 20V8Z\" 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,wBAA+Z,EAA/Z,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAGzZ",
|
|
9
|
+
"debugId": "4245BF99A16AADC764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(n,{d:"M3 8C3 7.73478 3.10543 7.4805 3.29297 7.29297C3.4805 7.10543 3.73478 7 4 7H20C20.5523 7 21 7.44772 21 8V20C21 20.2652 20.8946 20.5195 20.707 20.707C20.5195 20.8946 20.2652 21 20 21H4C3.44772 21 3 20.5523 3 20V8Z",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=508D9A605D27B08B64756E2164756E21
|
|
@@ -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=\"M3
|
|
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 8C3 7.73478 3.10543 7.4805 3.29297 7.29297C3.4805 7.10543 3.73478 7 4 7H20C20.5523 7 21 7.44772 21 8V20C21 20.2652 20.8946 20.5195 20.707 20.707C20.5195 20.8946 20.2652 21 20 21H4C3.44772 21 3 20.5523 3 20V8Z\" 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,gBAA+Z,EAA/Z,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAGzZ",
|
|
9
|
+
"debugId": "508D9A605D27B08B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var S,V,I=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var s=o?S??=new WeakMap:V??=new WeakMap,f=s.get(r);if(f)return f}t=r!=null?F(d(r)):{};let p=o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t;for(let C of u(r))if(!i.call(p,C))n(p,C,{get:B.bind(r,C),enumerable:!0});if(e)s.set(r,p);return p},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!i.call(o,e))n(o,e,{get:B.bind(r,e),enumerable:!(t=h(r,e))||t.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function L(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0,configurable:!0,set:L.bind(o,t)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=x(w);var g=I(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...t})=>{return g.default.createElement(v.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};P(H,{default:()=>M,IconLayoutTopFull:()=>y});module.exports=x(H);var l=I(require("react"));var m=require("react-native-svg"),y=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{d:"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V9L3 9V4Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M3 11V20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20V11L3 11Z",fill:"currentColor"}))},M=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=3FBB11FE543A525264756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/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
|
|
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=\"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V9L3 9V4Z\" fill=\"currentColor\"/><Path d=\"M3 11V20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20V11L3 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\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,
|
|
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,6ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA0O,EAA1O,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qEAAqE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6EAA6E,KAAK,eAAc,CAAI,GAGpO",
|
|
9
|
+
"debugId": "3FBB11FE543A525264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";import{Svg as C}from"react-native-svg";var e=({children:o,size:r=24,...p})=>{return l.createElement(C,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},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 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V9L3 9V4Z",fill:"currentColor"}),t.createElement(n,{d:"M3 11V20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20V11L3 11Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=7904557FEA84723764756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/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
|
|
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=\"M3 4C3 3.44772 3.44772 3 4 3H20C20.5523 3 21 3.44772 21 4V9L3 9V4Z\" fill=\"currentColor\"/><Path d=\"M3 11V20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20V11L3 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\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,
|
|
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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA0O,EAA1O,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qEAAqE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6EAA6E,KAAK,eAAc,CAAI,GAGpO",
|
|
9
|
+
"debugId": "7904557FEA84723764756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
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 3H7C7.55228 3 8 3.44772 8 4V13.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 3H7C7.55228 3 8 3.44772 8 4V13.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 4H11C10.4477 4 10 4.44772 10 5V13C10 13.5523 10.4477 14 11 14H20C20.5523 14 21 13.5523 21 13V5C21 4.44772 20.5523 4 20 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=9A647E0C89B5B38464756E2164756E21
|
|
@@ -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 3H7C7.55228 3 8 3.44772 8 4V13.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 3H7C7.55228 3 8 3.44772 8 4V13.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 4H11C10.4477 4 10 4.44772 10 5V13C10 13.5523 10.4477 14 11 14H20C20.5523 14 21 13.5523 21 13V5C21 4.44772 20.5523 4 20 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": "9A647E0C89B5B38464756E2164756E21",
|
|
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 3H7C7.55228 3 8 3.44772 8 4V13.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 3H7C7.55228 3 8 3.44772 8 4V13.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 4H11C10.4477 4 10 4.44772 10 5V13C10 13.5523 10.4477 14 11 14H20C20.5523 14 21 13.5523 21 13V5C21 4.44772 20.5523 4 20 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=FBB6D86874394EC664756E2164756E21
|
|
@@ -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 3H7C7.55228 3 8 3.44772 8 4V13.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 3H7C7.55228 3 8 3.44772 8 4V13.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 4H11C10.4477 4 10 4.44772 10 5V13C10 13.5523 10.4477 14 11 14H20C20.5523 14 21 13.5523 21 13V5C21 4.44772 20.5523 4 20 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": "FBB6D86874394EC664756E2164756E21",
|
|
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
|
|