@central-icons-react-native/round-filled-radius-3-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 11C3 8.79086 4.79086 7 7 7H17C19.2091 7 21 8.79086 21 11V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V11Z\" 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,wBAAsU,EAAtU,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,6HAA6H,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAGhU",
|
|
9
|
+
"debugId": "DF36B40790FE491664756E2164756E21",
|
|
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 11C3 8.79086 4.79086 7 7 7H17C19.2091 7 21 8.79086 21 11V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V11Z",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=AE97A9A55F94B79A64756E2164756E21
|
|
@@ -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 11C3 8.79086 4.79086 7 7 7H17C19.2091 7 21 8.79086 21 11V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V11Z\" 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,gBAAsU,EAAtU,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,6HAA6H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,CAAI,GAGhU",
|
|
9
|
+
"debugId": "AE97A9A55F94B79A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var F=Object.create;var{getPrototypeOf:d,defineProperty:e,getOwnPropertyNames:u,getOwnPropertyDescriptor:h}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var S,V,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?S??=new WeakMap:V??=new WeakMap,f=s.get(r);if(f)return f}C=r!=null?F(d(r)):{};let n=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let l of u(r))if(!i.call(n,l))e(n,l,{get:B.bind(r,l),enumerable:!0});if(t)s.set(r,n);return n},x=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!i.call(o,t))e(o,t,{get:B.bind(r,t),enumerable:!(C=h(r,t))||C.enumerable})}return c.set(r,o),o},c;var b=(r)=>r;function L(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:L.bind(o,C)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=x(w);var g=I(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return g.default.createElement(v.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};P(H,{default:()=>M,IconLayoutTopFull:()=>y});module.exports=x(H);var p=I(require("react"));var m=require("react-native-svg"),y=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43598C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74818C21 7.28936 21 7.95372 21 8.75868V9L3 9V8.7587C2.99999 7.95374 2.99998 7.28937 3.04419 6.74818C3.09012 6.18608 3.18868 5.66937 3.43598 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43598C5.66937 3.18868 6.18608 3.09012 6.74818 3.04419C7.28937 2.99998 7.95374 2.99999 8.7587 3Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M3 11V15.2413C2.99999 16.0463 2.99998 16.7106 3.04419 17.2518C3.09012 17.8139 3.18868 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66937 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V11L3 11Z",fill:"currentColor"}))},M=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=1FFF29C84E64003E64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43598C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74818C21 7.28936 21 7.95372 21 8.75868V9L3 9V8.7587C2.99999 7.95374 2.99998 7.28937 3.04419 6.74818C3.09012 6.18608 3.18868 5.66937 3.43598 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43598C5.66937 3.18868 6.18608 3.09012 6.74818 3.04419C7.28937 2.99998 7.95374 2.99999 8.7587 3Z\" fill=\"currentColor\"/><Path d=\"M3 11V15.2413C2.99999 16.0463 2.99998 16.7106 3.04419 17.2518C3.09012 17.8139 3.18868 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66937 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V11L3 11Z\" 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,wBAAqhC,EAArhC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,0eAA0e,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mdAAmd,KAAK,eAAc,CAAI,GAG/gC",
|
|
9
|
+
"debugId": "1FFF29C84E64003E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as e}from"react-native-svg";var a=(o)=>{return C.createElement(t,{...o},C.createElement(e,{d:"M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43598C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74818C21 7.28936 21 7.95372 21 8.75868V9L3 9V8.7587C2.99999 7.95374 2.99998 7.28937 3.04419 6.74818C3.09012 6.18608 3.18868 5.66937 3.43598 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43598C5.66937 3.18868 6.18608 3.09012 6.74818 3.04419C7.28937 2.99998 7.95374 2.99999 8.7587 3Z",fill:"currentColor"}),C.createElement(e,{d:"M3 11V15.2413C2.99999 16.0463 2.99998 16.7106 3.04419 17.2518C3.09012 17.8139 3.18868 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66937 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V11L3 11Z",fill:"currentColor"}))},g=a;export{g as default,a as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=35D2942256899A0164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconLayoutTopFull: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8.7587 3H15.2413C16.0463 2.99999 16.7106 2.99998 17.2518 3.04419C17.8139 3.09012 18.3306 3.18868 18.816 3.43598C19.5686 3.81947 20.1805 4.43139 20.564 5.18404C20.8113 5.66937 20.9099 6.18608 20.9558 6.74818C21 7.28936 21 7.95372 21 8.75868V9L3 9V8.7587C2.99999 7.95374 2.99998 7.28937 3.04419 6.74818C3.09012 6.18608 3.18868 5.66937 3.43598 5.18404C3.81947 4.43139 4.43139 3.81947 5.18404 3.43598C5.66937 3.18868 6.18608 3.09012 6.74818 3.04419C7.28937 2.99998 7.95374 2.99999 8.7587 3Z\" fill=\"currentColor\"/><Path d=\"M3 11V15.2413C2.99999 16.0463 2.99998 16.7106 3.04419 17.2518C3.09012 17.8139 3.18868 18.3306 3.43598 18.816C3.81947 19.5686 4.43139 20.1805 5.18404 20.564C5.66937 20.8113 6.18608 20.9099 6.74818 20.9558C7.28937 21 7.95372 21 8.75868 21H15.2413C16.0463 21 16.7106 21 17.2518 20.9558C17.8139 20.9099 18.3306 20.8113 18.816 20.564C19.5686 20.1805 20.1805 19.5686 20.564 18.816C20.8113 18.3306 20.9099 17.8139 20.9558 17.2518C21 16.7106 21 16.0463 21 15.2413V11L3 11Z\" 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,gBAAqhC,EAArhC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,0eAA0e,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mdAAmd,KAAK,eAAc,CAAI,GAG/gC",
|
|
9
|
+
"debugId": "35D2942256899A0164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var V=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:H}=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?V(y(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=H(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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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
|
|
1
|
+
var V=Object.create;var{getPrototypeOf:y,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:H}=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?V(y(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=H(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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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 4H14C11.7909 4 10 5.79086 10 8V10C10 12.2091 11.7909 14 14 14H17C19.2091 14 21 12.2091 21 10V8C21 5.79086 19.2091 4 17 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=9EC1C687196FDDD464756E2164756E21
|
|
@@ -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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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
|
|
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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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 4H14C11.7909 4 10 5.79086 10 8V10C10 12.2091 11.7909 14 14 14H17C19.2091 14 21 12.2091 21 10V8C21 5.79086 19.2091 4 17 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,wBAA6uB,EAA7uB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,waAAwa,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGvuB",
|
|
9
|
+
"debugId": "9EC1C687196FDDD464756E2164756E21",
|
|
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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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
|
|
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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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 4H14C11.7909 4 10 5.79086 10 8V10C10 12.2091 11.7909 14 14 14H17C19.2091 14 21 12.2091 21 10V8C21 5.79086 19.2091 4 17 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=8E011E015FE8775064756E2164756E21
|
|
@@ -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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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
|
|
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 3C6.20914 3 8 4.79086 8 7V13.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.126V7C6 5.89543 5.10457 5 4 5C3.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 4H14C11.7909 4 10 5.79086 10 8V10C10 12.2091 11.7909 14 14 14H17C19.2091 14 21 12.2091 21 10V8C21 5.79086 19.2091 4 17 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,gBAA6uB,EAA7uB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,waAAwa,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uMAAuM,KAAK,eAAc,CAAI,GAGvuB",
|
|
9
|
+
"debugId": "8E011E015FE8775064756E2164756E21",
|
|
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
|
|