@central-icons-react/square-outlined-radius-0-stroke-2 1.1.9 → 1.1.10
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/IconPan/index.d.ts +4 -0
- package/IconPan/index.js +2 -0
- package/IconPan/index.js.map +1 -0
- package/IconPan/index.mjs +2 -0
- package/IconPan/index.mjs.map +1 -0
- package/README.md +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
package/IconPan/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of k(o))!h.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(l=f(o,t))||l.enumerable});return r};var c=(r,o,e)=>(e=r!=null?d(L(r)):{},p(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>p(s({},"__esModule",{value:!0}),r);var B={};x(B,{IconPan:()=>u,default:()=>y});module.exports=g(B);var n=c(require("react"));var i=c(require("react")),a=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:C,...m})=>i.default.createElement("svg",{...m,"aria-hidden":t,role:t?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:l,...C}},e&&!t&&i.default.createElement("title",null,e),r);var u=r=>n.default.createElement(a,{...r,ariaLabel:"pan, cooking, skills"},n.default.createElement("path",{d:"M15.8478 13.1073L23.4921 11.2002M3.25 16.2502L15.8638 13.1052L16.2267 14.5607C16.6276 16.1683 15.6492 17.7965 14.0416 18.1973L7.24954 19.8908C5.6419 20.2916 4.01371 19.3133 3.61288 17.7056L3.25 16.2502Z",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement("path",{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("circle",{cx:"13.5",cy:"7.25",r:"1",fill:"currentColor"}),n.default.createElement("circle",{cx:"9",cy:"9.25",r:"1",fill:"currentColor"}),n.default.createElement("circle",{cx:"4.5",cy:"6",r:"1",fill:"currentColor"})),y=u;0&&(module.exports={IconPan});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPan/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPan: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pan, cooking, skills\">\n <path\n d=\"M15.8478 13.1073L23.4921 11.2002M3.25 16.2502L15.8638 13.1052L16.2267 14.5607C16.6276 16.1683 15.6492 17.7965 14.0416 18.1973L7.24954 19.8908C5.6419 20.2916 4.01371 19.3133 3.61288 17.7056L3.25 16.2502Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <circle cx=\"13.5\" cy=\"7.25\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"9\" cy=\"9.25\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"4.5\" cy=\"6\" r=\"1\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPan;\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,aAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,6MACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,YAAY,MACZ,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACtD,EAAAA,QAAA,cAAC,UAAO,GAAG,IAAI,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACnD,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,IAAI,EAAE,IAAI,KAAK,eAAe,CACpD,EAIGE,EAAQJ","names":["IconPan_exports","__export","IconPan","IconPan_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPan","props","React","CentralIconBase","IconPan_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import l from"react";var s=({children:e,size:o=24,ariaLabel:n,color:i,ariaHidden:t=!0,style:p,...c})=>l.createElement("svg",{...c,"aria-hidden":t,role:t?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:i,...p}},n&&!t&&l.createElement("title",null,n),e);var a=e=>r.createElement(s,{...e,ariaLabel:"pan, cooking, skills"},r.createElement("path",{d:"M15.8478 13.1073L23.4921 11.2002M3.25 16.2502L15.8638 13.1052L16.2267 14.5607C16.6276 16.1683 15.6492 17.7965 14.0416 18.1973L7.24954 19.8908C5.6419 20.2916 4.01371 19.3133 3.61288 17.7056L3.25 16.2502Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement("path",{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"square",strokeLinejoin:"round"}),r.createElement("path",{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeWidth:"1.8",strokeLinecap:"square",strokeLinejoin:"round"}),r.createElement("circle",{cx:"13.5",cy:"7.25",r:"1",fill:"currentColor"}),r.createElement("circle",{cx:"9",cy:"9.25",r:"1",fill:"currentColor"}),r.createElement("circle",{cx:"4.5",cy:"6",r:"1",fill:"currentColor"})),f=a;export{a as IconPan,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPan/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPan: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pan, cooking, skills\">\n <path\n d=\"M15.8478 13.1073L23.4921 11.2002M3.25 16.2502L15.8638 13.1052L16.2267 14.5607C16.6276 16.1683 15.6492 17.7965 14.0416 18.1973L7.24954 19.8908C5.6419 20.2916 4.01371 19.3133 3.61288 17.7056L3.25 16.2502Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <circle cx=\"13.5\" cy=\"7.25\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"9\" cy=\"9.25\" r=\"1\" fill=\"currentColor\" />\n <circle cx=\"4.5\" cy=\"6\" r=\"1\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPan;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,6MACF,OAAO,eACP,YAAY,IACd,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,YAAY,MACZ,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACtDA,EAAA,cAAC,UAAO,GAAG,IAAI,GAAG,OAAO,EAAE,IAAI,KAAK,eAAe,EACnDA,EAAA,cAAC,UAAO,GAAG,MAAM,GAAG,IAAI,EAAE,IAAI,KAAK,eAAe,CACpD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPan","props","React","CentralIconBase","IconPan_default"]}
|
package/README.md
CHANGED