@central-icons-react/round-outlined-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/{IconLayoutTop1 → 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/IconLayoutHalfFull/index.js +3 -0
- package/{IconLayoutHalf → IconLayoutHalfFull}/index.js.map +4 -4
- package/IconLayoutHalfFull/index.mjs +3 -0
- 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/IconLayoutThirdFull/index.mjs +3 -0
- 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/{IconLayoutBottom1 → IconLayoutTopFull}/index.d.ts +2 -2
- package/IconLayoutTopFull/index.js +3 -0
- package/{IconLayoutBottom1 → 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/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/SKILL.md +11 -11
- package/IconLayoutBottom1/index.js +0 -3
- package/IconLayoutBottom1/index.mjs +0 -3
- package/IconLayoutHalf/index.d.ts +0 -4
- package/IconLayoutHalf/index.js +0 -3
- package/IconLayoutHalf/index.mjs +0 -3
- 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/IconLayoutThird/index.mjs +0 -3
- package/IconLayoutTop1/index.d.ts +0 -4
- package/IconLayoutTop1/index.js +0 -3
- package/IconLayoutTop1/index.mjs +0 -3
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M20 15.67H21V13.67H20V15.67ZM4 13.67H3V15.67H4V13.67ZM4 15.67H20V13.67H4V15.67Z\" fill=\"currentColor\"/><path d=\"M20 10.33H21V8.32996H20V10.33ZM4 8.32996H3V10.33H4V8.32996ZM4 10.33H20V8.32996H4V10.33Z\" fill=\"currentColor\"/><path d=\"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAAwhB,EAAxhB,IAAqB,EAAO,UAAU,qBAAoB,wBAAC,OAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yNAAyN,KAAK,eAAc,CAAI,GAGlhB",
|
|
9
|
+
"debugId": "03F10161CD43A7DA64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var V=({children:o,size:r=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:a,...H})=>{return l.createElement("svg",{...H,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},n&&!e&&l.createElement("title",null,n),o)};import t from"react";var s=(o)=>{return t.createElement(V,{...o,ariaLabel:"layout-third-full"},t.createElement("path",{d:"M20 15.67H21V13.67H20V15.67ZM4 13.67H3V15.67H4V13.67ZM4 15.67H20V13.67H4V15.67Z",fill:"currentColor"}),t.createElement("path",{d:"M20 10.33H21V8.32996H20V10.33ZM4 8.32996H3V10.33H4V8.32996ZM4 10.33H20V8.32996H4V10.33Z",fill:"currentColor"}),t.createElement("path",{d:"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z",fill:"currentColor"}))},Z=s;export{Z as default,s as IconLayoutThirdFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=6A3B3C6056C927B464756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M20 15.67H21V13.67H20V15.67ZM4 13.67H3V15.67H4V13.67ZM4 15.67H20V13.67H4V15.67Z\" fill=\"currentColor\"/><path d=\"M20 10.33H21V8.32996H20V10.33ZM4 8.32996H3V10.33H4V8.32996ZM4 10.33H20V8.32996H4V10.33Z\" fill=\"currentColor\"/><path d=\"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAwhB,EAAxhB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,kFAAkF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yNAAyN,KAAK,eAAc,CAAI,GAGlhB",
|
|
9
|
+
"debugId": "6A3B3C6056C927B464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:y,defineProperty:a,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,d=Object.prototype.hasOwnProperty;function g(o){return this[o]}var I,w,f=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var n=r?I??=new WeakMap:w??=new WeakMap,s=n.get(o);if(s)return s}t=o!=null?x(y(o)):{};let p=r||!o||!o.__esModule?a(t,"default",{value:o,enumerable:!0}):t;for(let l of c(o))if(!d.call(p,l))a(p,l,{get:g.bind(o,l),enumerable:!0});if(e)n.set(o,p);return p},h=(o)=>{var r=(C??=new WeakMap).get(o),t;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!d.call(r,e))a(r,e,{get:g.bind(o,e),enumerable:!(t=B(o,e))||t.enumerable})}return C.set(o,r),r},C;var P=(o)=>o;function b(o,r){this[o]=P.bind(null,r)}var L=(o,r)=>{for(var t in r)a(o,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var V={};L(V,{CentralIconBase:()=>m});module.exports=h(V);var u=f(require("react")),m=({children:o,size:r=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:s,...p})=>{return u.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...s}},t&&!n&&u.default.createElement("title",null,t),o)};var v={};L(v,{default:()=>G,IconLayoutTop:()=>k});module.exports=h(v);var i=f(require("react"));var k=(o)=>{return i.default.createElement(m,{...o,ariaLabel:"layout-top, margin, padding"},i.default.createElement("path",{d:"M5 20C4.44772 20 4 19.5523 4 19L4 9C4 8.44772 4.44772 8 5 8L19 8C19.5523 8 20 8.44772 20 9V19C20 19.5523 19.5523 20 19 20L5 20Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("path",{d:"M4 4H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=k;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=CF99AC12FA4E319464756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top, margin, padding\"><path d=\"M5 20C4.44772 20 4 19.5523 4 19L4 9C4 8.44772 4.44772 8 5 8L19 8C19.5523 8 20 8.44772 20 9V19C20 19.5523 19.5523 20 19 20L5 20Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA0Y,EAA1Y,IAAqB,EAAO,UAAU,+BAA8B,wBAAC,OAAD,CAAM,EAAE,kIAAkI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpY",
|
|
9
|
+
"debugId": "CF99AC12FA4E319464756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import p from"react";var
|
|
1
|
+
import p from"react";var a=({children:r,size:o=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:i,...l})=>{return p.createElement("svg",{...l,"aria-hidden":t,role:t?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...i}},n&&!t&&p.createElement("title",null,n),r)};import e from"react";var u=(r)=>{return e.createElement(a,{...r,ariaLabel:"layout-top, margin, padding"},e.createElement("path",{d:"M5 20C4.44772 20 4 19.5523 4 19L4 9C4 8.44772 4.44772 8 5 8L19 8C19.5523 8 20 8.44772 20 9V19C20 19.5523 19.5523 20 19 20L5 20Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M4 4H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},f=u;export{f as default,u as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8A3C8DC2AB7D340064756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top, margin, padding\"><path d=\"M5 20C4.44772 20 4 19.5523 4 19L4 9C4 8.44772 4.44772 8 5 8L19 8C19.5523 8 20 8.44772 20 9V19C20 19.5523 19.5523 20 19 20L5 20Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA0Y,EAA1Y,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,kIAAkI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpY",
|
|
9
|
+
"debugId": "8A3C8DC2AB7D340064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconLayoutTopFull: React.FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconLayoutTopFull;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var d=Object.create;var{getPrototypeOf:w,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:x}=Object,u=Object.prototype.hasOwnProperty;function c(r){return this[r]}var y,B,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?y??=new WeakMap:B??=new WeakMap,a=n.get(r);if(a)return a}t=r!=null?d(w(r)):{};let l=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let s of m(r))if(!u.call(l,s))p(l,s,{get:c.bind(r,s),enumerable:!0});if(e)n.set(r,l);return l},M=(r)=>{var o=(C??=new WeakMap).get(r),t;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of m(r))if(!u.call(o,e))p(o,e,{get:c.bind(r,e),enumerable:!(t=x(r,e))||t.enumerable})}return C.set(r,o),o},C;var I=(r)=>r;function h(r,o){this[r]=I.bind(null,o)}var Z=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:h.bind(o,t)})};var P={};Z(P,{CentralIconBase:()=>i});module.exports=M(P);var H=f(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:a,...l})=>{return H.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...a}},t&&!n&&H.default.createElement("title",null,t),r)};var b={};Z(b,{default:()=>v,IconLayoutTopFull:()=>g});module.exports=M(b);var V=f(require("react"));var g=(r)=>{return V.default.createElement(i,{...r,ariaLabel:"layout-top-full, grid, window"},V.default.createElement("path",{d:"M20 11H21V9H20V11ZM4 9H3V11H4V9ZM4 11H20V9H4V11Z",fill:"currentColor"}),V.default.createElement("path",{d:"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z",fill:"currentColor"}))},v=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=390788D063517D5664756E2164756E21
|
|
@@ -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 from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTopFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-full, grid, window\"><path d=\"M20 11H21V9H20V11ZM4 9H3V11H4V9ZM4 11H20V9H4V11Z\" fill=\"currentColor\"/><path d=\"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,6ECjCY,IAAlB,sBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,6ECjCY,IAAlB,sBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,wBAA8Y,EAA9Y,IAAqB,EAAO,UAAU,iCAAgC,wBAAC,OAAD,CAAM,EAAE,mDAAmD,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yNAAyN,KAAK,eAAc,CAAI,GAGxY",
|
|
9
|
+
"debugId": "390788D063517D5664756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:V,...s})=>{return l.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...V}},n&&!t&&l.createElement("title",null,n),o)};import e from"react";var H=(o)=>{return e.createElement(p,{...o,ariaLabel:"layout-top-full, grid, window"},e.createElement("path",{d:"M20 11H21V9H20V11ZM4 9H3V11H4V9ZM4 11H20V9H4V11Z",fill:"currentColor"}),e.createElement("path",{d:"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z",fill:"currentColor"}))},f=H;export{f as default,H as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=68869F10142F224064756E2164756E21
|
|
@@ -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 from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTopFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-full, grid, window\"><path d=\"M20 11H21V9H20V11ZM4 9H3V11H4V9ZM4 11H20V9H4V11Z\" fill=\"currentColor\"/><path d=\"M19 5V19H21V5H19ZM19 19H5V21H19V19ZM5 19V5H3V19H5ZM5 5H19V3H5V5ZM5 5V5V3C3.89543 3 3 3.89543 3 5H5ZM5 19H3C3 20.1046 3.89543 21 5 21V19ZM19 19V21C20.1046 21 21 20.1046 21 19H19ZM21 5C21 3.89543 20.1046 3 19 3V5H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA8Y,EAA9Y,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,mDAAmD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yNAAyN,KAAK,eAAc,CAAI,GAGxY",
|
|
9
|
+
"debugId": "68869F10142F224064756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:y,defineProperty:p,getOwnPropertyNames:k,getOwnPropertyDescriptor:B}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var I,V,m=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?I??=new WeakMap:V??=new WeakMap,a=s.get(r);if(a)return a}e=r!=null?x(y(r)):{};let i=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let d of k(r))if(!c.call(i,d))p(i,d,{get:h.bind(r,d),enumerable:!0});if(t)s.set(r,i);return i},L=(r)=>{var o=(C??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of k(r))if(!c.call(o,t))p(o,t,{get:h.bind(r,t),enumerable:!(e=B(r,t))||e.enumerable})}return C.set(r,o),o},C;var P=(r)=>r;function v(r,o){this[r]=P.bind(null,o)}var g=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:v.bind(o,e)})};var w={};g(w,{CentralIconBase:()=>u});module.exports=L(w);var l=m(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:s=!0,style:a,...i})=>{return l.default.createElement("svg",{...i,"aria-hidden":s,role:s?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...a}},e&&!s&&l.default.createElement("title",null,e),r)};var b={};g(b,{default:()=>j,IconPackageDelivery:()=>f});module.exports=L(b);var n=m(require("react"));var f=(r)=>{return n.default.createElement(u,{...r,ariaLabel:"package-delivery"},n.default.createElement("path",{d:"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M11 6C11 5.44772 11.4477 5 12 5H19C19.5523 5 20 5.44772 20 6V12C20 12.5523 19.5523 13 19 13H12C11.4477 13 11 12.5523 11 12V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4 4H6C6.55228 4 7 4.44772 7 5V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M10 17H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M15.5 8V5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},j=f;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=A8B773AA02C8B21364756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11 6C11 5.44772 11.4477 5 12 5H19C19.5523 5 20 5.44772 20 6V12C20 12.5523 19.5523 13 19 13H12C11.4477 13 11 12.5523 11 12V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H6C6.55228 4 7 4.44772 7 5V14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 17H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.5 8V5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAAwzB,EAAxzB,IAAqB,EAAO,UAAU,oBAAmB,wBAAC,OAAD,CAAM,EAAE,qHAAqH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gIAAgI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,oCAAoC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlzB",
|
|
9
|
+
"debugId": "A8B773AA02C8B21364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import s from"react";var i=({children:e,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...d})=>{return s.createElement("svg",{...d,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},n&&!t&&s.createElement("title",null,n),e)};import o from"react";var l=(e)=>{return o.createElement(i,{...e,ariaLabel:"package-delivery"},o.createElement("path",{d:"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M11 6C11 5.44772 11.4477 5 12 5H19C19.5523 5 20 5.44772 20 6V12C20 12.5523 19.5523 13 19 13H12C11.4477 13 11 12.5523 11 12V6Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M4 4H6C6.55228 4 7 4.44772 7 5V14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M10 17H20",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M15.5 8V5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},m=l;export{m as default,l as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=175E2F74B368EE2C64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"M10 17C10 18.6569 8.65685 20 7 20C5.34315 20 4 18.6569 4 17C4 15.3431 5.34315 14 7 14C8.65685 14 10 15.3431 10 17Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11 6C11 5.44772 11.4477 5 12 5H19C19.5523 5 20 5.44772 20 6V12C20 12.5523 19.5523 13 19 13H12C11.4477 13 11 12.5523 11 12V6Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M4 4H6C6.55228 4 7 4.44772 7 5V14\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 17H20\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.5 8V5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAwzB,EAAxzB,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,qHAAqH,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gIAAgI,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,oCAAoC,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlzB",
|
|
9
|
+
"debugId": "175E2F74B368EE2C64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -1355,16 +1355,12 @@ Below is a complete list of available icons:
|
|
|
1355
1355
|
- IconLayoutTopbar
|
|
1356
1356
|
- IconLayoutDashboard
|
|
1357
1357
|
- IconLayoutWindow
|
|
1358
|
-
-
|
|
1359
|
-
-
|
|
1360
|
-
-
|
|
1361
|
-
-
|
|
1362
|
-
-
|
|
1363
|
-
-
|
|
1364
|
-
- IconLayoutLeft
|
|
1365
|
-
- IconLayoutLeft1
|
|
1366
|
-
- IconLayoutHalf
|
|
1367
|
-
- IconLayoutThird
|
|
1358
|
+
- IconLayoutTopFull
|
|
1359
|
+
- IconLayoutBottomFull
|
|
1360
|
+
- IconLayoutRightFull
|
|
1361
|
+
- IconLayoutLeftFull
|
|
1362
|
+
- IconLayoutHalfFull
|
|
1363
|
+
- IconLayoutThirdFull
|
|
1368
1364
|
- IconLayoutGrid1
|
|
1369
1365
|
- IconLayoutGrid2
|
|
1370
1366
|
- IconLayoutColumn
|
|
@@ -1417,6 +1413,10 @@ Below is a complete list of available icons:
|
|
|
1417
1413
|
- IconLayoutAllSides
|
|
1418
1414
|
- IconLayoutLeftRight
|
|
1419
1415
|
- IconLayoutTopBottom
|
|
1416
|
+
- IconLayoutRight
|
|
1417
|
+
- IconLayoutLeft
|
|
1418
|
+
- IconLayoutTop
|
|
1419
|
+
- IconLayoutBottom
|
|
1420
1420
|
|
|
1421
1421
|
### Location
|
|
1422
1422
|
|