@central-icons-react/square-outlined-radius-0-stroke-2 1.1.265 → 1.1.267

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.
Files changed (41) hide show
  1. package/IconAlbums2/index.d.ts +4 -0
  2. package/IconAlbums2/index.js +3 -0
  3. package/IconAlbums2/index.js.map +11 -0
  4. package/IconAlbums2/index.mjs +3 -0
  5. package/IconAlbums2/index.mjs.map +11 -0
  6. package/IconDevices2/index.js +2 -2
  7. package/IconDevices2/index.js.map +3 -3
  8. package/IconDevices2/index.mjs +2 -2
  9. package/IconDevices2/index.mjs.map +3 -3
  10. package/IconHomePlus/index.d.ts +4 -0
  11. package/IconHomePlus/index.js +3 -0
  12. package/IconHomePlus/index.js.map +11 -0
  13. package/IconHomePlus/index.mjs +3 -0
  14. package/IconHomePlus/index.mjs.map +11 -0
  15. package/IconLayoutAlignLeftRight/index.d.ts +4 -0
  16. package/IconLayoutAlignLeftRight/index.js +3 -0
  17. package/IconLayoutAlignLeftRight/index.js.map +11 -0
  18. package/IconLayoutAlignLeftRight/index.mjs +3 -0
  19. package/IconLayoutAlignLeftRight/index.mjs.map +11 -0
  20. package/IconLayoutAlignTopBottom/index.d.ts +4 -0
  21. package/IconLayoutAlignTopBottom/index.js +3 -0
  22. package/IconLayoutAlignTopBottom/index.js.map +11 -0
  23. package/IconLayoutAlignTopBottom/index.mjs +3 -0
  24. package/IconLayoutAlignTopBottom/index.mjs.map +11 -0
  25. package/IconMacbook/index.js +2 -2
  26. package/IconMacbook/index.js.map +3 -3
  27. package/IconMacbook/index.mjs +2 -2
  28. package/IconMacbook/index.mjs.map +3 -3
  29. package/README.md +4 -0
  30. package/icons/index.d.ts +1 -1
  31. package/icons/index.js +2 -2
  32. package/icons/index.js.map +3 -3
  33. package/icons/index.mjs +2 -2
  34. package/icons/index.mjs.map +3 -3
  35. package/icons-index.json +4 -4
  36. package/index.d.ts +4 -0
  37. package/index.js +12 -0
  38. package/index.mjs +4 -0
  39. package/license-check.js +1 -1
  40. package/package.json +1 -1
  41. package/skills/central-icons-react/SKILL.md +6 -2
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconAlbums2: React.FC<CentralIconBaseProps>;
4
+ export default IconAlbums2;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:C,getOwnPropertyDescriptor:b}=Object,h=Object.prototype.hasOwnProperty;function d(r){return this[r]}var w,y,f=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var n=e?w??=new WeakMap:y??=new WeakMap,l=n.get(r);if(l)return l}t=r!=null?B(I(r)):{};let s=e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let i of C(r))if(!h.call(s,i))a(s,i,{get:d.bind(r,i),enumerable:!0});if(o)n.set(r,s);return s},k=(r)=>{var e=(u??=new WeakMap).get(r),t;if(e)return e;if(e=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of C(r))if(!h.call(e,o))a(e,o,{get:d.bind(r,o),enumerable:!(t=b(r,o))||t.enumerable})}return u.set(r,e),e},u;var L=(r)=>r;function P(r,e){this[r]=L.bind(null,e)}var g=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0,configurable:!0,set:P.bind(e,t)})};var v={};g(v,{CentralIconBase:()=>m});module.exports=k(v);var c=f(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:l,...s})=>{return c.default.createElement("svg",{...s,"aria-hidden":n,role:n?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:o,...l}},t&&!n&&c.default.createElement("title",null,t),r)};var G={};g(G,{default:()=>S,IconAlbums2:()=>x});module.exports=k(G);var p=f(require("react"));var x=(r)=>{return p.default.createElement(m,{...r,ariaLabel:"albums-2, cover"},p.default.createElement("path",{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),p.default.createElement("path",{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),p.default.createElement("path",{d:"M4 12H20L18.5 20H5.5L4 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},S=x;
2
+
3
+ //# debugId=9253E9DEE9E5157C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"albums-2, cover\"><path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M4 12H20L18.5 20H5.5L4 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA6T,EAA7T,IAAqB,EAAO,UAAU,mBAAkB,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGvT",
9
+ "debugId": "9253E9DEE9E5157C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";var a=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:l,...i})=>{return s.createElement("svg",{...i,"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:p,...l}},n&&!o&&s.createElement("title",null,n),t)};import e from"react";var c=(t)=>{return e.createElement(a,{...t,ariaLabel:"albums-2, cover"},e.createElement("path",{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement("path",{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement("path",{d:"M4 12H20L18.5 20H5.5L4 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},f=c;export{f as default,c as IconAlbums2};
2
+
3
+ //# debugId=34785513CE87BB0C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"albums-2, cover\"><path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M4 12H20L18.5 20H5.5L4 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA6T,EAA7T,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGvT",
9
+ "debugId": "34785513CE87BB0C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:V,defineProperty:s,getOwnPropertyNames:u,getOwnPropertyDescriptor:k}=Object,C=Object.prototype.hasOwnProperty;function d(r){return this[r]}var v,w,f=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var n=e?v??=new WeakMap:w??=new WeakMap,l=n.get(r);if(l)return l}t=r!=null?I(V(r)):{};let p=e||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t;for(let i of u(r))if(!C.call(p,i))s(p,i,{get:d.bind(r,i),enumerable:!0});if(o)n.set(r,p);return p},g=(r)=>{var e=(h??=new WeakMap).get(r),t;if(e)return e;if(e=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of u(r))if(!C.call(e,o))s(e,o,{get:d.bind(r,o),enumerable:!(t=k(r,o))||t.enumerable})}return h.set(r,e),e},h;var y=(r)=>r;function P(r,e){this[r]=y.bind(null,e)}var x=(r,e)=>{for(var t in e)s(r,t,{get:e[t],enumerable:!0,configurable:!0,set:P.bind(e,t)})};var b={};x(b,{CentralIconBase:()=>m});module.exports=g(b);var c=f(require("react")),m=({children:r,size:e=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:l,...p})=>{return c.default.createElement("svg",{...p,"aria-hidden":n,role:n?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:o,...l}},t&&!n&&c.default.createElement("title",null,t),r)};var G={};x(G,{default:()=>L,IconDevices2:()=>B});module.exports=g(G);var a=f(require("react"));var B=(r)=>{return a.default.createElement(m,{...r,ariaLabel:"devices-2, laptop-phone"},a.default.createElement("path",{d:"M16 10L22 10V20H16V10Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),a.default.createElement("path",{d:"M13 19.5H2L2 16H13",stroke:"currentColor",strokeWidth:"2"}),a.default.createElement("path",{d:"M20 6.5V4H4V15.5",stroke:"currentColor",strokeWidth:"2"}))},L=B;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:s,getOwnPropertyNames:d,getOwnPropertyDescriptor:V}=Object,u=Object.prototype.hasOwnProperty;function C(e){return this[e]}var b,v,f=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?b??=new WeakMap:v??=new WeakMap,l=n.get(e);if(l)return l}o=e!=null?B(I(e)):{};let p=r||!e||!e.__esModule?s(o,"default",{value:e,enumerable:!0}):o;for(let c of d(e))if(!u.call(p,c))s(p,c,{get:C.bind(e,c),enumerable:!0});if(t)n.set(e,p);return p},g=(e)=>{var r=(h??=new WeakMap).get(e),o;if(r)return r;if(r=s({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of d(e))if(!u.call(r,t))s(r,t,{get:C.bind(e,t),enumerable:!(o=V(e,t))||o.enumerable})}return h.set(e,r),r},h;var w=(e)=>e;function y(e,r){this[e]=w.bind(null,r)}var k=(e,r)=>{for(var o in r)s(e,o,{get:r[o],enumerable:!0,configurable:!0,set:y.bind(r,o)})};var P={};k(P,{CentralIconBase:()=>m});module.exports=g(P);var i=f(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:l,...p})=>{return i.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,...l}},o&&!n&&i.default.createElement("title",null,o),e)};var G={};k(G,{default:()=>L,IconDevices2:()=>x});module.exports=g(G);var a=f(require("react"));var x=(e)=>{return a.default.createElement(m,{...e,ariaLabel:"devices-2, macbook, iphone, phone, connected"},a.default.createElement("path",{d:"M16 10L22 10V20H16V10Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),a.default.createElement("path",{d:"M13 19.5H2L2 16H13",stroke:"currentColor",strokeWidth:"2"}),a.default.createElement("path",{d:"M20 6.5V4H4V15.5",stroke:"currentColor",strokeWidth:"2"}))},L=x;
2
2
 
3
- //# debugId=9C476B87A0845FD064756E2164756E21
3
+ //# debugId=861EC07E38E564B864756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDevices2/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 IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, laptop-phone\"><path d=\"M16 10L22 10V20H16V10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M13 19.5H2L2 16H13\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M20 6.5V4H4V15.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, macbook, iphone, phone, connected\"><path d=\"M16 10L22 10V20H16V10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M13 19.5H2L2 16H13\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M20 6.5V4H4V15.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAAuS,EAAvS,IAAqB,EAAO,UAAU,2BAA0B,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,CAAI,GAGjS",
9
- "debugId": "9C476B87A0845FD064756E2164756E21",
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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAA4T,EAA5T,IAAqB,EAAO,UAAU,gDAA+C,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,CAAI,GAGtT",
9
+ "debugId": "861EC07E38E564B864756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";var s=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>{return p.createElement("svg",{...i,"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:a,...l}},n&&!o&&p.createElement("title",null,n),t)};import e from"react";var c=(t)=>{return e.createElement(s,{...t,ariaLabel:"devices-2, laptop-phone"},e.createElement("path",{d:"M16 10L22 10V20H16V10Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement("path",{d:"M13 19.5H2L2 16H13",stroke:"currentColor",strokeWidth:"2"}),e.createElement("path",{d:"M20 6.5V4H4V15.5",stroke:"currentColor",strokeWidth:"2"}))},f=c;export{f as default,c as IconDevices2};
1
+ import p from"react";var s=({children:o,size:e=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:l,...c})=>{return p.createElement("svg",{...c,"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:a,...l}},n&&!t&&p.createElement("title",null,n),o)};import r from"react";var i=(o)=>{return r.createElement(s,{...o,ariaLabel:"devices-2, macbook, iphone, phone, connected"},r.createElement("path",{d:"M16 10L22 10V20H16V10Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),r.createElement("path",{d:"M13 19.5H2L2 16H13",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M20 6.5V4H4V15.5",stroke:"currentColor",strokeWidth:"2"}))},f=i;export{f as default,i as IconDevices2};
2
2
 
3
- //# debugId=75B7F197025E794164756E2164756E21
3
+ //# debugId=F333DBD51DE0BA4E64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDevices2/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 IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, laptop-phone\"><path d=\"M16 10L22 10V20H16V10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M13 19.5H2L2 16H13\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M20 6.5V4H4V15.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, macbook, iphone, phone, connected\"><path d=\"M16 10L22 10V20H16V10Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M13 19.5H2L2 16H13\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M20 6.5V4H4V15.5\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAuS,EAAvS,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,CAAI,GAGjS",
9
- "debugId": "75B7F197025E794164756E2164756E21",
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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAA4T,EAA5T,IAAqB,EAAO,UAAU,gDAA+C,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,YAAY,IAAG,CAAI,GAGtT",
9
+ "debugId": "F333DBD51DE0BA4E64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHomePlus: React.FC<CentralIconBaseProps>;
4
+ export default IconHomePlus;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:P,defineProperty:s,getOwnPropertyNames:h,getOwnPropertyDescriptor:V}=Object,C=Object.prototype.hasOwnProperty;function d(r){return this[r]}var k,w,f=(r,t,o)=>{var e=r!=null&&typeof r==="object";if(e){var n=t?k??=new WeakMap:w??=new WeakMap,a=n.get(r);if(a)return a}o=r!=null?I(P(r)):{};let p=t||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o;for(let m of h(r))if(!C.call(p,m))s(p,m,{get:d.bind(r,m),enumerable:!0});if(e)n.set(r,p);return p},g=(r)=>{var t=(c??=new WeakMap).get(r),o;if(t)return t;if(t=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of h(r))if(!C.call(t,e))s(t,e,{get:d.bind(r,e),enumerable:!(o=V(r,e))||o.enumerable})}return c.set(r,t),t},c;var y=(r)=>r;function b(r,t){this[r]=y.bind(null,t)}var x=(r,t)=>{for(var o in t)s(r,o,{get:t[o],enumerable:!0,configurable:!0,set:b.bind(t,o)})};var v={};x(v,{CentralIconBase:()=>u});module.exports=g(v);var i=f(require("react")),u=({children:r,size:t=24,ariaLabel:o,color:e,ariaHidden:n=!0,style:a,...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,...a}},o&&!n&&i.default.createElement("title",null,o),r)};var G={};x(G,{default:()=>S,IconHomePlus:()=>B});module.exports=g(G);var l=f(require("react"));var B=(r)=>{return l.default.createElement(u,{...r,ariaLabel:"home-plus"},l.default.createElement("path",{d:"M4 9V20H20V9L12 4L4 9Z",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M9 13H15",stroke:"currentColor",strokeWidth:"2"}))},S=B;
2
+
3
+ //# debugId=624F20168CF5F50364756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"home-plus\"><path d=\"M4 9V20H20V9L12 4L4 9Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 13H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAAiP,EAAjP,IAAqB,EAAO,UAAU,aAAY,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3O",
9
+ "debugId": "624F20168CF5F50364756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var s=({children:o,size:r=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:a,...m})=>{return p.createElement("svg",{...m,"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:l,...a}},n&&!e&&p.createElement("title",null,n),o)};import t from"react";var i=(o)=>{return t.createElement(s,{...o,ariaLabel:"home-plus"},t.createElement("path",{d:"M4 9V20H20V9L12 4L4 9Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement("path",{d:"M12 10V16",stroke:"currentColor",strokeWidth:"2"}),t.createElement("path",{d:"M9 13H15",stroke:"currentColor",strokeWidth:"2"}))},f=i;export{f as default,i as IconHomePlus};
2
+
3
+ //# debugId=D5A0F54A4D9CBD5A64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"home-plus\"><path d=\"M4 9V20H20V9L12 4L4 9Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M12 10V16\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M9 13H15\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAiP,EAAjP,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,YAAY,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAG3O",
9
+ "debugId": "D5A0F54A4D9CBD5A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutAlignLeftRight: React.FC<CentralIconBaseProps>;
4
+ export default IconLayoutAlignLeftRight;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:k}=Object,c=Object.prototype.hasOwnProperty;function d(t){return this[t]}var w,L,C=(t,r,o)=>{var e=t!=null&&typeof t==="object";if(e){var n=r?w??=new WeakMap:L??=new WeakMap,s=n.get(t);if(s)return s}o=t!=null?B(I(t)):{};let p=r||!t||!t.__esModule?a(o,"default",{value:t,enumerable:!0}):o;for(let i of u(t))if(!c.call(p,i))a(p,i,{get:d.bind(t,i),enumerable:!0});if(e)n.set(t,p);return p},f=(t)=>{var r=(h??=new WeakMap).get(t),o;if(r)return r;if(r=a({},"__esModule",{value:!0}),t&&typeof t==="object"||typeof t==="function"){for(var e of u(t))if(!c.call(r,e))a(r,e,{get:d.bind(t,e),enumerable:!(o=k(t,e))||o.enumerable})}return h.set(t,r),r},h;var P=(t)=>t;function V(t,r){this[t]=P.bind(null,r)}var x=(t,r)=>{for(var o in r)a(t,o,{get:r[o],enumerable:!0,configurable:!0,set:V.bind(r,o)})};var b={};x(b,{CentralIconBase:()=>g});module.exports=f(b);var m=C(require("react")),g=({children:t,size:r=24,ariaLabel:o,color:e,ariaHidden:n=!0,style:s,...p})=>{return m.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...s}},o&&!n&&m.default.createElement("title",null,o),t)};var v={};x(v,{default:()=>G,IconLayoutAlignLeftRight:()=>y});module.exports=f(v);var l=C(require("react"));var y=(t)=>{return l.default.createElement(g,{...t,ariaLabel:"layout-align-left-right, padding"},l.default.createElement("path",{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M16 7V17",stroke:"currentColor",strokeWidth:"2"}))},G=y;
2
+
3
+ //# debugId=EE9B31E40539866064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/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 IconLayoutAlignLeftRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-align-left-right, padding\"><path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M8 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M16 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\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,oFCjCY,IAAlB,sBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,wBAAsQ,EAAtQ,IAAqB,EAAO,UAAU,oCAAmC,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGhQ",
9
+ "debugId": "EE9B31E40539866064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var a=({children:o,size:t=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:s,...i})=>{return p.createElement("svg",{...i,"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:l,...s}},n&&!e&&p.createElement("title",null,n),o)};import r from"react";var m=(o)=>{return r.createElement(a,{...o,ariaLabel:"layout-align-left-right, padding"},r.createElement("path",{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M8 7V17",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M16 7V17",stroke:"currentColor",strokeWidth:"2"}))},C=m;export{C as default,m as IconLayoutAlignLeftRight};
2
+
3
+ //# debugId=47AB62E6BF74A25664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignLeftRight/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 IconLayoutAlignLeftRight: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-align-left-right, padding\"><path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M8 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M16 7V17\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignLeftRight;\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,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAAsQ,EAAtQ,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGhQ",
9
+ "debugId": "47AB62E6BF74A25664756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconLayoutAlignTopBottom: React.FC<CentralIconBaseProps>;
4
+ export default IconLayoutAlignTopBottom;
@@ -0,0 +1,3 @@
1
+ var y=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:d,getOwnPropertyDescriptor:b}=Object,C=Object.prototype.hasOwnProperty;function g(t){return this[t]}var k,w,h=(t,o,r)=>{var e=t!=null&&typeof t==="object";if(e){var n=o?k??=new WeakMap:w??=new WeakMap,s=n.get(t);if(s)return s}r=t!=null?y(I(t)):{};let p=o||!t||!t.__esModule?a(r,"default",{value:t,enumerable:!0}):r;for(let i of d(t))if(!C.call(p,i))a(p,i,{get:g.bind(t,i),enumerable:!0});if(e)n.set(t,p);return p},f=(t)=>{var o=(c??=new WeakMap).get(t),r;if(o)return o;if(o=a({},"__esModule",{value:!0}),t&&typeof t==="object"||typeof t==="function"){for(var e of d(t))if(!C.call(o,e))a(o,e,{get:g.bind(t,e),enumerable:!(r=b(t,e))||r.enumerable})}return c.set(t,o),o},c;var P=(t)=>t;function L(t,o){this[t]=P.bind(null,o)}var B=(t,o)=>{for(var r in o)a(t,r,{get:o[r],enumerable:!0,configurable:!0,set:L.bind(o,r)})};var v={};B(v,{CentralIconBase:()=>u});module.exports=f(v);var m=h(require("react")),u=({children:t,size:o=24,ariaLabel:r,color:e,ariaHidden:n=!0,style:s,...p})=>{return m.default.createElement("svg",{...p,"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}},r&&!n&&m.default.createElement("title",null,r),t)};var G={};B(G,{default:()=>S,IconLayoutAlignTopBottom:()=>x});module.exports=f(G);var l=h(require("react"));var x=(t)=>{return l.default.createElement(u,{...t,ariaLabel:"layout-align-top-bottom, padding"},l.default.createElement("path",{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M7 8H17",stroke:"currentColor",strokeWidth:"2"}),l.default.createElement("path",{d:"M7 16H17",stroke:"currentColor",strokeWidth:"2"}))},S=x;
2
+
3
+ //# debugId=249E84C62E1A75D264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/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 IconLayoutAlignTopBottom: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-align-top-bottom, padding\"><path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M7 8H17\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M7 16H17\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\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,oFCjCY,IAAlB,sBAGO,IAAM,EAA2D,CAAC,IAAU,CACjF,OAAO,wBAAsQ,EAAtQ,IAAqB,EAAO,UAAU,oCAAmC,wBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGhQ",
9
+ "debugId": "249E84C62E1A75D264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";var a=({children:r,size:t=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:s,...i})=>{return p.createElement("svg",{...i,"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:l,...s}},n&&!e&&p.createElement("title",null,n),r)};import o from"react";var m=(r)=>{return o.createElement(a,{...r,ariaLabel:"layout-align-top-bottom, padding"},o.createElement("path",{d:"M4 4L20 4L20 20H4L4 4Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M7 8H17",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M7 16H17",stroke:"currentColor",strokeWidth:"2"}))},h=m;export{h as default,m as IconLayoutAlignTopBottom};
2
+
3
+ //# debugId=9F0D943E3EF2521C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconLayoutAlignTopBottom/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 IconLayoutAlignTopBottom: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"layout-align-top-bottom, padding\"><path d=\"M4 4L20 4L20 20H4L4 4Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M7 8H17\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M7 16H17\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconLayoutAlignTopBottom;\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,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAAsQ,EAAtQ,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,CAAI,GAGhQ",
9
+ "debugId": "9F0D943E3EF2521C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:C,getOwnPropertyDescriptor:V}=Object,f=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,w,d=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?b??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?B(I(r)):{};let p=e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;for(let c of C(r))if(!f.call(p,c))a(p,c,{get:h.bind(r,c),enumerable:!0});if(t)n.set(r,p);return p},g=(r)=>{var e=(u??=new WeakMap).get(r),o;if(e)return e;if(e=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!f.call(e,t))a(e,t,{get:h.bind(r,t),enumerable:!(o=V(r,t))||o.enumerable})}return u.set(r,e),e},u;var y=(r)=>r;function P(r,e){this[r]=y.bind(null,e)}var k=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0,configurable:!0,set:P.bind(e,o)})};var v={};k(v,{CentralIconBase:()=>i});module.exports=g(v);var m=d(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...p})=>{return m.default.createElement("svg",{...p,"aria-hidden":n,role:n?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:t,...s}},o&&!n&&m.default.createElement("title",null,o),r)};var G={};k(G,{default:()=>S,IconMacbook:()=>x});module.exports=g(G);var l=d(require("react"));var x=(r)=>{return l.default.createElement(i,{...r,ariaLabel:"macbook, laptop, computer"},l.default.createElement("path",{d:"M4 4H20V16H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),l.default.createElement("path",{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},S=x;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:C,getOwnPropertyDescriptor:V}=Object,f=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,w,d=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?b??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?B(I(r)):{};let p=e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;for(let c of C(r))if(!f.call(p,c))a(p,c,{get:h.bind(r,c),enumerable:!0});if(t)n.set(r,p);return p},g=(r)=>{var e=(u??=new WeakMap).get(r),o;if(e)return e;if(e=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!f.call(e,t))a(e,t,{get:h.bind(r,t),enumerable:!(o=V(r,t))||o.enumerable})}return u.set(r,e),e},u;var y=(r)=>r;function P(r,e){this[r]=y.bind(null,e)}var k=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0,configurable:!0,set:P.bind(e,o)})};var v={};k(v,{CentralIconBase:()=>i});module.exports=g(v);var m=d(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...p})=>{return m.default.createElement("svg",{...p,"aria-hidden":n,role:n?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:t,...s}},o&&!n&&m.default.createElement("title",null,o),r)};var G={};k(G,{default:()=>S,IconMacbook:()=>x});module.exports=g(G);var l=d(require("react"));var x=(r)=>{return l.default.createElement(i,{...r,ariaLabel:"macbook, laptop, computer"},l.default.createElement("path",{d:"M20 15.75V4H4V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),l.default.createElement("path",{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},S=x;
2
2
 
3
- //# debugId=A92F4FED5C95BE6264756E2164756E21
3
+ //# debugId=E96695EB55760C7D64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/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 IconMacbook: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"macbook, laptop, computer\"><path d=\"M4 4H20V16H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMacbook: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"macbook, laptop, computer\"><path d=\"M20 15.75V4H4V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\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,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAsP,EAAtP,IAAqB,EAAO,UAAU,6BAA4B,wBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGhP",
9
- "debugId": "A92F4FED5C95BE6264756E2164756E21",
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,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA0P,EAA1P,IAAqB,EAAO,UAAU,6BAA4B,wBAAC,OAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGpP",
9
+ "debugId": "E96695EB55760C7D64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...c})=>{return p.createElement("svg",{...c,"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:s,...l}},n&&!o&&p.createElement("title",null,n),e)};import t from"react";var m=(e)=>{return t.createElement(a,{...e,ariaLabel:"macbook, laptop, computer"},t.createElement("path",{d:"M4 4H20V16H4V4Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.createElement("path",{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},d=m;export{d as default,m as IconMacbook};
1
+ import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...c})=>{return p.createElement("svg",{...c,"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:s,...l}},n&&!o&&p.createElement("title",null,n),e)};import t from"react";var m=(e)=>{return t.createElement(a,{...e,ariaLabel:"macbook, laptop, computer"},t.createElement("path",{d:"M20 15.75V4H4V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),t.createElement("path",{d:"M2 16H22V20H2V16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}))},d=m;export{d as default,m as IconMacbook};
2
2
 
3
- //# debugId=33BE45B320EE62EA64756E2164756E21
3
+ //# debugId=558181D6B5F94A0E64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMacbook/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 IconMacbook: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"macbook, laptop, computer\"><path d=\"M4 4H20V16H4V4Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMacbook: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"macbook, laptop, computer\"><path d=\"M20 15.75V4H4V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><path d=\"M2 16H22V20H2V16Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconMacbook;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAsP,EAAtP,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGhP",
9
- "debugId": "33BE45B320EE62EA64756E2164756E21",
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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA0P,EAA1P,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,sBAAsB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,oBAAoB,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,CAAI,GAGpP",
9
+ "debugId": "558181D6B5F94A0E64756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -476,6 +476,7 @@ Below is a complete list of available icons:
476
476
  - IconTower
477
477
  - IconGoldenGateBridge
478
478
  - IconHomeRoofDoor
479
+ - IconHomePlus
479
480
 
480
481
  ### Clouds
481
482
 
@@ -1397,6 +1398,8 @@ Below is a complete list of available icons:
1397
1398
  - IconCanvasGrid
1398
1399
  - IconTopbarHiddenTopWide
1399
1400
  - IconBottombarHiddenBottomWide
1401
+ - IconLayoutAlignLeftRight
1402
+ - IconLayoutAlignTopBottom
1400
1403
 
1401
1404
  ### Location
1402
1405
 
@@ -1920,6 +1923,7 @@ Below is a complete list of available icons:
1920
1923
  - IconCd
1921
1924
  - IconVoiceShare
1922
1925
  - IconConductor
1926
+ - IconAlbums2
1923
1927
 
1924
1928
  ### Sports
1925
1929