@central-icons-react/square-outlined-radius-0-stroke-1 1.1.87 → 1.1.88
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/IconCloudWeather/index.d.ts +4 -0
- package/IconCloudWeather/index.js +2 -0
- package/IconCloudWeather/index.js.map +1 -0
- package/IconCloudWeather/index.mjs +2 -0
- package/IconCloudWeather/index.mjs.map +1 -0
- package/IconHandshake/index.d.ts +4 -0
- package/IconHandshake/index.js +2 -0
- package/IconHandshake/index.js.map +1 -0
- package/IconHandshake/index.mjs +2 -0
- package/IconHandshake/index.mjs.map +1 -0
- package/IconPeopleIdCard/index.d.ts +4 -0
- package/IconPeopleIdCard/index.js +2 -0
- package/IconPeopleIdCard/index.js.map +1 -0
- package/IconPeopleIdCard/index.mjs +2 -0
- package/IconPeopleIdCard/index.mjs.map +1 -0
- package/README.md +3 -1
- package/icons/index.d.ts +3 -1
- 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 +10 -6
- package/index.d.ts +12 -1
- 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/IconCloud1/index.d.ts +0 -4
- package/IconCloud1/index.js +0 -2
- package/IconCloud1/index.js.map +0 -1
- package/IconCloud1/index.mjs +0 -2
- package/IconCloud1/index.mjs.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var t in r)a(e,t,{get:r[t],enumerable:!0})},s=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of g(r))!x.call(e,o)&&o!==t&&a(e,o,{get:()=>r[o],enumerable:!(n=d(r,o))||n.enumerable});return e};var C=(e,r,t)=>(t=e!=null?f(h(e)):{},s(r||!e||!e.__esModule?a(t,"default",{value:e,enumerable:!0}):t,e)),I=e=>s(a({},"__esModule",{value:!0}),e);var y={};B(y,{IconCloudWeather:()=>m,default:()=>w});module.exports=I(y);var l=C(require("react"));var p=C(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:u,...i})=>p.default.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:n,...u}},t&&!o&&p.default.createElement("title",null,t),e);var m=e=>l.default.createElement(c,{...e,ariaLabel:"cloud-weather, clouds"},l.default.createElement("path",{d:"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z",stroke:"currentColor"})),w=m;0&&(module.exports={IconCloudWeather});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudWeather/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCloudWeather: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cloud-weather, clouds\">\n <path\n d=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudWeather;\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,yBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8PACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconCloudWeather_exports","__export","IconCloudWeather","IconCloudWeather_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCloudWeather","props","React","CentralIconBase","IconCloudWeather_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import p from"react";import n from"react";var a=({children:r,size:e=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:s,...C})=>n.createElement("svg",{...C,"aria-hidden":t,role:t?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:l,...s}},o&&!t&&n.createElement("title",null,o),r);var c=r=>p.createElement(a,{...r,ariaLabel:"cloud-weather, clouds"},p.createElement("path",{d:"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z",stroke:"currentColor"})),d=c;export{c as IconCloudWeather,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCloudWeather/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCloudWeather: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cloud-weather, clouds\">\n <path\n d=\"M17.25 19.5H8.85C4.79071 19.5 1.5 16.1421 1.5 12C1.5 7.85786 4.79071 4.5 8.85 4.5C11.8837 4.5 14.4881 6.37545 15.6105 9.05211C16.1263 8.87923 16.6775 8.78571 17.25 8.78571C20.1495 8.78571 22.5 11.1842 22.5 14.1429C22.5 17.1015 20.1495 19.5 17.25 19.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloudWeather;\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,yBACpCC,EAAA,cAAC,QACC,EAAE,8PACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCloudWeather","props","React","CentralIconBase","IconCloudWeather_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)a(e,t,{get:r[t],enumerable:!0})},l=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of g(r))!B.call(e,o)&&o!==t&&a(e,o,{get:()=>r[o],enumerable:!(n=u(r,o))||n.enumerable});return e};var C=(e,r,t)=>(t=e!=null?f(x(e)):{},l(r||!e||!e.__esModule?a(t,"default",{value:e,enumerable:!0}):t,e)),d=e=>l(a({},"__esModule",{value:!0}),e);var y={};I(y,{IconHandshake:()=>c,default:()=>w});module.exports=d(y);var s=C(require("react"));var p=C(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:i,...h})=>p.default.createElement("svg",{...h,"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:n,...i}},t&&!o&&p.default.createElement("title",null,t),e);var c=e=>s.default.createElement(m,{...e,ariaLabel:"handshake, heart"},s.default.createElement("path",{d:"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5",stroke:"currentColor"})),w=c;0&&(module.exports={IconHandshake});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHandshake/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHandshake: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"handshake, heart\">\n <path\n d=\"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHandshake;\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,mBAAAE,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,EAAiDC,GAE1D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yZACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconHandshake_exports","__export","IconHandshake","IconHandshake_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconHandshake","props","React","CentralIconBase","IconHandshake_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import p from"react";import n from"react";var a=({children:r,size:e=24,ariaLabel:o,color:s,ariaHidden:t=!0,style:l,...C})=>n.createElement("svg",{...C,"aria-hidden":t,role:t?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,...l}},o&&!t&&n.createElement("title",null,o),r);var m=r=>p.createElement(a,{...r,ariaLabel:"handshake, heart"},p.createElement("path",{d:"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5",stroke:"currentColor"})),u=m;export{m as IconHandshake,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHandshake/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHandshake: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"handshake, heart\">\n <path\n d=\"M11.8273 5.25646C9.48539 2.91452 5.68836 2.91451 3.34642 5.25645C1.16244 7.44043 0.978512 10.942 3.07886 13.2066C5.85546 16.2002 12.0015 21.25 12.0015 21.25C12.0015 21.25 18.1448 16.2002 20.9214 13.2066C23.0217 10.942 22.8378 7.44043 20.6538 5.25646C18.3119 2.91452 14.5148 2.91452 12.1729 5.25646L7.58687 9.84248L8.69018 10.9458C9.90887 12.1645 11.8847 12.1645 13.1034 10.9458L14.5745 9.47471L19.3516 14.5\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHandshake;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,yZACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconHandshake","props","React","CentralIconBase","IconHandshake_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var l=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,e)=>{for(var o in e)l(r,o,{get:e[o],enumerable:!0})},s=(r,e,o,p)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of g(e))!I.call(r,t)&&t!==o&&l(r,t,{get:()=>e[t],enumerable:!(p=f(e,t))||p.enumerable});return r};var c=(r,e,o)=>(o=r!=null?d(x(r)):{},s(e||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o,r)),B=r=>s(l({},"__esModule",{value:!0}),r);var P={};h(P,{IconPeopleIdCard:()=>i,default:()=>y});module.exports=B(P);var n=c(require("react"));var a=c(require("react")),C=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:m,...u})=>a.default.createElement("svg",{...u,"aria-hidden":t,role:t?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:p,...m}},o&&!t&&a.default.createElement("title",null,o),r);var i=r=>n.default.createElement(C,{...r,ariaLabel:"people-id-card, profile, user-account, badge, person"},n.default.createElement("path",{d:"M19.5 2.5H4.5V21.5H19.5V2.5Z",stroke:"currentColor"}),n.default.createElement("circle",{cx:"12",cy:"11.5",r:"2.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21",stroke:"currentColor"}),n.default.createElement("path",{d:"M9 5.5H15",stroke:"currentColor"})),y=i;0&&(module.exports={IconPeopleIdCard});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleIdCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleIdCard: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-id-card, profile, user-account, badge, person\"\n >\n <path d=\"M19.5 2.5H4.5V21.5H19.5V2.5Z\" stroke=\"currentColor\" />\n <circle cx=\"12\" cy=\"11.5\" r=\"2.5\" stroke=\"currentColor\" />\n <path\n d=\"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21\"\n stroke=\"currentColor\"\n />\n <path d=\"M9 5.5H15\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard;\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,CACE,GAAGF,EACJ,UAAU,wDAEV,EAAAC,QAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,MAAM,OAAO,eAAe,EACxD,EAAAA,QAAA,cAAC,QACC,EAAE,+DACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,EAIGE,EAAQJ","names":["IconPeopleIdCard_exports","__export","IconPeopleIdCard","IconPeopleIdCard_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPeopleIdCard","props","React","CentralIconBase","IconPeopleIdCard_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";var l=({children:o,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:s,...c})=>p.createElement("svg",{...c,"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:a,...s}},n&&!t&&p.createElement("title",null,n),o);var C=o=>e.createElement(l,{...o,ariaLabel:"people-id-card, profile, user-account, badge, person"},e.createElement("path",{d:"M19.5 2.5H4.5V21.5H19.5V2.5Z",stroke:"currentColor"}),e.createElement("circle",{cx:"12",cy:"11.5",r:"2.5",stroke:"currentColor"}),e.createElement("path",{d:"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21",stroke:"currentColor"}),e.createElement("path",{d:"M9 5.5H15",stroke:"currentColor"})),f=C;export{C as IconPeopleIdCard,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPeopleIdCard/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleIdCard: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-id-card, profile, user-account, badge, person\"\n >\n <path d=\"M19.5 2.5H4.5V21.5H19.5V2.5Z\" stroke=\"currentColor\" />\n <circle cx=\"12\" cy=\"11.5\" r=\"2.5\" stroke=\"currentColor\" />\n <path\n d=\"M17 21C17 18.2386 14.7614 16 12 16C9.23858 16 7 18.2386 7 21\"\n stroke=\"currentColor\"\n />\n <path d=\"M9 5.5H15\" stroke=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleIdCard;\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,CACE,GAAGF,EACJ,UAAU,wDAEVC,EAAA,cAAC,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,OAAO,EAAE,MAAM,OAAO,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,+DACF,OAAO,eACT,EACAA,EAAA,cAAC,QAAK,EAAE,YAAY,OAAO,eAAe,CAC5C,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleIdCard","props","React","CentralIconBase","IconPeopleIdCard_default"]}
|
package/README.md
CHANGED
|
@@ -950,6 +950,7 @@ Below is a complete list of available icons:
|
|
|
950
950
|
- IconFistbump
|
|
951
951
|
- IconHand4Finger
|
|
952
952
|
- IconHand5Finger
|
|
953
|
+
- IconHandshake
|
|
953
954
|
- IconHumanMashine
|
|
954
955
|
- IconMagicHands
|
|
955
956
|
- IconMoneyHand
|
|
@@ -1278,6 +1279,7 @@ Below is a complete list of available icons:
|
|
|
1278
1279
|
- IconPeopleCopy
|
|
1279
1280
|
- IconPeopleEdit
|
|
1280
1281
|
- IconPeopleGear
|
|
1282
|
+
- IconPeopleIdCard
|
|
1281
1283
|
- IconPeopleLike
|
|
1282
1284
|
- IconPeopleRemove
|
|
1283
1285
|
- IconPeopleRemove2
|
|
@@ -1952,8 +1954,8 @@ Below is a complete list of available icons:
|
|
|
1952
1954
|
|
|
1953
1955
|
### Weather
|
|
1954
1956
|
|
|
1955
|
-
- IconCloud1
|
|
1956
1957
|
- IconCloudSnow
|
|
1958
|
+
- IconCloudWeather
|
|
1957
1959
|
- IconCloudy
|
|
1958
1960
|
- IconCloudySun
|
|
1959
1961
|
- IconDrop
|
package/icons/index.d.ts
CHANGED
|
@@ -465,7 +465,6 @@ export type CentralIconName =
|
|
|
465
465
|
| "IconCloseQuote1"
|
|
466
466
|
| "IconCloseQuote2"
|
|
467
467
|
| "IconCloud"
|
|
468
|
-
| "IconCloud1"
|
|
469
468
|
| "IconCloudCheck"
|
|
470
469
|
| "IconCloudDownload"
|
|
471
470
|
| "IconCloudOff"
|
|
@@ -477,6 +476,7 @@ export type CentralIconName =
|
|
|
477
476
|
| "IconCloudSnow"
|
|
478
477
|
| "IconCloudSync"
|
|
479
478
|
| "IconCloudUpload"
|
|
479
|
+
| "IconCloudWeather"
|
|
480
480
|
| "IconCloudy"
|
|
481
481
|
| "IconCloudySparkle"
|
|
482
482
|
| "IconCloudySun"
|
|
@@ -840,6 +840,7 @@ export type CentralIconName =
|
|
|
840
840
|
| "IconHand4Finger"
|
|
841
841
|
| "IconHand5Finger"
|
|
842
842
|
| "IconHandBell"
|
|
843
|
+
| "IconHandshake"
|
|
843
844
|
| "IconHaptic"
|
|
844
845
|
| "IconHashtag"
|
|
845
846
|
| "IconHatBunny"
|
|
@@ -1149,6 +1150,7 @@ export type CentralIconName =
|
|
|
1149
1150
|
| "IconPeopleCopy"
|
|
1150
1151
|
| "IconPeopleEdit"
|
|
1151
1152
|
| "IconPeopleGear"
|
|
1153
|
+
| "IconPeopleIdCard"
|
|
1152
1154
|
| "IconPeopleLike"
|
|
1153
1155
|
| "IconPeopleRemove"
|
|
1154
1156
|
| "IconPeopleRemove2"
|