@central-icons-react/round-filled-radius-2-stroke-1 1.1.287 → 1.1.289
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconLayoutBottom/index.js +2 -2
- package/IconLayoutBottom/index.js.map +3 -3
- package/IconLayoutBottom/index.mjs +2 -2
- package/IconLayoutBottom/index.mjs.map +3 -3
- package/IconLayoutBottomFull/index.d.ts +4 -0
- package/IconLayoutBottomFull/index.js +3 -0
- package/IconLayoutBottomFull/index.js.map +11 -0
- package/IconLayoutBottomFull/index.mjs +3 -0
- package/IconLayoutBottomFull/index.mjs.map +11 -0
- package/IconLayoutHalfFull/index.d.ts +4 -0
- package/IconLayoutHalfFull/index.js +3 -0
- package/IconLayoutHalfFull/index.js.map +11 -0
- package/IconLayoutHalfFull/index.mjs +3 -0
- 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/{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/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/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/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 +0 -3
- 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.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.js.map +0 -11
- package/IconLayoutTop1/index.mjs +0 -3
- package/IconLayoutTop1/index.mjs.map +0 -11
|
@@ -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=\"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z\" fill=\"currentColor\"/><path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><path d=\"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z\" 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,wBAA6W,EAA7W,IAAqB,EAAO,UAAU,qBAAoB,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGvW",
|
|
9
|
+
"debugId": "6C251CC61F4043EC64756E2164756E21",
|
|
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:e=!0,style:s,...i})=>{return l.createElement("svg",{...i,"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:a,...s}},n&&!e&&l.createElement("title",null,n),o)};import t from"react";var C=(o)=>{return t.createElement(p,{...o,ariaLabel:"layout-third-full"},t.createElement("path",{d:"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z",fill:"currentColor"}),t.createElement("path",{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),t.createElement("path",{d:"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z",fill:"currentColor"}))},V=C;export{V as default,C as IconLayoutThirdFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=3E75E700F751883A64756E2164756E21
|
|
@@ -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=\"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z\" fill=\"currentColor\"/><path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><path d=\"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z\" 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,gBAA6W,EAA7W,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGvW",
|
|
9
|
+
"debugId": "3E75E700F751883A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:h,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function g(r){return this[r]}var P,V,d=(r,t,o)=>{var e=r!=null&&typeof r==="object";if(e){var n=t?P??=new WeakMap:V??=new WeakMap,l=n.get(r);if(l)return l}o=r!=null?I(h(r)):{};let p=t||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;for(let s of u(r))if(!f.call(p,s))a(p,s,{get:g.bind(r,s),enumerable:!0});if(e)n.set(r,p);return p},x=(r)=>{var t=(c??=new WeakMap).get(r),o;if(t)return t;if(t=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!f.call(t,e))a(t,e,{get:g.bind(r,e),enumerable:!(o=w(r,e))||o.enumerable})}return c.set(r,t),t},c;var b=(r)=>r;function v(r,t){this[r]=b.bind(null,t)}var y=(r,t)=>{for(var o in t)a(r,o,{get:t[o],enumerable:!0,configurable:!0,set:v.bind(t,o)})};var G={};y(G,{CentralIconBase:()=>m});module.exports=x(G);var i=d(require("react")),m=({children:r,size:t=24,ariaLabel:o,color:e,ariaHidden:n=!0,style:l,...p})=>{return i.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...l}},o&&!n&&i.default.createElement("title",null,o),r)};var S={};y(S,{default:()=>H,IconLayoutTop:()=>B});module.exports=x(S);var C=d(require("react"));var B=(r)=>{return C.default.createElement(m,{...r,ariaLabel:"layout-top, margin, padding"},C.default.createElement("path",{d:"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z",fill:"currentColor"}),C.default.createElement("path",{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},H=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=D2AAAED13A72DE4E64756E2164756E21
|
|
@@ -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=\"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z\" fill=\"currentColor\"/><path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></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,wBAA2Y,EAA3Y,IAAqB,EAAO,UAAU,+BAA8B,wBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGrY",
|
|
9
|
+
"debugId": "D2AAAED13A72DE4E64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";var a=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:o=!0,style:C,...s})=>{return p.createElement("svg",{...s,"aria-hidden":o,role:o?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:l,...C}},n&&!o&&p.createElement("title",null,n),t)};import e from"react";var i=(t)=>{return e.createElement(a,{...t,ariaLabel:"layout-top, margin, padding"},e.createElement("path",{d:"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z",fill:"currentColor"}),e.createElement("path",{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},d=i;export{d as default,i as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=9825CC9D52F4FE9664756E2164756E21
|
|
@@ -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=\"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z\" fill=\"currentColor\"/><path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></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,gBAA2Y,EAA3Y,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGrY",
|
|
9
|
+
"debugId": "9825CC9D52F4FE9664756E2164756E21",
|
|
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 B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:V}=Object,f=Object.prototype.hasOwnProperty;function g(r){return this[r]}var h,P,d=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?h??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}t=r!=null?B(I(r)):{};let C=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let s of c(r))if(!f.call(C,s))l(C,s,{get:g.bind(r,s),enumerable:!0});if(e)n.set(r,C);return C},w=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))l(o,e,{get:g.bind(r,e),enumerable:!(t=V(r,e))||t.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function v(r,o){this[r]=b.bind(null,o)}var x=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:v.bind(o,t)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=w(G);var i=d(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:p,...C})=>{return i.default.createElement("svg",{...C,"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,...p}},t&&!n&&i.default.createElement("title",null,t),r)};var S={};x(S,{default:()=>F,IconLayoutTopFull:()=>y});module.exports=w(S);var a=d(require("react"));var y=(r)=>{return a.default.createElement(m,{...r,ariaLabel:"layout-top-full, grid, window"},a.default.createElement("path",{d:"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z",fill:"currentColor"}),a.default.createElement("path",{d:"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z",fill:"currentColor"}))},F=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=88D22D1F9F18E12B64756E2164756E21
|
|
@@ -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=\"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z\" fill=\"currentColor\"/><path d=\"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z\" 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,wBAA0iC,EAA1iC,IAAqB,EAAO,UAAU,iCAAgC,wBAAC,OAAD,CAAM,EAAE,4dAA4d,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGpiC",
|
|
9
|
+
"debugId": "88D22D1F9F18E12B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";var l=({children:o,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...s})=>{return C.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:p,...a}},n&&!t&&C.createElement("title",null,n),o)};import e from"react";var i=(o)=>{return e.createElement(l,{...o,ariaLabel:"layout-top-full, grid, window"},e.createElement("path",{d:"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z",fill:"currentColor"}),e.createElement("path",{d:"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z",fill:"currentColor"}))},d=i;export{d as default,i as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=C3228D1D5E8B592564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
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 IconLayoutTopFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-full, grid, window\"><path d=\"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z\" fill=\"currentColor\"/><path d=\"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA0iC,EAA1iC,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,4dAA4d,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGpiC",
|
|
9
|
+
"debugId": "C3228D1D5E8B592564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var y=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:I}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var h,P,g=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?h??=new WeakMap:P??=new WeakMap,
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:I}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var h,P,g=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?h??=new WeakMap:P??=new WeakMap,p=n.get(e);if(p)return p}o=e!=null?y(B(e)):{};let C=r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o;for(let s of f(e))if(!u.call(C,s))l(C,s,{get:d.bind(e,s),enumerable:!0});if(t)n.set(e,C);return C},V=(e)=>{var r=(m??=new WeakMap).get(e),o;if(r)return r;if(r=l({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of f(e))if(!u.call(r,t))l(r,t,{get:d.bind(e,t),enumerable:!(o=I(e,t))||o.enumerable})}return m.set(e,r),r},m;var w=(e)=>e;function H(e,r){this[e]=w.bind(null,r)}var v=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0,configurable:!0,set:H.bind(r,o)})};var b={};v(b,{CentralIconBase:()=>c});module.exports=V(b);var i=g(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:p,...C})=>{return i.default.createElement("svg",{...C,"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:t,...p}},o&&!n&&i.default.createElement("title",null,o),e)};var G={};v(G,{default:()=>S,IconPackageDelivery:()=>x});module.exports=V(G);var a=g(require("react"));var x=(e)=>{return a.default.createElement(c,{...e,ariaLabel:"package-delivery"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 3C5.88071 3 7 4.11929 7 5.5V14C7 14.0099 6.99764 14.0196 6.99707 14.0293C8.55514 14.2277 9.79281 15.4494 10.0146 17H20.5C20.7761 17 21 17.2239 21 17.5C21 17.7761 20.7761 18 20.5 18H10.0146C9.77199 19.6961 8.31398 21 6.55078 21C4.61778 21 3.05078 19.433 3.05078 17.5C3.05078 15.753 4.33064 14.3045 6.00391 14.042C6.00275 14.0281 6 14.0142 6 14V5.5C6 4.67157 5.32843 4 4.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H4.5ZM6.55078 15C5.17007 15 4.05078 16.1193 4.05078 17.5C4.05078 18.8807 5.17007 20 6.55078 20C7.93149 20 9.05078 18.8807 9.05078 17.5C9.05078 16.1193 7.93149 15 6.55078 15Z",fill:"currentColor"}),a.default.createElement("path",{d:"M10 6.5C10 5.11929 11.1193 4 12.5 4H15V8.5C15 8.77614 15.2239 9 15.5 9C15.7761 9 16 8.77614 16 8.5V4H18.5C19.8807 4 21 5.11929 21 6.5V11.5C21 12.8807 19.8807 14 18.5 14H12.5C11.1193 14 10 12.8807 10 11.5V6.5Z",fill:"currentColor"}))},S=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=5045EBE84876CE6964756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 3C5.88071 3 7 4.11929 7 5.5V14C7 14.0099 6.99764 14.0196 6.99707 14.0293C8.55514 14.2277 9.79281 15.4494 10.0146 17H20.5C20.7761 17 21 17.2239 21 17.5C21 17.7761 20.7761 18 20.5 18H10.0146C9.77199 19.6961 8.31398 21 6.55078 21C4.61778 21 3.05078 19.433 3.05078 17.5C3.05078 15.753 4.33064 14.3045 6.00391 14.042C6.00275 14.0281 6 14.0142 6 14V5.5C6 4.67157 5.32843 4 4.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H4.5ZM6.55078 15C5.17007 15 4.05078 16.1193 4.05078 17.5C4.05078 18.8807 5.17007 20 6.55078 20C7.93149 20 9.05078 18.8807 9.05078 17.5C9.05078 16.1193 7.93149 15 6.55078 15Z\" fill=\"currentColor\"/><path d=\"M10 6.5C10 5.11929 11.1193 4 12.5 4H15V8.5C15 8.77614 15.2239 9 15.5 9C15.7761 9 16 8.77614 16 8.5V4H18.5C19.8807 4 21 5.11929 21 6.5V11.5C21 12.8807 19.8807 14 18.5 14H12.5C11.1193 14 10 12.8807 10 11.5V6.5Z\" fill=\"currentColor\"/></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,wBAA+8B,EAA/8B,IAAqB,EAAO,UAAU,oBAAmB,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,imBAAimB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,CAAI,GAGz8B",
|
|
9
|
+
"debugId": "5045EBE84876CE6964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import C from"react";var l=({children:r,size:e=24,ariaLabel:n,color:
|
|
1
|
+
import C from"react";var l=({children:r,size:e=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:a,...s})=>{return C.createElement("svg",{...s,"aria-hidden":o,role:o?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},n&&!o&&C.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(l,{...r,ariaLabel:"package-delivery"},t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 3C5.88071 3 7 4.11929 7 5.5V14C7 14.0099 6.99764 14.0196 6.99707 14.0293C8.55514 14.2277 9.79281 15.4494 10.0146 17H20.5C20.7761 17 21 17.2239 21 17.5C21 17.7761 20.7761 18 20.5 18H10.0146C9.77199 19.6961 8.31398 21 6.55078 21C4.61778 21 3.05078 19.433 3.05078 17.5C3.05078 15.753 4.33064 14.3045 6.00391 14.042C6.00275 14.0281 6 14.0142 6 14V5.5C6 4.67157 5.32843 4 4.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H4.5ZM6.55078 15C5.17007 15 4.05078 16.1193 4.05078 17.5C4.05078 18.8807 5.17007 20 6.55078 20C7.93149 20 9.05078 18.8807 9.05078 17.5C9.05078 16.1193 7.93149 15 6.55078 15Z",fill:"currentColor"}),t.createElement("path",{d:"M10 6.5C10 5.11929 11.1193 4 12.5 4H15V8.5C15 8.77614 15.2239 9 15.5 9C15.7761 9 16 8.77614 16 8.5V4H18.5C19.8807 4 21 5.11929 21 6.5V11.5C21 12.8807 19.8807 14 18.5 14H12.5C11.1193 14 10 12.8807 10 11.5V6.5Z",fill:"currentColor"}))},g=i;export{g as default,i as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=06A1B7E993DB7FCA64756E2164756E21
|
|
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.5 3C5.88071 3 7 4.11929 7 5.5V14C7 14.0099 6.99764 14.0196 6.99707 14.0293C8.55514 14.2277 9.79281 15.4494 10.0146 17H20.5C20.7761 17 21 17.2239 21 17.5C21 17.7761 20.7761 18 20.5 18H10.0146C9.77199 19.6961 8.31398 21 6.55078 21C4.61778 21 3.05078 19.433 3.05078 17.5C3.05078 15.753 4.33064 14.3045 6.00391 14.042C6.00275 14.0281 6 14.0142 6 14V5.5C6 4.67157 5.32843 4 4.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H4.5ZM6.55078 15C5.17007 15 4.05078 16.1193 4.05078 17.5C4.05078 18.8807 5.17007 20 6.55078 20C7.93149 20 9.05078 18.8807 9.05078 17.5C9.05078 16.1193 7.93149 15 6.55078 15Z\" fill=\"currentColor\"/><path d=\"M10 6.5C10 5.11929 11.1193 4 12.5 4H15V8.5C15 8.77614 15.2239 9 15.5 9C15.7761 9 16 8.77614 16 8.5V4H18.5C19.8807 4 21 5.11929 21 6.5V11.5C21 12.8807 19.8807 14 18.5 14H12.5C11.1193 14 10 12.8807 10 11.5V6.5Z\" fill=\"currentColor\"/></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,gBAA+8B,EAA/8B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,imBAAimB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,CAAI,GAGz8B",
|
|
9
|
+
"debugId": "06A1B7E993DB7FCA64756E2164756E21",
|
|
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
|
|