@central-icons-react/square-outlined-radius-0-stroke-1.5 0.0.55 → 0.0.56
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/IconFaceIdFace/index.d.ts +4 -0
- package/IconFaceIdFace/index.js +2 -0
- package/IconFaceIdFace/index.js.map +1 -0
- package/IconFaceIdFace/index.mjs +2 -0
- package/IconFaceIdFace/index.mjs.map +1 -0
- package/IconFinderFace/index.js +1 -1
- package/IconFinderFace/index.js.map +1 -1
- package/IconFinderFace/index.mjs +1 -1
- package/IconFinderFace/index.mjs.map +1 -1
- package/IconNpm/index.d.ts +4 -0
- package/IconNpm/index.js +2 -0
- package/IconNpm/index.js.map +1 -0
- package/IconNpm/index.mjs +2 -0
- package/IconNpm/index.mjs.map +1 -0
- package/README.md +2 -0
- package/icons/index.d.ts +2 -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 +8 -4
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var m=Object.create;var a=Object.defineProperty;var h=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var t in e)a(r,t,{get:e[t],enumerable:!0})},l=(r,e,t,s)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of k(e))!I.call(r,o)&&o!==t&&a(r,o,{get:()=>e[o],enumerable:!(s=h(e,o))||s.enumerable});return r};var c=(r,e,t)=>(t=r!=null?m(f(r)):{},l(e||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>l(a({},"__esModule",{value:!0}),r);var V={};g(V,{IconFaceIdFace:()=>u,default:()=>B});module.exports=x(V);var n=c(require("react"));var p=c(require("react")),i=({children:r,size:e=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:C,...d})=>p.default.createElement("svg",{...d,"aria-hidden":o,role:o?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:s,...C}},t&&!o&&p.default.createElement("title",null,t),r);var u=r=>n.default.createElement(i,{...r,ariaLabel:"face-id-face"},n.default.createElement("path",{d:"M5.75 17.5C9.9491 21.1667 14.0509 21.1667 18.25 17.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M12.75 5.75V12.25C12.75 13.3546 11.8546 14.25 10.75 14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M4.75 4.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),n.default.createElement("path",{d:"M19.25 4.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),B=u;0&&(module.exports={IconFaceIdFace});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFaceIdFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFaceIdFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"face-id-face\">\n <path\n d=\"M5.75 17.5C9.9491 21.1667 14.0509 21.1667 18.25 17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.75 5.75V12.25C12.75 13.3546 11.8546 14.25 10.75 14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.75 4.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M19.25 4.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFaceIdFace;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,4DACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconFaceIdFace_exports","__export","IconFaceIdFace","IconFaceIdFace_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFaceIdFace","props","React","CentralIconBase","IconFaceIdFace_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import s from"react";var a=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:o=!0,style:l,...c})=>s.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:p,...l}},n&&!o&&s.createElement("title",null,n),t);var i=t=>e.createElement(a,{...t,ariaLabel:"face-id-face"},e.createElement("path",{d:"M5.75 17.5C9.9491 21.1667 14.0509 21.1667 18.25 17.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),e.createElement("path",{d:"M12.75 5.75V12.25C12.75 13.3546 11.8546 14.25 10.75 14.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),e.createElement("path",{d:"M4.75 4.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),e.createElement("path",{d:"M19.25 4.75V8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),h=i;export{i as IconFaceIdFace,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconFaceIdFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFaceIdFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"face-id-face\">\n <path\n d=\"M5.75 17.5C9.9491 21.1667 14.0509 21.1667 18.25 17.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M12.75 5.75V12.25C12.75 13.3546 11.8546 14.25 10.75 14.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M4.75 4.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M19.25 4.75V8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFaceIdFace;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gBACpCC,EAAA,cAAC,QACC,EAAE,uDACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,4DACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFaceIdFace","props","React","CentralIconBase","IconFaceIdFace_default"]}
|
package/IconFinderFace/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var h=Object.create;var s=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var x=(r,t)=>{for(var e in t)s(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of f(t))!k.call(r,o)&&o!==e&&s(r,o,{get:()=>t[o],enumerable:!(p=u(t,o))||p.enumerable});return r};var i=(r,t,e)=>(e=r!=null?h(g(r)):{},l(t||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>l(s({},"__esModule",{value:!0}),r);var w={};x(w,{IconFinderFace:()=>c,default:()=>I});module.exports=B(w);var n=i(require("react"));var a=i(require("react")),C=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:d,...m})=>a.default.createElement("svg",{...m,"aria-hidden":o,role:o?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,...d}},e&&!o&&a.default.createElement("title",null,e),r);var c=r=>n.default.createElement(C,{...r,ariaLabel:"finder-face"},n.default.createElement("path",{d:"M7 7V10",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M17 7V10",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M14 2C12.16 5.87015 10.8443 8.79922 10 13H13C12.4417 16.0502 12.4417 18.9498 13 22",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M5 16C9.78201 19.5635 14.218 19.5635 19 16",stroke:"currentColor",strokeWidth:"1.5"})),I=c;0&&(module.exports={IconFinderFace});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconFinderFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFinderFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"finder-face\">\n <path
|
|
1
|
+
{"version":3,"sources":["../src/IconFinderFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFinderFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"finder-face\">\n <path d=\"M7 7V10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M17 7V10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M14 2C12.16 5.87015 10.8443 8.79922 10 13H13C12.4417 16.0502 12.4417 18.9498 13 22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M5 16C9.78201 19.5635 14.218 19.5635 19 16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFinderFace;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,eACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,UAAU,OAAO,eAAe,YAAY,MAAM,EAC1D,EAAAA,QAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,MAAM,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,qFACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6CACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconFinderFace_exports","__export","IconFinderFace","IconFinderFace_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconFinderFace","props","React","CentralIconBase","IconFinderFace_default"]}
|
package/IconFinderFace/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import t from"react";import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...i})=>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),e);var C=e=>t.createElement(s,{...e,ariaLabel:"finder-face"},t.createElement("path",{d:"M7 7V10",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement("path",{d:"M17 7V10",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement("path",{d:"M14 2C12.16 5.87015 10.8443 8.79922 10 13H13C12.4417 16.0502 12.4417 18.9498 13 22",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement("path",{d:"M5 16C9.78201 19.5635 14.218 19.5635 19 16",stroke:"currentColor",strokeWidth:"1.5"})),u=C;export{C as IconFinderFace,u as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconFinderFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFinderFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"finder-face\">\n <path
|
|
1
|
+
{"version":3,"sources":["../src/IconFinderFace/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFinderFace: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"finder-face\">\n <path d=\"M7 7V10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M17 7V10\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path\n d=\"M14 2C12.16 5.87015 10.8443 8.79922 10 13H13C12.4417 16.0502 12.4417 18.9498 13 22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M5 16C9.78201 19.5635 14.218 19.5635 19 16\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFinderFace;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,eACpCC,EAAA,cAAC,QAAK,EAAE,UAAU,OAAO,eAAe,YAAY,MAAM,EAC1DA,EAAA,cAAC,QAAK,EAAE,WAAW,OAAO,eAAe,YAAY,MAAM,EAC3DA,EAAA,cAAC,QACC,EAAE,qFACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,6CACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFinderFace","props","React","CentralIconBase","IconFinderFace_default"]}
|
package/IconNpm/index.js
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},s=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of x(e))!I.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(n=g(e,o))||n.enumerable});return r};var m=(r,e,t)=>(t=r!=null?u(B(r)):{},s(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),h=r=>s(p({},"__esModule",{value:!0}),r);var y={};V(y,{IconNpm:()=>i,default:()=>w});module.exports=h(y);var l=m(require("react"));var a=m(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...C})=>a.default.createElement("svg",{...C,"aria-hidden":o,role:o?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:n,...f}},t&&!o&&a.default.createElement("title",null,t),r);var i=r=>l.default.createElement(c,{...r,ariaLabel:"npm"},l.default.createElement("path",{d:"M3 21H12V7.5H16.5V21H21V3H3V21Z",fill:"currentColor"})),w=i;0&&(module.exports={IconNpm});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconNpm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNpm: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"npm\">\n <path d=\"M3 21H12V7.5H16.5V21H21V3H3V21Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconNpm;\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,OACpC,EAAAC,QAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["IconNpm_exports","__export","IconNpm","IconNpm_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconNpm","props","React","CentralIconBase","IconNpm_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import a from"react";import n from"react";var p=({children:e,size:r=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:s,...m})=>n.createElement("svg",{...m,"aria-hidden":t,role:t?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,...s}},o&&!t&&n.createElement("title",null,o),e);var c=e=>a.createElement(p,{...e,ariaLabel:"npm"},a.createElement("path",{d:"M3 21H12V7.5H16.5V21H21V3H3V21Z",fill:"currentColor"})),g=c;export{c as IconNpm,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconNpm/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNpm: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"npm\">\n <path d=\"M3 21H12V7.5H16.5V21H21V3H3V21Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconNpm;\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,OACpCC,EAAA,cAAC,QAAK,EAAE,kCAAkC,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNpm","props","React","CentralIconBase","IconNpm_default"]}
|
package/README.md
CHANGED
|
@@ -659,6 +659,7 @@ Below is a complete list of available icons:
|
|
|
659
659
|
- IconBlankPageLandscape
|
|
660
660
|
- IconBlankPagePortrait
|
|
661
661
|
- IconDossier
|
|
662
|
+
- IconFaceIdFace
|
|
662
663
|
- IconFileBend
|
|
663
664
|
- IconFileChart
|
|
664
665
|
- IconFileCloud
|
|
@@ -1376,6 +1377,7 @@ Below is a complete list of available icons:
|
|
|
1376
1377
|
- IconNintendoSwitch
|
|
1377
1378
|
- IconNotion
|
|
1378
1379
|
- IconNotionAi
|
|
1380
|
+
- IconNpm
|
|
1379
1381
|
- IconOpenai
|
|
1380
1382
|
- IconOpera
|
|
1381
1383
|
- IconPatreon
|
package/icons/index.d.ts
CHANGED
|
@@ -610,6 +610,7 @@ export type CentralIconName =
|
|
|
610
610
|
| "IconEyeSparkle"
|
|
611
611
|
| "IconFacebook"
|
|
612
612
|
| "IconFaceId"
|
|
613
|
+
| "IconFaceIdFace"
|
|
613
614
|
| "IconFashion"
|
|
614
615
|
| "IconFastDelivery"
|
|
615
616
|
| "IconFastForward"
|
|
@@ -948,6 +949,7 @@ export type CentralIconName =
|
|
|
948
949
|
| "IconNoteText"
|
|
949
950
|
| "IconNotion"
|
|
950
951
|
| "IconNotionAi"
|
|
952
|
+
| "IconNpm"
|
|
951
953
|
| "IconNuclearPowerPlant"
|
|
952
954
|
| "IconNumberedList"
|
|
953
955
|
| "IconOculus"
|