@central-icons-react/round-outlined-radius-1-stroke-1 1.1.288 → 1.1.289
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IconPackageDelivery/index.js +2 -2
- package/IconPackageDelivery/index.js.map +3 -3
- package/IconPackageDelivery/index.mjs +2 -2
- package/IconPackageDelivery/index.mjs.map +3 -3
- package/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 +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:y,defineProperty:a,getOwnPropertyNames:c,getOwnPropertyDescriptor:B}=Object,k=Object.prototype.hasOwnProperty;function m(r){return this[r]}var I,V,L=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var p=o?I??=new WeakMap:V??=new WeakMap,i=p.get(r);if(i)return i}e=r!=null?x(y(r)):{};let s=o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let l of c(r))if(!k.call(s,l))a(s,l,{get:m.bind(r,l),enumerable:!0});if(n)p.set(r,s);return s},g=(r)=>{var o=(d??=new WeakMap).get(r),e;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!k.call(o,n))a(o,n,{get:m.bind(r,n),enumerable:!(e=B(r,n))||e.enumerable})}return d.set(r,o),o},d;var P=(r)=>r;function v(r,o){this[r]=P.bind(null,o)}var h=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0,configurable:!0,set:v.bind(o,e)})};var w={};h(w,{CentralIconBase:()=>C});module.exports=g(w);var u=L(require("react")),C=({children:r,size:o=24,ariaLabel:e,color:n,ariaHidden:p=!0,style:i,...s})=>{return u.default.createElement("svg",{...s,"aria-hidden":p,role:p?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:n,...i}},e&&!p&&u.default.createElement("title",null,e),r)};var b={};h(b,{default:()=>j,IconPackageDelivery:()=>f});module.exports=g(b);var t=L(require("react"));var f=(r)=>{return t.default.createElement(C,{...r,ariaLabel:"package-delivery"},t.default.createElement("path",{d:"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M10 17.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M15.5 8.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},j=f;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=07C9C87F5ED4890B64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 17.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.5 8.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,+ECjCY,IAAlB,sBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,wBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,oBAAmB,wBAAC,OAAD,CAAM,EAAE,iLAAiL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kDAAkD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG72B",
|
|
9
|
+
"debugId": "07C9C87F5ED4890B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
1
|
+
import p from"react";var s=({children:e,size:r=24,ariaLabel:t,color:a,ariaHidden:n=!0,style:i,...l})=>{return p.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:a,...i}},t&&!n&&p.createElement("title",null,t),e)};import o from"react";var u=(e)=>{return o.createElement(s,{...e,ariaLabel:"package-delivery"},o.createElement("path",{d:"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M10 17.5H20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M15.5 8.5V4.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},L=u;export{L as default,u as IconPackageDelivery};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=374A783210924C6664756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconPackageDelivery/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPackageDelivery: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"package-delivery\"><path d=\"M10.5 5.5C10.5 4.94772 10.9477 4.5 11.5 4.5H15.5H19.5C20.0523 4.5 20.5 4.94772 20.5 5.5V12.5C20.5 13.0523 20.0523 13.5 19.5 13.5H11.5C10.9477 13.5 10.5 13.0523 10.5 12.5V5.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.55078 17.5C9.55078 19.1569 8.20764 20.5 6.55078 20.5C4.89393 20.5 3.55078 19.1569 3.55078 17.5C3.55078 15.8431 4.89393 14.5 6.55078 14.5C8.20764 14.5 9.55078 15.8431 9.55078 17.5Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M3.5 3.5H5.5C6.05228 3.5 6.5 3.94772 6.5 4.5V14\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10 17.5H20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M15.5 8.5V4.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPackageDelivery;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,oBAAmB,gBAAC,OAAD,CAAM,EAAE,iLAAiL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,kDAAkD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG72B",
|
|
9
|
+
"debugId": "374A783210924C6664756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|