@central-icons-react/square-outlined-radius-0-stroke-1 1.1.31 → 1.1.32

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconFastShipping: React.FC<CentralIconBaseProps>;
4
+ export default IconFastShipping;
@@ -0,0 +1,2 @@
1
+ "use strict";var h=Object.create;var s=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,t)=>{for(var o in t)s(r,o,{get:t[o],enumerable:!0})},a=(r,t,o,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let e of f(t))!x.call(r,e)&&e!==o&&s(r,e,{get:()=>t[e],enumerable:!(p=d(t,e))||p.enumerable});return r};var C=(r,t,o)=>(o=r!=null?h(g(r)):{},a(t||!r||!r.__esModule?s(o,"default",{value:r,enumerable:!0}):o,r)),I=r=>a(s({},"__esModule",{value:!0}),r);var y={};B(y,{IconFastShipping:()=>u,default:()=>k});module.exports=I(y);var n=C(require("react"));var l=C(require("react")),i=({children:r,size:t=24,ariaLabel:o,color:p,ariaHidden:e=!0,style:m,...c})=>l.default.createElement("svg",{...c,"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:p,...m}},o&&!e&&l.default.createElement("title",null,o),r);var u=r=>n.default.createElement(i,{...r,ariaLabel:"fast-shipping, truck, delivery"},n.default.createElement("path",{d:"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M14.5 16.5H9.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M19.5008 16.5H21.5008L22.2508 10.5L20.2508 6.5H16.3008",stroke:"currentColor"}),n.default.createElement("path",{d:"M15.5 15L16.5 4.5H3.5L3.25 7.5H9M5 16.5H2.5L2.79167 13",stroke:"currentColor"}),n.default.createElement("path",{d:"M1 10.5H7",stroke:"currentColor"})),k=u;0&&(module.exports={IconFastShipping});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFastShipping/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFastShipping: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fast-shipping, truck, delivery\">\n <path\n d=\"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z\"\n stroke=\"currentColor\"\n />\n <path d=\"M14.5 16.5H9.5\" stroke=\"currentColor\" />\n <path\n d=\"M19.5008 16.5H21.5008L22.2508 10.5L20.2508 6.5H16.3008\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15.5 15L16.5 4.5H3.5L3.25 7.5H9M5 16.5H2.5L2.79167 13\"\n stroke=\"currentColor\"\n />\n <path d=\"M1 10.5H7\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFastShipping;\n","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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,sBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAoDC,GAE7D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,mLACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/C,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,EAIGE,EAAQJ","names":["IconFastShipping_exports","__export","IconFastShipping","IconFastShipping_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFastShipping","props","React","CentralIconBase","IconFastShipping_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import p from"react";var s=({children:o,size:t=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:a,...C})=>p.createElement("svg",{...C,"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,...a}},n&&!e&&p.createElement("title",null,n),o);var i=o=>r.createElement(s,{...o,ariaLabel:"fast-shipping, truck, delivery"},r.createElement("path",{d:"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z",stroke:"currentColor"}),r.createElement("path",{d:"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z",stroke:"currentColor"}),r.createElement("path",{d:"M14.5 16.5H9.5",stroke:"currentColor"}),r.createElement("path",{d:"M19.5008 16.5H21.5008L22.2508 10.5L20.2508 6.5H16.3008",stroke:"currentColor"}),r.createElement("path",{d:"M15.5 15L16.5 4.5H3.5L3.25 7.5H9M5 16.5H2.5L2.79167 13",stroke:"currentColor"}),r.createElement("path",{d:"M1 10.5H7",stroke:"currentColor"})),d=i;export{i as IconFastShipping,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconFastShipping/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFastShipping: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fast-shipping, truck, delivery\">\n <path\n d=\"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z\"\n stroke=\"currentColor\"\n />\n <path d=\"M14.5 16.5H9.5\" stroke=\"currentColor\" />\n <path\n d=\"M19.5008 16.5H21.5008L22.2508 10.5L20.2508 6.5H16.3008\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M15.5 15L16.5 4.5H3.5L3.25 7.5H9M5 16.5H2.5L2.79167 13\"\n stroke=\"currentColor\"\n />\n <path d=\"M1 10.5H7\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFastShipping;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,kCACpCC,EAAA,cAAC,QACC,EAAE,mLACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/CA,EAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFastShipping","props","React","CentralIconBase","IconFastShipping_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconShipping: React.FC<CentralIconBaseProps>;
4
+ export default IconShipping;
@@ -0,0 +1,2 @@
1
+ "use strict";var h=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of g(o))!x.call(r,e)&&e!==t&&l(r,e,{get:()=>o[e],enumerable:!(p=d(o,e))||p.enumerable});return r};var a=(r,o,t)=>(t=r!=null?h(f(r)):{},C(o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>C(l({},"__esModule",{value:!0}),r);var V={};B(V,{IconShipping:()=>m,default:()=>y});module.exports=I(V);var n=a(require("react"));var s=a(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:p,ariaHidden:e=!0,style:u,...c})=>s.default.createElement("svg",{...c,"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:p,...u}},t&&!e&&s.default.createElement("title",null,t),r);var m=r=>n.default.createElement(i,{...r,ariaLabel:"shipping, truck, delivery"},n.default.createElement("path",{d:"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M14.5 16.5H9.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M19.5 16.5H21.5V10.5L19.5 6.5H15.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M15.5 15V4.5H2.5V16.5H5",stroke:"currentColor"})),y=m;0&&(module.exports={IconShipping});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconShipping/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShipping: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shipping, truck, delivery\">\n <path\n d=\"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z\"\n stroke=\"currentColor\"\n />\n <path d=\"M14.5 16.5H9.5\" stroke=\"currentColor\" />\n <path d=\"M19.5 16.5H21.5V10.5L19.5 6.5H15.5\" stroke=\"currentColor\" />\n <path d=\"M15.5 15V4.5H2.5V16.5H5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconShipping;\n","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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,kBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAAkB,oBCAlB,IAAAC,EAAkB,oBAQLC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAc,EAAAG,QAAA,cAAC,aAAOL,CAAU,EAC9CF,CACH,ED9BG,IAAMQ,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,mLACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/C,EAAAA,QAAA,cAAC,QAAK,EAAE,qCAAqC,OAAO,eAAe,EACnE,EAAAA,QAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,CAC1D,EAIGE,EAAQJ","names":["IconShipping_exports","__export","IconShipping","IconShipping_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconShipping","props","React","CentralIconBase","IconShipping_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";var l=({children:t,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:C,...a})=>p.createElement("svg",{...a,"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:s,...C}},n&&!e&&p.createElement("title",null,n),t);var i=t=>o.createElement(l,{...t,ariaLabel:"shipping, truck, delivery"},o.createElement("path",{d:"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z",stroke:"currentColor"}),o.createElement("path",{d:"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z",stroke:"currentColor"}),o.createElement("path",{d:"M14.5 16.5H9.5",stroke:"currentColor"}),o.createElement("path",{d:"M19.5 16.5H21.5V10.5L19.5 6.5H15.5",stroke:"currentColor"}),o.createElement("path",{d:"M15.5 15V4.5H2.5V16.5H5",stroke:"currentColor"})),d=i;export{i as IconShipping,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconShipping/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShipping: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"shipping, truck, delivery\">\n <path\n d=\"M14.6016 17C14.6016 18.3807 15.7209 19.5 17.1016 19.5C18.4823 19.5 19.6016 18.3807 19.6016 17C19.6016 15.6193 18.4823 14.5 17.1016 14.5C15.7209 14.5 14.6016 15.6193 14.6016 17Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M4.5 17C4.5 18.3807 5.61929 19.5 7 19.5C8.38071 19.5 9.5 18.3807 9.5 17C9.5 15.6193 8.38071 14.5 7 14.5C5.61929 14.5 4.5 15.6193 4.5 17Z\"\n stroke=\"currentColor\"\n />\n <path d=\"M14.5 16.5H9.5\" stroke=\"currentColor\" />\n <path d=\"M19.5 16.5H21.5V10.5L19.5 6.5H15.5\" stroke=\"currentColor\" />\n <path d=\"M15.5 15V4.5H2.5V16.5H5\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconShipping;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,mLACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,2IACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/CA,EAAA,cAAC,QAAK,EAAE,qCAAqC,OAAO,eAAe,EACnEA,EAAA,cAAC,QAAK,EAAE,0BAA0B,OAAO,eAAe,CAC1D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconShipping","props","React","CentralIconBase","IconShipping_default"]}
package/README.md CHANGED
@@ -1318,6 +1318,7 @@ Below is a complete list of available icons:
1318
1318
  - IconDollar
1319
1319
  - IconEuro
1320
1320
  - IconFastDelivery
1321
+ - IconFastShipping
1321
1322
  - IconGift1
1322
1323
  - IconGift2
1323
1324
  - IconGiftBox
@@ -1347,6 +1348,7 @@ Below is a complete list of available icons:
1347
1348
  - IconReceiptTax
1348
1349
  - IconRemoveFromBasket
1349
1350
  - IconRemoveFromBasket2
1351
+ - IconShipping
1350
1352
  - IconShoppingBag1
1351
1353
  - IconShoppingBag2
1352
1354
  - IconShoppingBag3
package/icons/index.d.ts CHANGED
@@ -637,6 +637,7 @@ export type CentralIconName =
637
637
  | "IconFastForward15s"
638
638
  | "IconFastForward30s"
639
639
  | "IconFastForward5s"
640
+ | "IconFastShipping"
640
641
  | "IconFeather"
641
642
  | "IconFeature"
642
643
  | "IconFigma"
@@ -1240,6 +1241,7 @@ export type CentralIconName =
1240
1241
  | "IconShieldKeyhole"
1241
1242
  | "IconShift"
1242
1243
  | "IconShip"
1244
+ | "IconShipping"
1243
1245
  | "IconShoppingBag1"
1244
1246
  | "IconShoppingBag2"
1245
1247
  | "IconShoppingBag3"