@central-icons-react/round-outlined-radius-1-stroke-1 1.1.286 → 1.1.288
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/IconLayoutAllSides/index.d.ts +4 -0
- package/IconLayoutAllSides/index.js +3 -0
- package/IconLayoutAllSides/index.js.map +11 -0
- package/IconLayoutAllSides/index.mjs +3 -0
- package/IconLayoutAllSides/index.mjs.map +11 -0
- 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/{IconLayoutHalf/index.mjs → IconLayoutBottomFull/index.js} +2 -2
- 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/IconLayoutLeftRight/index.d.ts +4 -0
- package/IconLayoutLeftRight/index.js +3 -0
- package/IconLayoutLeftRight/index.js.map +11 -0
- package/IconLayoutLeftRight/index.mjs +3 -0
- package/IconLayoutLeftRight/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/IconLayoutThirdFull/index.mjs +3 -0
- 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/IconLayoutTopBottom/index.d.ts +4 -0
- package/IconLayoutTopBottom/index.js +3 -0
- package/IconLayoutTopBottom/index.js.map +11 -0
- package/IconLayoutTopBottom/index.mjs +3 -0
- package/IconLayoutTopBottom/index.mjs.map +11 -0
- 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/IconQwik/index.d.ts +4 -0
- package/IconQwik/index.js +3 -0
- package/IconQwik/index.js.map +11 -0
- package/IconQwik/index.mjs +3 -0
- package/IconQwik/index.mjs.map +11 -0
- package/README.md +14 -6
- 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 +4 -4
- package/index.d.ts +10 -2
- package/index.js +30 -6
- package/index.mjs +10 -2
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +15 -7
- 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/IconLayoutThird/index.d.ts +0 -4
- package/IconLayoutThird/index.js +0 -3
- package/IconLayoutThird/index.js.map +0 -11
- package/IconLayoutThird/index.mjs +0 -3
- package/IconLayoutThird/index.mjs.map +0 -11
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutLeftRight/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 IconLayoutLeftRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-left-right, margin, padding\"><path d=\"M6.5 4.5C6.5 3.94772 6.94772 3.5 7.5 3.5L16.5 3.5C17.0523 3.5 17.5 3.94772 17.5 4.5L17.5 19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H7.5C6.94772 20.5 6.5 20.0523 6.5 19.5L6.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutLeftRight;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAqgB,EAArgB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,mLAAmL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG/f",
|
|
9
|
+
"debugId": "E730418ED97AC3E264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconLayoutRight/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,d=Object.prototype.hasOwnProperty;function g(r){return this[r]}var k,w,f=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?k??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}t=r!=null?y(B(r)):{};let a=o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let l of c(r))if(!d.call(a,l))p(a,l,{get:g.bind(r,l),enumerable:!0});if(e)n.set(r,a);return a},h=(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 c(r))if(!d.call(o,e))p(o,e,{get:g.bind(r,e),enumerable:!(t=I(r,e))||t.enumerable})}return C.set(r,o),o},C;var P=(r)=>r;function b(r,o){this[r]=P.bind(null,o)}var L=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var V={};L(V,{CentralIconBase:()=>m});module.exports=h(V);var u=f(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:s,...a})=>{return u.default.createElement("svg",{...a,"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,...s}},t&&!n&&u.default.createElement("title",null,t),r)};var v={};L(v,{default:()=>G,IconLayoutRight:()=>x});module.exports=h(v);var i=f(require("react"));var x=(r)=>{return i.default.createElement(m,{...r,ariaLabel:"layout-right, margin, padding"},i.default.createElement("path",{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L16.5 3.5C17.0523 3.5 17.5 3.94772 17.5 4.5L17.5 19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("path",{d:"M20.5 3.5V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=x;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=85D1586B80A6752164756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRight/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 IconLayoutRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right, margin, padding\"><path d=\"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L16.5 3.5C17.0523 3.5 17.5 3.94772 17.5 4.5L17.5 19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRight;\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,2ECjCY,IAAlB,sBAGO,IAAM,EAAkD,CAAC,IAAU,CACxE,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,2ECjCY,IAAlB,sBAGO,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,wBAAoa,EAApa,IAAqB,EAAO,UAAU,iCAAgC,wBAAC,OAAD,CAAM,EAAE,mLAAmL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG9Z",
|
|
9
|
+
"debugId": "85D1586B80A6752164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import a from"react";var p=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:i,...l})=>{return a.createElement("svg",{...l,"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:s,...i}},n&&!t&&a.createElement("title",null,n),o)};import e from"react";var u=(o)=>{return e.createElement(p,{...o,ariaLabel:"layout-right, margin, padding"},e.createElement("path",{d:"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L16.5 3.5C17.0523 3.5 17.5 3.94772 17.5 4.5L17.5 19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M20.5 3.5V20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=u;export{f as default,u as IconLayoutRight};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E9BF61BADF2D405E64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRight/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 IconLayoutRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right, margin, padding\"><path d=\"M3.5 4.5C3.5 3.94772 3.94772 3.5 4.5 3.5L16.5 3.5C17.0523 3.5 17.5 3.94772 17.5 4.5L17.5 19.5C17.5 20.0523 17.0523 20.5 16.5 20.5H4.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 4.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5V20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRight;\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,EAAkD,CAAC,IAAU,CACxE,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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAoa,EAApa,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,mLAAmL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG9Z",
|
|
9
|
+
"debugId": "E9BF61BADF2D405E64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:h,defineProperty:n,getOwnPropertyNames:V,getOwnPropertyDescriptor:d}=Object,i=Object.prototype.hasOwnProperty;function H(C){return this[C]}var w,x,m=(C,r,L)=>{var t=C!=null&&typeof C==="object";if(t){var o=r?w??=new WeakMap:x??=new WeakMap,l=o.get(C);if(l)return l}L=C!=null?g(h(C)):{};let e=r||!C||!C.__esModule?n(L,"default",{value:C,enumerable:!0}):L;for(let Z of V(C))if(!i.call(e,Z))n(e,Z,{get:H.bind(C,Z),enumerable:!0});if(t)o.set(C,e);return e},u=(C)=>{var r=(s??=new WeakMap).get(C),L;if(r)return r;if(r=n({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var t of V(C))if(!i.call(r,t))n(r,t,{get:H.bind(C,t),enumerable:!(L=d(C,t))||L.enumerable})}return s.set(C,r),r},s;var y=(C)=>C;function B(C,r){this[C]=y.bind(null,r)}var c=(C,r)=>{for(var L in r)n(C,L,{get:r[L],enumerable:!0,configurable:!0,set:B.bind(r,L)})};var I={};c(I,{CentralIconBase:()=>a});module.exports=u(I);var p=m(require("react")),a=({children:C,size:r=24,ariaLabel:L,color:t,ariaHidden:o=!0,style:l,...e})=>{return p.default.createElement("svg",{...e,"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:t,...l}},L&&!o&&p.default.createElement("title",null,L),C)};var P={};c(P,{default:()=>b,IconLayoutRightFull:()=>f});module.exports=u(P);var M=m(require("react"));var f=(C)=>{return M.default.createElement(a,{...C,ariaLabel:"layout-right-full, grid, window"},M.default.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),M.default.createElement("path",{d:"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z",fill:"currentColor"}))},b=f;
|
|
2
|
+
|
|
3
|
+
//# debugId=F6F7E14A7AC5454264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRightFull/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 IconLayoutRightFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right-full, grid, window\"><path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRightFull;\n"
|
|
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,wBAAm0F,EAAn0F,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAG7zF",
|
|
9
|
+
"debugId": "F6F7E14A7AC5454264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import e from"react";var n=({children:r,size:C=24,ariaLabel:o,color:l,ariaHidden:L=!0,style:M,...Z})=>{return e.createElement("svg",{...Z,"aria-hidden":L,role:L?void 0:"img",width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...M}},o&&!L&&e.createElement("title",null,o),r)};import t from"react";var p=(r)=>{return t.createElement(n,{...r,ariaLabel:"layout-right-full, grid, window"},t.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),t.createElement("path",{d:"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z",fill:"currentColor"}))},m=p;export{m as default,p as IconLayoutRightFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=4BD91D7E80EFCCFB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutRightFull/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 IconLayoutRightFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-right-full, grid, window\"><path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M14 20.5L14 21H15L15 20.5H14ZM15 3.5L15 3L14 3L14 3.5L15 3.5ZM15 20.5L15 3.5L14 3.5L14 20.5H15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutRightFull;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAm0F,EAAn0F,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kGAAkG,KAAK,eAAc,CAAI,GAG7zF",
|
|
9
|
+
"debugId": "4BD91D7E80EFCCFB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:a,getOwnPropertyDescriptor:g}=Object,s=Object.prototype.hasOwnProperty;function i(C){return this[C]}var x,y,u=(C,r,t)=>{var o=C!=null&&typeof C==="object";if(o){var e=r?x??=new WeakMap:y??=new WeakMap,M=e.get(C);if(M)return M}t=C!=null?h(d(C)):{};let L=r||!C||!C.__esModule?n(t,"default",{value:C,enumerable:!0}):t;for(let V of a(C))if(!s.call(L,V))n(L,V,{get:i.bind(C,V),enumerable:!0});if(o)e.set(C,L);return L},m=(C)=>{var r=(H??=new WeakMap).get(C),t;if(r)return r;if(r=n({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var o of a(C))if(!s.call(r,o))n(r,o,{get:i.bind(C,o),enumerable:!(t=g(C,o))||t.enumerable})}return H.set(C,r),r},H;var B=(C)=>C;function I(C,r){this[C]=B.bind(null,r)}var f=(C,r)=>{for(var t in r)n(C,t,{get:r[t],enumerable:!0,configurable:!0,set:I.bind(r,t)})};var w={};f(w,{CentralIconBase:()=>p});module.exports=m(w);var Z=u(require("react")),p=({children:C,size:r=24,ariaLabel:t,color:o,ariaHidden:e=!0,style:M,...L})=>{return Z.default.createElement("svg",{...L,"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:o,...M}},t&&!e&&Z.default.createElement("title",null,t),C)};var P={};f(P,{default:()=>b,IconLayoutThirdFull:()=>c});module.exports=m(P);var l=u(require("react"));var c=(C)=>{return l.default.createElement(p,{...C,ariaLabel:"layout-third-full"},l.default.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),l.default.createElement("path",{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),l.default.createElement("path",{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},b=c;
|
|
2
|
+
|
|
3
|
+
//# debugId=4C2306008C0DD52864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
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,wBAAo9F,EAAp9F,IAAqB,EAAO,UAAU,qBAAoB,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAG98F",
|
|
9
|
+
"debugId": "4C2306008C0DD52864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import L from"react";var n=({children:t,size:C=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:M,...V})=>{return L.createElement("svg",{...V,"aria-hidden":o,role:o?void 0:"img",width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...M}},e&&!o&&L.createElement("title",null,e),t)};import r from"react";var Z=(t)=>{return r.createElement(n,{...t,ariaLabel:"layout-third-full"},r.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),r.createElement("path",{d:"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z",fill:"currentColor"}),r.createElement("path",{d:"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z",fill:"currentColor"}))},u=Z;export{u as default,Z as IconLayoutThirdFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=FAD8E19F123989EB64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/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 IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M20.5 15.1699H21V14.1699H20.5V15.1699ZM3.5 14.1699H3V15.1699H3.5V14.1699ZM3.5 15.1699H20.5V14.1699H3.5V15.1699Z\" fill=\"currentColor\"/><path d=\"M20.5 9.83008H21V8.83008H20.5V9.83008ZM3.5 8.83008H3V9.83008H3.5V8.83008ZM3.5 9.83008H20.5V8.83008H3.5V9.83008Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAo9F,EAAp9F,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kHAAkH,KAAK,eAAc,CAAI,GAG98F",
|
|
9
|
+
"debugId": "FAD8E19F123989EB64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,d=Object.prototype.hasOwnProperty;function g(o){return this[o]}var k,w,f=(o,r,e)=>{var t=o!=null&&typeof o==="object";if(t){var n=r?k??=new WeakMap:w??=new WeakMap,s=n.get(o);if(s)return s}e=o!=null?B(I(o)):{};let p=r||!o||!o.__esModule?a(e,"default",{value:o,enumerable:!0}):e;for(let i of c(o))if(!d.call(p,i))a(p,i,{get:g.bind(o,i),enumerable:!0});if(t)n.set(o,p);return p},L=(o)=>{var r=(C??=new WeakMap).get(o),e;if(r)return r;if(r=a({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of c(o))if(!d.call(r,t))a(r,t,{get:g.bind(o,t),enumerable:!(e=h(o,t))||e.enumerable})}return C.set(o,r),r},C;var P=(o)=>o;function b(o,r){this[o]=P.bind(null,r)}var x=(o,r)=>{for(var e in r)a(o,e,{get:r[e],enumerable:!0,configurable:!0,set:b.bind(r,e)})};var V={};x(V,{CentralIconBase:()=>m});module.exports=L(V);var u=f(require("react")),m=({children:o,size:r=24,ariaLabel:e,color:t,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:t,...s}},e&&!n&&u.default.createElement("title",null,e),o)};var v={};x(v,{default:()=>G,IconLayoutTop:()=>y});module.exports=L(v);var l=f(require("react"));var y=(o)=>{return l.default.createElement(m,{...o,ariaLabel:"layout-top, margin, padding"},l.default.createElement("path",{d:"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M3.5 3.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=y;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=7FC6BF6D87FE9E6A64756E2164756E21
|
|
@@ -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=\"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 3.5H20.5\" stroke=\"currentColor\" 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,wBAAka,EAAla,IAAqB,EAAO,UAAU,+BAA8B,wBAAC,OAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5Z",
|
|
9
|
+
"debugId": "7FC6BF6D87FE9E6A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";var a=({children:r,size:o=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:l,...i})=>{return p.createElement("svg",{...i,"aria-hidden":e,role:e?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,...l}},n&&!e&&p.createElement("title",null,n),r)};import t from"react";var u=(r)=>{return t.createElement(a,{...r,ariaLabel:"layout-top, margin, padding"},t.createElement("path",{d:"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M3.5 3.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=u;export{f as default,u as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8BFDB566450103C164756E2164756E21
|
|
@@ -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=\"M4.5 20.5C3.94772 20.5 3.5 20.0523 3.5 19.5L3.5 7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V19.5C20.5 20.0523 20.0523 20.5 19.5 20.5L4.5 20.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 3.5H20.5\" stroke=\"currentColor\" 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,gBAAka,EAAla,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,oLAAoL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5Z",
|
|
9
|
+
"debugId": "8BFDB566450103C164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:x,defineProperty:a,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,d=Object.prototype.hasOwnProperty;function g(o){return this[o]}var I,b,L=(o,r,t)=>{var e=o!=null&&typeof o==="object";if(e){var n=r?I??=new WeakMap:b??=new WeakMap,i=n.get(o);if(i)return i}t=o!=null?h(x(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},f=(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=y(o,e))||t.enumerable})}return C.set(o,r),r},C;var w=(o)=>o;function P(o,r){this[o]=w.bind(null,r)}var k=(o,r)=>{for(var t in r)a(o,t,{get:r[t],enumerable:!0,configurable:!0,set:P.bind(r,t)})};var V={};k(V,{CentralIconBase:()=>m});module.exports=f(V);var u=L(require("react")),m=({children:o,size:r=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:i,...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,...i}},t&&!n&&u.default.createElement("title",null,t),o)};var v={};k(v,{default:()=>G,IconLayoutTopBottom:()=>B});module.exports=f(v);var s=L(require("react"));var B=(o)=>{return s.default.createElement(m,{...o,ariaLabel:"layout-top-bottom, margin, padding"},s.default.createElement("path",{d:"M19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5L4.5 17.5C3.94772 17.5 3.5 17.0523 3.5 16.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M20.5 20.5H3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement("path",{d:"M20.5 3.5H3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=B;
|
|
2
|
+
|
|
3
|
+
//# debugId=8E3920EE04A65B4164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/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 IconLayoutTopBottom: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-bottom, margin, padding\"><path d=\"M19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5L4.5 17.5C3.94772 17.5 3.5 17.0523 3.5 16.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 20.5H3.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5H3.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\n"
|
|
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,wBAAkgB,EAAlgB,IAAqB,EAAO,UAAU,sCAAqC,wBAAC,OAAD,CAAM,EAAE,gLAAgL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5f",
|
|
9
|
+
"debugId": "8E3920EE04A65B4164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";var a=({children:t,size:o=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:i,...l})=>{return p.createElement("svg",{...l,"aria-hidden":e,role:e?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&&!e&&p.createElement("title",null,n),t)};import r from"react";var u=(t)=>{return r.createElement(a,{...t,ariaLabel:"layout-top-bottom, margin, padding"},r.createElement("path",{d:"M19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5L4.5 17.5C3.94772 17.5 3.5 17.0523 3.5 16.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 20.5H3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 3.5H3.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=u;export{L as default,u as IconLayoutTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=08FC7BA72DC34F3A64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopBottom/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 IconLayoutTopBottom: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-bottom, margin, padding\"><path d=\"M19.5 6.5C20.0523 6.5 20.5 6.94772 20.5 7.5V16.5C20.5 17.0523 20.0523 17.5 19.5 17.5L4.5 17.5C3.94772 17.5 3.5 17.0523 3.5 16.5V7.5C3.5 6.94772 3.94772 6.5 4.5 6.5L19.5 6.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 20.5H3.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5H3.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopBottom;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAkgB,EAAlgB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,gLAAgL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5f",
|
|
9
|
+
"debugId": "08FC7BA72DC34F3A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var g=Object.create;var{getPrototypeOf:d,defineProperty:n,getOwnPropertyNames:H,getOwnPropertyDescriptor:w}=Object,s=Object.prototype.hasOwnProperty;function i(C){return this[C]}var x,y,m=(C,r,o)=>{var t=C!=null&&typeof C==="object";if(t){var e=r?x??=new WeakMap:y??=new WeakMap,l=e.get(C);if(l)return l}o=C!=null?g(d(C)):{};let L=r||!C||!C.__esModule?n(o,"default",{value:C,enumerable:!0}):o;for(let Z of H(C))if(!s.call(L,Z))n(L,Z,{get:i.bind(C,Z),enumerable:!0});if(t)e.set(C,L);return L},u=(C)=>{var r=(a??=new WeakMap).get(C),o;if(r)return r;if(r=n({},"__esModule",{value:!0}),C&&typeof C==="object"||typeof C==="function"){for(var t of H(C))if(!s.call(r,t))n(r,t,{get:i.bind(C,t),enumerable:!(o=w(C,t))||o.enumerable})}return a.set(C,r),r},a;var B=(C)=>C;function I(C,r){this[C]=B.bind(null,r)}var c=(C,r)=>{for(var o in r)n(C,o,{get:r[o],enumerable:!0,configurable:!0,set:I.bind(r,o)})};var h={};c(h,{CentralIconBase:()=>V});module.exports=u(h);var p=m(require("react")),V=({children:C,size:r=24,ariaLabel:o,color:t,ariaHidden:e=!0,style:l,...L})=>{return p.default.createElement("svg",{...L,"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:t,...l}},o&&!e&&p.default.createElement("title",null,o),C)};var P={};c(P,{default:()=>b,IconLayoutTopFull:()=>f});module.exports=u(P);var M=m(require("react"));var f=(C)=>{return M.default.createElement(V,{...C,ariaLabel:"layout-top-full, grid, window"},M.default.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),M.default.createElement("path",{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},b=f;
|
|
2
|
+
|
|
3
|
+
//# debugId=DBA5DF0A08AE61E964756E2164756E21
|
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
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,wBAAgyF,EAAhyF,IAAqB,EAAO,UAAU,iCAAgC,wBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAG1xF",
|
|
9
|
+
"debugId": "DBA5DF0A08AE61E964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import L from"react";var n=({children:r,size:C=24,ariaLabel:e,color:l,ariaHidden:o=!0,style:M,...Z})=>{return L.createElement("svg",{...Z,"aria-hidden":o,role:o?void 0:"img",width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...M}},e&&!o&&L.createElement("title",null,e),r)};import t from"react";var p=(r)=>{return t.createElement(n,{...r,ariaLabel:"layout-top-full, grid, window"},t.createElement("path",{d:"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z",fill:"currentColor"}),t.createElement("path",{d:"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z",fill:"currentColor"}))},m=p;export{m as default,p as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=08FF1A7D9602EB6C64756E2164756E21
|
|
@@ -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=\"M4.04601 20.391L4.273 19.9455H4.273L4.04601 20.391ZM3.60899 19.954L3.16349 20.181L3.16349 20.181L3.60899 19.954ZM20.391 19.954L20.8365 20.181V20.181L20.391 19.954ZM19.954 20.391L20.181 20.8365H20.181L19.954 20.391ZM20.391 4.04601L19.9455 4.273V4.273L20.391 4.04601ZM19.954 3.60899L20.181 3.16349L20.181 3.16349L19.954 3.60899ZM3.60899 4.04601L3.16349 3.81901L3.16349 3.81901L3.60899 4.04601ZM4.04601 3.60899L3.81901 3.16349L3.81901 3.16349L4.04601 3.60899ZM20 5.1V18.9H21V5.1H20ZM18.9 20H5.1V21H18.9V20ZM4 18.9V5.1H3V18.9H4ZM5.1 4H18.9V3H5.1V4ZM5.1 20C4.81172 20 4.62559 19.9996 4.48392 19.988C4.34809 19.9769 4.29773 19.9581 4.273 19.9455L3.81901 20.8365C4.0082 20.9329 4.20481 20.9686 4.40249 20.9847C4.59432 21.0004 4.82822 21 5.1 21V20ZM3 18.9C3 19.1718 2.99961 19.4057 3.01528 19.5975C3.03144 19.7952 3.06709 19.9918 3.16349 20.181L4.0545 19.727C4.0419 19.7023 4.02306 19.6519 4.01196 19.5161C4.00039 19.3744 4 19.1883 4 18.9H3ZM4.273 19.9455C4.17892 19.8976 4.10243 19.8211 4.0545 19.727L3.16349 20.181C3.3073 20.4632 3.53677 20.6927 3.81902 20.8365L4.273 19.9455ZM20 18.9C20 19.1883 19.9996 19.3744 19.988 19.5161C19.9769 19.6519 19.9581 19.7023 19.9455 19.727L20.8365 20.181C20.9329 19.9918 20.9686 19.7952 20.9847 19.5975C21.0004 19.4057 21 19.1718 21 18.9H20ZM18.9 21C19.1718 21 19.4057 21.0004 19.5975 20.9847C19.7952 20.9686 19.9918 20.9329 20.181 20.8365L19.727 19.9455C19.7023 19.9581 19.6519 19.9769 19.5161 19.988C19.3744 19.9996 19.1883 20 18.9 20V21ZM19.9455 19.727C19.8976 19.8211 19.8211 19.8976 19.727 19.9455L20.181 20.8365C20.4632 20.6927 20.6927 20.4632 20.8365 20.181L19.9455 19.727ZM21 5.1C21 4.82822 21.0004 4.59432 20.9847 4.40249C20.9686 4.20481 20.9329 4.0082 20.8365 3.81901L19.9455 4.273C19.9581 4.29773 19.9769 4.34809 19.988 4.48392C19.9996 4.62559 20 4.81172 20 5.1H21ZM18.9 4C19.1883 4 19.3744 4.00039 19.5161 4.01196C19.6519 4.02306 19.7023 4.0419 19.727 4.0545L20.181 3.16349C19.9918 3.06709 19.7952 3.03144 19.5975 3.01528C19.4057 2.99961 19.1718 3 18.9 3V4ZM20.8365 3.81902C20.6927 3.53677 20.4632 3.3073 20.181 3.16349L19.727 4.0545C19.8211 4.10243 19.8976 4.17892 19.9455 4.273L20.8365 3.81902ZM4 5.1C4 4.81172 4.00039 4.62559 4.01196 4.48392C4.02306 4.34809 4.0419 4.29773 4.0545 4.273L3.16349 3.81901C3.06709 4.0082 3.03144 4.20481 3.01528 4.40249C2.99961 4.59432 3 4.82822 3 5.1H4ZM5.1 3C4.82822 3 4.59432 2.99961 4.40249 3.01528C4.20481 3.03144 4.0082 3.06709 3.81901 3.16349L4.273 4.0545C4.29773 4.0419 4.34809 4.02306 4.48392 4.01196C4.62559 4.00039 4.81172 4 5.1 4V3ZM4.0545 4.273C4.10243 4.17892 4.17892 4.10243 4.273 4.0545L3.81901 3.16349C3.53677 3.3073 3.3073 3.53677 3.16349 3.81901L4.0545 4.273Z\" fill=\"currentColor\"/><path d=\"M20.5 10H21V9H20.5V10ZM3.5 9H3V10H3.5V9ZM3.5 10H20.5V9H3.5V10Z\" 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,gBAAgyF,EAAhyF,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,6lFAA6lF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iEAAiE,KAAK,eAAc,CAAI,GAG1xF",
|
|
9
|
+
"debugId": "08FF1A7D9602EB6C64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var v,y,d=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var n=r?v??=new WeakMap:y??=new WeakMap,p=n.get(e);if(p)return p}t=e!=null?B(I(e)):{};let L=r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t;for(let a of c(e))if(!f.call(L,a))l(L,a,{get:u.bind(e,a),enumerable:!0});if(o)n.set(e,L);return L},g=(e)=>{var r=(m??=new WeakMap).get(e),t;if(r)return r;if(r=l({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of c(e))if(!f.call(r,o))l(r,o,{get:u.bind(e,o),enumerable:!(t=h(e,o))||t.enumerable})}return m.set(e,r),r},m;var P=(e)=>e;function V(e,r){this[e]=P.bind(null,r)}var w=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0,configurable:!0,set:V.bind(r,t)})};var b={};w(b,{CentralIconBase:()=>C});module.exports=g(b);var s=d(require("react")),C=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:p,...L})=>{return s.default.createElement("svg",{...L,"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:o,...p}},t&&!n&&s.default.createElement("title",null,t),e)};var G={};w(G,{default:()=>M,IconQwik:()=>x});module.exports=g(G);var i=d(require("react"));var x=(e)=>{return i.default.createElement(C,{...e,ariaLabel:"qwik"},i.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z",fill:"currentColor"}))},M=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=EA9FD976EF73B29A64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconQwik/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 IconQwik: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"qwik\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.4306 2.50008C16.4342 2.4923 17.3597 3.02477 17.8537 3.88608L19.8295 7.30921L19.8453 7.29339L19.9941 7.55943L20.3708 8.24126L21.0927 9.57238C21.6102 10.5044 21.5237 11.6479 20.8964 12.5016C20.865 12.5486 20.8258 12.596 20.7866 12.643L20.6843 12.7602L17.4854 18.6734L19.3197 22.2835C19.4032 22.4275 19.2169 22.5626 19.0909 22.4649L19.129 22.5031L10.2522 19.8948L8.62896 19.9106C7.64868 19.9184 6.73839 19.4175 6.23649 18.5795L2.95848 13.1443C2.40707 12.2176 2.45151 11.0092 3.03847 10.1156L6.16115 3.92608C6.65522 3.08805 7.54919 2.57117 8.52943 2.56334L13.6976 2.54752L15.4306 2.50008ZM15.4827 18.9395L15.4845 18.9385L15.4827 18.9162V18.9395ZM15.4845 18.9385L15.4929 18.9376V18.9237L15.4845 18.9385ZM8.62152 3.20331L9.72659 9.54075L7.84481 11.3584L15.4799 18.8976L14.7013 12.6039L16.011 11.2802L8.63919 3.18192L8.62152 3.20331Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconQwik;\n"
|
|
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,oECjCY,IAAlB,sBAGO,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAAm7B,EAAn7B,IAAqB,EAAO,UAAU,QAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG76B",
|
|
9
|
+
"debugId": "EA9FD976EF73B29A64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|