@central-icons-react/round-filled-radius-2-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/IconLayoutBottomFull/index.js +3 -0
- package/IconLayoutBottomFull/index.js.map +11 -0
- package/IconLayoutBottomFull/index.mjs +3 -0
- package/IconLayoutBottomFull/index.mjs.map +11 -0
- package/IconLayoutHalfFull/index.d.ts +4 -0
- package/IconLayoutHalfFull/index.js +3 -0
- package/IconLayoutHalfFull/index.js.map +11 -0
- package/IconLayoutHalfFull/index.mjs +3 -0
- package/IconLayoutHalfFull/index.mjs.map +11 -0
- package/IconLayoutLeft/index.js +2 -2
- package/IconLayoutLeft/index.js.map +3 -3
- package/IconLayoutLeft/index.mjs +2 -2
- package/IconLayoutLeft/index.mjs.map +3 -3
- package/IconLayoutLeftFull/index.d.ts +4 -0
- package/IconLayoutLeftFull/index.js +3 -0
- package/IconLayoutLeftFull/index.js.map +11 -0
- package/IconLayoutLeftFull/index.mjs +3 -0
- package/IconLayoutLeftFull/index.mjs.map +11 -0
- package/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/{IconLayoutThird → IconLayoutThirdFull}/index.js.map +4 -4
- package/IconLayoutThirdFull/index.mjs +3 -0
- package/{IconLayoutThird → IconLayoutThirdFull}/index.mjs.map +4 -4
- package/IconLayoutTop/index.js +2 -2
- package/IconLayoutTop/index.js.map +3 -3
- package/IconLayoutTop/index.mjs +2 -2
- package/IconLayoutTop/index.mjs.map +3 -3
- package/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 +0 -3
- package/IconLayoutHalf/index.mjs.map +0 -11
- package/IconLayoutThird/index.d.ts +0 -4
- package/IconLayoutThird/index.js +0 -3
- package/IconLayoutThird/index.mjs +0 -3
|
@@ -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=\"M15.5 3C16.8807 3 18 4.11929 18 5.5V18.5C18 19.8807 16.8807 21 15.5 21H5.5C4.11929 21 3 19.8807 3 18.5V5.5C3 4.11929 4.11929 3 5.5 3H15.5Z\" fill=\"currentColor\"/><path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5V20.5C21 20.7761 20.7761 21 20.5 21C20.2239 21 20 20.7761 20 20.5V3.5C20 3.22386 20.2239 3 20.5 3Z\" fill=\"currentColor\"/></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,gBAAuZ,EAAvZ,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wIAAwI,KAAK,eAAc,CAAI,GAGjZ",
|
|
9
|
+
"debugId": "2665803F4AFBADA664756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:d}=Object,f=Object.prototype.hasOwnProperty;function g(t){return this[t]}var P,V,h=(t,r,e)=>{var o=t!=null&&typeof t==="object";if(o){var n=r?P??=new WeakMap:V??=new WeakMap,a=n.get(t);if(a)return a}e=t!=null?B(I(t)):{};let C=r||!t||!t.__esModule?l(e,"default",{value:t,enumerable:!0}):e;for(let p of c(t))if(!f.call(C,p))l(C,p,{get:g.bind(t,p),enumerable:!0});if(o)n.set(t,C);return C},w=(t)=>{var r=(u??=new WeakMap).get(t),e;if(r)return r;if(r=l({},"__esModule",{value:!0}),t&&typeof t==="object"||typeof t==="function"){for(var o of c(t))if(!f.call(r,o))l(r,o,{get:g.bind(t,o),enumerable:!(e=d(t,o))||e.enumerable})}return u.set(t,r),r},u;var b=(t)=>t;function v(t,r){this[t]=b.bind(null,r)}var x=(t,r)=>{for(var e in r)l(t,e,{get:r[e],enumerable:!0,configurable:!0,set:v.bind(r,e)})};var G={};x(G,{CentralIconBase:()=>i});module.exports=w(G);var s=h(require("react")),i=({children:t,size:r=24,ariaLabel:e,color:o,ariaHidden:n=!0,style:a,...C})=>{return s.default.createElement("svg",{...C,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...a}},e&&!n&&s.default.createElement("title",null,e),t)};var L={};x(L,{default:()=>S,IconLayoutRightFull:()=>y});module.exports=w(L);var m=h(require("react"));var y=(t)=>{return m.default.createElement(i,{...t,ariaLabel:"layout-right-full, grid, window"},m.default.createElement("path",{d:"M15.5 3H6.6786C6.1367 3 5.69963 2.99999 5.34569 3.02891C4.98126 3.05868 4.66117 3.12159 4.36502 3.27248C3.89462 3.51217 3.51217 3.89462 3.27248 4.36502C3.12159 4.66117 3.05868 4.98126 3.02891 5.34569C2.99999 5.69963 3 6.1367 3 6.67859V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V6.67858C21 6.1367 21 5.69963 20.9711 5.34569C20.9413 4.98126 20.8784 4.66117 20.7275 4.36502C20.4878 3.89462 20.1054 3.51217 19.635 3.27248C19.3388 3.12159 19.0187 3.05868 18.6543 3.02891C18.3004 2.99999 17.8633 3 17.3214 3H16.5L16.5 20.5H15.5L15.5 3Z",fill:"currentColor"}))},S=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=E5B9DD752569EDDC64756E2164756E21
|
|
@@ -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=\"M15.5 3H6.6786C6.1367 3 5.69963 2.99999 5.34569 3.02891C4.98126 3.05868 4.66117 3.12159 4.36502 3.27248C3.89462 3.51217 3.51217 3.89462 3.27248 4.36502C3.12159 4.66117 3.05868 4.98126 3.02891 5.34569C2.99999 5.69963 3 6.1367 3 6.67859V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V6.67858C21 6.1367 21 5.69963 20.9711 5.34569C20.9413 4.98126 20.8784 4.66117 20.7275 4.36502C20.4878 3.89462 20.1054 3.51217 19.635 3.27248C19.3388 3.12159 19.0187 3.05868 18.6543 3.02891C18.3004 2.99999 17.8633 3 17.3214 3H16.5L16.5 20.5H15.5L15.5 3Z\" 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,wBAA8gC,EAA9gC,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,u6BAAu6B,KAAK,eAAc,CAAI,GAGxgC",
|
|
9
|
+
"debugId": "E5B9DD752569EDDC64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";var C=({children:r,size:t=24,ariaLabel:o,color:a,ariaHidden:e=!0,style:p,...s})=>{return n.createElement("svg",{...s,"aria-hidden":e,role:e?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...p}},o&&!e&&n.createElement("title",null,o),r)};import l from"react";var i=(r)=>{return l.createElement(C,{...r,ariaLabel:"layout-right-full, grid, window"},l.createElement("path",{d:"M15.5 3H6.6786C6.1367 3 5.69963 2.99999 5.34569 3.02891C4.98126 3.05868 4.66117 3.12159 4.36502 3.27248C3.89462 3.51217 3.51217 3.89462 3.27248 4.36502C3.12159 4.66117 3.05868 4.98126 3.02891 5.34569C2.99999 5.69963 3 6.1367 3 6.67859V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V6.67858C21 6.1367 21 5.69963 20.9711 5.34569C20.9413 4.98126 20.8784 4.66117 20.7275 4.36502C20.4878 3.89462 20.1054 3.51217 19.635 3.27248C19.3388 3.12159 19.0187 3.05868 18.6543 3.02891C18.3004 2.99999 17.8633 3 17.3214 3H16.5L16.5 20.5H15.5L15.5 3Z",fill:"currentColor"}))},h=i;export{h as default,i as IconLayoutRightFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=870F75971031F70664756E2164756E21
|
|
@@ -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=\"M15.5 3H6.6786C6.1367 3 5.69963 2.99999 5.34569 3.02891C4.98126 3.05868 4.66117 3.12159 4.36502 3.27248C3.89462 3.51217 3.51217 3.89462 3.27248 4.36502C3.12159 4.66117 3.05868 4.98126 3.02891 5.34569C2.99999 5.69963 3 6.1367 3 6.67859V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V6.67858C21 6.1367 21 5.69963 20.9711 5.34569C20.9413 4.98126 20.8784 4.66117 20.7275 4.36502C20.4878 3.89462 20.1054 3.51217 19.635 3.27248C19.3388 3.12159 19.0187 3.05868 18.6543 3.02891C18.3004 2.99999 17.8633 3 17.3214 3H16.5L16.5 20.5H15.5L15.5 3Z\" 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,gBAA8gC,EAA9gC,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,u6BAAu6B,KAAK,eAAc,CAAI,GAGxgC",
|
|
9
|
+
"debugId": "870F75971031F70664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:I}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var w,L,V=(r,t,o)=>{var e=r!=null&&typeof r==="object";if(e){var n=t?w??=new WeakMap:L??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?y(B(r)):{};let l=t||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o;for(let i of f(r))if(!c.call(l,i))p(l,i,{get:h.bind(r,i),enumerable:!0});if(e)n.set(r,l);return l},d=(r)=>{var t=(m??=new WeakMap).get(r),o;if(t)return t;if(t=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!c.call(t,e))p(t,e,{get:h.bind(r,e),enumerable:!(o=I(r,e))||o.enumerable})}return m.set(r,t),t},m;var P=(r)=>r;function b(r,t){this[r]=P.bind(null,t)}var g=(r,t)=>{for(var o in t)p(r,o,{get:t[o],enumerable:!0,configurable:!0,set:b.bind(t,o)})};var v={};g(v,{CentralIconBase:()=>u});module.exports=d(v);var C=V(require("react")),u=({children:r,size:t=24,ariaLabel:o,color:e,ariaHidden:n=!0,style:s,...l})=>{return C.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...s}},o&&!n&&C.default.createElement("title",null,o),r)};var G={};g(G,{default:()=>S,IconLayoutThirdFull:()=>x});module.exports=d(G);var a=V(require("react"));var x=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"layout-third-full"},a.default.createElement("path",{d:"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z",fill:"currentColor"}),a.default.createElement("path",{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),a.default.createElement("path",{d:"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z",fill:"currentColor"}))},S=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=6C251CC61F4043EC64756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z\" fill=\"currentColor\"/><path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><path d=\"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAA6W,EAA7W,IAAqB,EAAO,UAAU,qBAAoB,wBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGvW",
|
|
9
|
+
"debugId": "6C251CC61F4043EC64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var p=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:s,...i})=>{return l.createElement("svg",{...i,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!e&&l.createElement("title",null,n),o)};import t from"react";var C=(o)=>{return t.createElement(p,{...o,ariaLabel:"layout-third-full"},t.createElement("path",{d:"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z",fill:"currentColor"}),t.createElement("path",{d:"M3 14.75V9.25L21 9.25V14.75L3 14.75Z",fill:"currentColor"}),t.createElement("path",{d:"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z",fill:"currentColor"}))},V=C;export{V as default,C as IconLayoutThirdFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=3E75E700F751883A64756E2164756E21
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sources": ["src/CentralIconBase/index.tsx", "src/
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutThirdFull/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutThirdFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-third-full\"><path d=\"M4.5 3C3.67157 3 3 3.67157 3 4.5V8.25L21 8.25V4.5C21 3.67157 20.3284 3 19.5 3H4.5Z\" fill=\"currentColor\"/><path d=\"M3 14.75V9.25L21 9.25V14.75L3 14.75Z\" fill=\"currentColor\"/><path d=\"M3 15.75V19.5C3 20.3284 3.67157 21 4.5 21H19.5C20.3284 21 21 20.3284 21 19.5V15.75L3 15.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutThirdFull;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAA6W,EAA7W,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,qFAAqF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uCAAuC,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8FAA8F,KAAK,eAAc,CAAI,GAGvW",
|
|
9
|
+
"debugId": "3E75E700F751883A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:h,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function g(r){return this[r]}var P,V,d=(r,t,o)=>{var e=r!=null&&typeof r==="object";if(e){var n=t?P??=new WeakMap:V??=new WeakMap,l=n.get(r);if(l)return l}o=r!=null?I(h(r)):{};let p=t||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;for(let s of u(r))if(!f.call(p,s))a(p,s,{get:g.bind(r,s),enumerable:!0});if(e)n.set(r,p);return p},x=(r)=>{var t=(c??=new WeakMap).get(r),o;if(t)return t;if(t=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of u(r))if(!f.call(t,e))a(t,e,{get:g.bind(r,e),enumerable:!(o=w(r,e))||o.enumerable})}return c.set(r,t),t},c;var b=(r)=>r;function v(r,t){this[r]=b.bind(null,t)}var y=(r,t)=>{for(var o in t)a(r,o,{get:t[o],enumerable:!0,configurable:!0,set:v.bind(t,o)})};var G={};y(G,{CentralIconBase:()=>m});module.exports=x(G);var i=d(require("react")),m=({children:r,size:t=24,ariaLabel:o,color:e,ariaHidden:n=!0,style:l,...p})=>{return i.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...l}},o&&!n&&i.default.createElement("title",null,o),r)};var S={};y(S,{default:()=>H,IconLayoutTop:()=>B});module.exports=x(S);var C=d(require("react"));var B=(r)=>{return C.default.createElement(m,{...r,ariaLabel:"layout-top, margin, padding"},C.default.createElement("path",{d:"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z",fill:"currentColor"}),C.default.createElement("path",{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},H=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=D2AAAED13A72DE4E64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top, margin, padding\"><path d=\"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z\" fill=\"currentColor\"/><path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA2Y,EAA3Y,IAAqB,EAAO,UAAU,+BAA8B,wBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGrY",
|
|
9
|
+
"debugId": "D2AAAED13A72DE4E64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconLayoutTop/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";var a=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:o=!0,style:C,...s})=>{return p.createElement("svg",{...s,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...C}},n&&!o&&p.createElement("title",null,n),t)};import e from"react";var i=(t)=>{return e.createElement(a,{...t,ariaLabel:"layout-top, margin, padding"},e.createElement("path",{d:"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z",fill:"currentColor"}),e.createElement("path",{d:"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z",fill:"currentColor"}))},d=i;export{d as default,i as IconLayoutTop};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=9825CC9D52F4FE9664756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTop/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTop: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top, margin, padding\"><path d=\"M3 8.5C3 7.11929 4.11929 6 5.5 6H18.5C19.8807 6 21 7.11929 21 8.5V18.5C21 19.8807 19.8807 21 18.5 21H5.5C4.11929 21 3 19.8807 3 18.5V8.5Z\" fill=\"currentColor\"/><path d=\"M3 3.5C3 3.22386 3.22386 3 3.5 3H20.5C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTop;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA2Y,EAA3Y,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,4IAA4I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+HAA+H,KAAK,eAAc,CAAI,GAGrY",
|
|
9
|
+
"debugId": "9825CC9D52F4FE9664756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var y=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:c,getOwnPropertyDescriptor:b}=Object,f=Object.prototype.hasOwnProperty;function g(o){return this[o]}var w,P,d=(o,t,r)=>{var e=o!=null&&typeof o==="object";if(e){var n=t?w??=new WeakMap:P??=new WeakMap,C=n.get(o);if(C)return C}r=o!=null?y(I(o)):{};let l=t||!o||!o.__esModule?p(r,"default",{value:o,enumerable:!0}):r;for(let s of c(o))if(!f.call(l,s))p(l,s,{get:g.bind(o,s),enumerable:!0});if(e)n.set(o,l);return l},B=(o)=>{var t=(u??=new WeakMap).get(o),r;if(t)return t;if(t=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!f.call(t,e))p(t,e,{get:g.bind(o,e),enumerable:!(r=b(o,e))||r.enumerable})}return u.set(o,t),t},u;var V=(o)=>o;function H(o,t){this[o]=V.bind(null,t)}var h=(o,t)=>{for(var r in t)p(o,r,{get:t[r],enumerable:!0,configurable:!0,set:H.bind(t,r)})};var v={};h(v,{CentralIconBase:()=>i});module.exports=B(v);var m=d(require("react")),i=({children:o,size:t=24,ariaLabel:r,color:e,ariaHidden:n=!0,style:C,...l})=>{return m.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...C}},r&&!n&&m.default.createElement("title",null,r),o)};var G={};h(G,{default:()=>S,IconLayoutTopBottom:()=>x});module.exports=B(G);var a=d(require("react"));var x=(o)=>{return a.default.createElement(i,{...o,ariaLabel:"layout-top-bottom, margin, padding"},a.default.createElement("path",{d:"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z",fill:"currentColor"}),a.default.createElement("path",{d:"M18.5 6C19.8807 6 21 7.11929 21 8.5V15.5C21 16.8807 19.8807 18 18.5 18H5.5C4.11929 18 3 16.8807 3 15.5V8.5C3 7.11929 4.11929 6 5.5 6H18.5Z",fill:"currentColor"}),a.default.createElement("path",{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z",fill:"currentColor"}))},S=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=C713FD14E8E8966E64756E2164756E21
|
|
@@ -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=\"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z\" fill=\"currentColor\"/><path d=\"M18.5 6C19.8807 6 21 7.11929 21 8.5V15.5C21 16.8807 19.8807 18 18.5 18H5.5C4.11929 18 3 16.8807 3 15.5V8.5C3 7.11929 4.11929 6 5.5 6H18.5Z\" fill=\"currentColor\"/><path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z\" fill=\"currentColor\"/></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,wBAA0jB,EAA1jB,IAAqB,EAAO,UAAU,sCAAqC,wBAAC,OAAD,CAAM,EAAE,yIAAyI,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,CAAI,GAGpjB",
|
|
9
|
+
"debugId": "C713FD14E8E8966E64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import l from"react";var p=({children:r,size:o=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:C,...s})=>{return l.createElement("svg",{...s,"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:a,...C}},n&&!e&&l.createElement("title",null,n),r)};import t from"react";var m=(r)=>{return t.createElement(p,{...r,ariaLabel:"layout-top-bottom, margin, padding"},t.createElement("path",{d:"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z",fill:"currentColor"}),t.createElement("path",{d:"M18.5 6C19.8807 6 21 7.11929 21 8.5V15.5C21 16.8807 19.8807 18 18.5 18H5.5C4.11929 18 3 16.8807 3 15.5V8.5C3 7.11929 4.11929 6 5.5 6H18.5Z",fill:"currentColor"}),t.createElement("path",{d:"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z",fill:"currentColor"}))},d=m;export{d as default,m as IconLayoutTopBottom};
|
|
2
|
+
|
|
3
|
+
//# debugId=C75F85981E33F7E664756E2164756E21
|
|
@@ -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=\"M20.5 20C20.7761 20 21 20.2239 21 20.5C21 20.7761 20.7761 21 20.5 21H3.5C3.22386 21 3 20.7761 3 20.5C3 20.2239 3.22386 20 3.5 20H20.5Z\" fill=\"currentColor\"/><path d=\"M18.5 6C19.8807 6 21 7.11929 21 8.5V15.5C21 16.8807 19.8807 18 18.5 18H5.5C4.11929 18 3 16.8807 3 15.5V8.5C3 7.11929 4.11929 6 5.5 6H18.5Z\" fill=\"currentColor\"/><path d=\"M20.5 3C20.7761 3 21 3.22386 21 3.5C21 3.77614 20.7761 4 20.5 4H3.5C3.22386 4 3 3.77614 3 3.5C3 3.22386 3.22386 3 3.5 3H20.5Z\" fill=\"currentColor\"/></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,gBAA0jB,EAA1jB,IAAqB,EAAO,UAAU,sCAAqC,gBAAC,OAAD,CAAM,EAAE,yIAAyI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gIAAgI,KAAK,eAAc,CAAI,GAGpjB",
|
|
9
|
+
"debugId": "C75F85981E33F7E664756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:V}=Object,f=Object.prototype.hasOwnProperty;function g(r){return this[r]}var h,P,d=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?h??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}t=r!=null?B(I(r)):{};let C=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let s of c(r))if(!f.call(C,s))l(C,s,{get:g.bind(r,s),enumerable:!0});if(e)n.set(r,C);return C},w=(r)=>{var o=(u??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))l(o,e,{get:g.bind(r,e),enumerable:!(t=V(r,e))||t.enumerable})}return u.set(r,o),o},u;var b=(r)=>r;function v(r,o){this[r]=b.bind(null,o)}var x=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:v.bind(o,t)})};var G={};x(G,{CentralIconBase:()=>m});module.exports=w(G);var i=d(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:p,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":n,role:n?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...p}},t&&!n&&i.default.createElement("title",null,t),r)};var S={};x(S,{default:()=>F,IconLayoutTopFull:()=>y});module.exports=w(S);var a=d(require("react"));var y=(r)=>{return a.default.createElement(m,{...r,ariaLabel:"layout-top-full, grid, window"},a.default.createElement("path",{d:"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z",fill:"currentColor"}),a.default.createElement("path",{d:"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z",fill:"currentColor"}))},F=y;
|
|
2
|
+
|
|
3
|
+
//# debugId=88D22D1F9F18E12B64756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTopFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-full, grid, window\"><path d=\"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z\" fill=\"currentColor\"/><path d=\"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,6ECjCY,IAAlB,sBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,wBAA0iC,EAA1iC,IAAqB,EAAO,UAAU,iCAAgC,wBAAC,OAAD,CAAM,EAAE,4dAA4d,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGpiC",
|
|
9
|
+
"debugId": "88D22D1F9F18E12B64756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import C from"react";var l=({children:o,size:r=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...s})=>{return C.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},n&&!t&&C.createElement("title",null,n),o)};import e from"react";var i=(o)=>{return e.createElement(l,{...o,ariaLabel:"layout-top-full, grid, window"},e.createElement("path",{d:"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z",fill:"currentColor"}),e.createElement("path",{d:"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z",fill:"currentColor"}))},d=i;export{d as default,i as IconLayoutTopFull};
|
|
2
|
+
|
|
3
|
+
//# debugId=C3228D1D5E8B592564756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutTopFull/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLayoutTopFull: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-top-full, grid, window\"><path d=\"M5.34569 3.02891C5.69963 2.99999 6.1367 3 6.6786 3H17.3214C17.8633 3 18.3004 2.99999 18.6543 3.02891C19.0187 3.05868 19.3388 3.12159 19.635 3.27248C20.1054 3.51217 20.4878 3.89462 20.7275 4.36502C20.8784 4.66117 20.9413 4.98126 20.9711 5.34569C21 5.69963 21 6.1367 21 6.67858V9H3V6.6786C3 6.13671 2.99999 5.69963 3.02891 5.34569C3.05868 4.98126 3.12159 4.66117 3.27248 4.36502C3.51217 3.89462 3.89462 3.51217 4.36502 3.27248C4.66117 3.12159 4.98126 3.05868 5.34569 3.02891Z\" fill=\"currentColor\"/><path d=\"M3 10V17.3214C3 17.8633 2.99999 18.3004 3.02891 18.6543C3.05868 19.0187 3.12159 19.3388 3.27248 19.635C3.51217 20.1054 3.89462 20.4878 4.36502 20.7275C4.66117 20.8784 4.98126 20.9413 5.34569 20.9711C5.69963 21 6.1367 21 6.67858 21H17.3214C17.8633 21 18.3004 21 18.6543 20.9711C19.0187 20.9413 19.3388 20.8784 19.635 20.7275C20.1054 20.4878 20.4878 20.1054 20.7275 19.635C20.8784 19.3388 20.9413 19.0187 20.9711 18.6543C21 18.3004 21 17.8633 21 17.3214V10H3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLayoutTopFull;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAA0iC,EAA1iC,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,4dAA4d,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4cAA4c,KAAK,eAAc,CAAI,GAGpiC",
|
|
9
|
+
"debugId": "C3228D1D5E8B592564756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import n from"react";var L=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:a,...s})=>{return n.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...a}},o&&!t&&n.createElement("title",null,o),r)};import l from"react";var C=(r)=>{return l.createElement(L,{...r,ariaLabel:"qwik"},l.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"}))},d=C;export{d as default,C as IconQwik};
|
|
2
|
+
|
|
3
|
+
//# debugId=F18CB6466E9BAF5864756E2164756E21
|
|
@@ -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": "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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAm7B,EAAn7B,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,i0BAAi0B,KAAK,eAAc,CAAI,GAG76B",
|
|
9
|
+
"debugId": "F18CB6466E9BAF5864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -1355,12 +1355,12 @@ Below is a complete list of available icons:
|
|
|
1355
1355
|
- IconLayoutTopbar
|
|
1356
1356
|
- IconLayoutDashboard
|
|
1357
1357
|
- IconLayoutWindow
|
|
1358
|
-
-
|
|
1359
|
-
-
|
|
1360
|
-
-
|
|
1361
|
-
-
|
|
1362
|
-
-
|
|
1363
|
-
-
|
|
1358
|
+
- IconLayoutTopFull
|
|
1359
|
+
- IconLayoutBottomFull
|
|
1360
|
+
- IconLayoutRightFull
|
|
1361
|
+
- IconLayoutLeftFull
|
|
1362
|
+
- IconLayoutHalfFull
|
|
1363
|
+
- IconLayoutThirdFull
|
|
1364
1364
|
- IconLayoutGrid1
|
|
1365
1365
|
- IconLayoutGrid2
|
|
1366
1366
|
- IconLayoutColumn
|
|
@@ -1410,6 +1410,13 @@ Below is a complete list of available icons:
|
|
|
1410
1410
|
- IconLayoutAlignTopBottom
|
|
1411
1411
|
- IconGrid
|
|
1412
1412
|
- IconGridBox
|
|
1413
|
+
- IconLayoutAllSides
|
|
1414
|
+
- IconLayoutLeftRight
|
|
1415
|
+
- IconLayoutTopBottom
|
|
1416
|
+
- IconLayoutRight
|
|
1417
|
+
- IconLayoutLeft
|
|
1418
|
+
- IconLayoutTop
|
|
1419
|
+
- IconLayoutBottom
|
|
1413
1420
|
|
|
1414
1421
|
### Location
|
|
1415
1422
|
|
|
@@ -1876,6 +1883,7 @@ Below is a complete list of available icons:
|
|
|
1876
1883
|
- IconBitcoinCircle
|
|
1877
1884
|
- IconSwift
|
|
1878
1885
|
- IconSiriGen2
|
|
1886
|
+
- IconQwik
|
|
1879
1887
|
|
|
1880
1888
|
### Sound & Music
|
|
1881
1889
|
|