@central-icons-react/square-outlined-radius-0-stroke-1 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 x=Object.create;var s=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var y=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of y(o))!d.call(r,t)&&t!==e&&s(r,t,{get:()=>o[t],enumerable:!(l=f(o,t))||l.enumerable});return r};var a=(r,o,e)=>(e=r!=null?x(L(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),k=r=>i(s({},"__esModule",{value:!0}),r);var B={};g(B,{IconPan:()=>u,default:()=>h});module.exports=k(B);var n=a(require("react"));var p=a(require("react")),c=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:C,...m})=>p.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&&p.default.createElement("title",null,e),r);var u=r=>n.default.createElement(c,{...r,ariaLabel:"pan, cooking, skills"},n.default.createElement("path",{d:"M15.8703 12.9548L23.8008 11M2.80078 16.1763L15.8869 12.9527L16.2634 14.4445C16.6792 16.0924 15.6643 17.7613 13.9964 18.1721L6.95006 19.9079C5.28223 20.3188 3.59309 19.316 3.17725 17.6682L2.80078 16.1763Z",stroke:"currentColor"}),n.default.createElement("path",{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),n.default.createElement("ellipse",{cx:"13.25",cy:"7.03",rx:"0.75",ry:"0.78",fill:"currentColor"}),n.default.createElement("ellipse",{cx:"8.75",cy:"9.03",rx:"0.75",ry:"0.78",fill:"currentColor"}),n.default.createElement("ellipse",{cx:"4.25",cy:"5.78",rx:"0.75",ry:"0.78",fill:"currentColor"})),h=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.8703 12.9548L23.8008 11M2.80078 16.1763L15.8869 12.9527L16.2634 14.4445C16.6792 16.0924 15.6643 17.7613 13.9964 18.1721L6.95006 19.9079C5.28223 20.3188 3.59309 19.316 3.17725 17.6682L2.80078 16.1763Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <ellipse cx=\"13.25\" cy=\"7.03\" rx=\"0.75\" ry=\"0.78\" fill=\"currentColor\" />\n <ellipse cx=\"8.75\" cy=\"9.03\" rx=\"0.75\" ry=\"0.78\" fill=\"currentColor\" />\n <ellipse cx=\"4.25\" cy=\"5.78\" rx=\"0.75\" ry=\"0.78\" 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,8MACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,WAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,EACtE,EAAAA,QAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,EACrE,EAAAA,QAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,CACvE,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:p,ariaHidden:t=!0,style:i,...a})=>l.createElement("svg",{...a,"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:p,...i}},n&&!t&&l.createElement("title",null,n),e);var c=e=>r.createElement(s,{...e,ariaLabel:"pan, cooking, skills"},r.createElement("path",{d:"M15.8703 12.9548L23.8008 11M2.80078 16.1763L15.8869 12.9527L16.2634 14.4445C16.6792 16.0924 15.6643 17.7613 13.9964 18.1721L6.95006 19.9079C5.28223 20.3188 3.59309 19.316 3.17725 17.6682L2.80078 16.1763Z",stroke:"currentColor"}),r.createElement("path",{d:"M8.75 5L9.5 3.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),r.createElement("path",{d:"M4.30391 10.5L3 9.5",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}),r.createElement("ellipse",{cx:"13.25",cy:"7.03",rx:"0.75",ry:"0.78",fill:"currentColor"}),r.createElement("ellipse",{cx:"8.75",cy:"9.03",rx:"0.75",ry:"0.78",fill:"currentColor"}),r.createElement("ellipse",{cx:"4.25",cy:"5.78",rx:"0.75",ry:"0.78",fill:"currentColor"})),f=c;export{c 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.8703 12.9548L23.8008 11M2.80078 16.1763L15.8869 12.9527L16.2634 14.4445C16.6792 16.0924 15.6643 17.7613 13.9964 18.1721L6.95006 19.9079C5.28223 20.3188 3.59309 19.316 3.17725 17.6682L2.80078 16.1763Z\"\n stroke=\"currentColor\"\n />\n <path\n d=\"M8.75 5L9.5 3.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M4.30391 10.5L3 9.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n strokeLinejoin=\"round\"\n />\n <ellipse cx=\"13.25\" cy=\"7.03\" rx=\"0.75\" ry=\"0.78\" fill=\"currentColor\" />\n <ellipse cx=\"8.75\" cy=\"9.03\" rx=\"0.75\" ry=\"0.78\" fill=\"currentColor\" />\n <ellipse cx=\"4.25\" cy=\"5.78\" rx=\"0.75\" ry=\"0.78\" 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,8MACF,OAAO,eACT,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,sBACF,OAAO,eACP,cAAc,SACd,eAAe,QACjB,EACAA,EAAA,cAAC,WAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,EACtEA,EAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,EACrEA,EAAA,cAAC,WAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,KAAK,eAAe,CACvE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPan","props","React","CentralIconBase","IconPan_default"]}
|
package/README.md
CHANGED