@central-icons-react/round-outlined-radius-1-stroke-1 1.0.7 → 1.0.8

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBank2: React.FC<CentralIconBaseProps>;
4
+ export default IconBank2;
@@ -0,0 +1,2 @@
1
+ "use strict";var k=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var V=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of L(o))!h.call(r,n)&&n!==e&&s(r,n,{get:()=>o[n],enumerable:!(p=m(o,n))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?k(f(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>i(s({},"__esModule",{value:!0}),r);var B={};V(B,{IconBank2:()=>C,default:()=>x});module.exports=g(B);var t=a(require("react"));var l=a(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:p,ariaHidden:n=!0,style:c,...d})=>l.default.createElement("svg",{...d,"aria-hidden":n,role:n?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,...c}},e&&!n&&l.default.createElement("title",null,e),r);var C=r=>t.default.createElement(u,{...r,ariaLabel:"bank-2, library, gov"},t.default.createElement("path",{d:"M21.5 20C21.7761 20 22 20.2239 22 20.5C22 20.7761 21.7761 21 21.5 21H2.5C2.22386 21 2 20.7761 2 20.5C2 20.2239 2.22386 20 2.5 20H21.5Z",fill:"currentColor"}),t.default.createElement("path",{d:"M3.5 20.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M3.07191 6.72909L11.5719 2.70278C11.8429 2.57443 12.1571 2.57443 12.4281 2.70278L20.9281 6.72909C21.2773 6.89453 21.5 7.24638 21.5 7.63283V9.5C21.5 10.0523 21.0523 10.5 20.5 10.5H3.5C2.94772 10.5 2.5 10.0523 2.5 9.5V7.63283C2.5 7.24638 2.72267 6.89453 3.07191 6.72909Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M20.5 20.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M9.5 20.5V13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("path",{d:"M14.5 20.5V13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement("circle",{cx:"12",cy:"7",r:"1",fill:"currentColor"})),x=C;0&&(module.exports={IconBank2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBank2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBank2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bank-2, library, gov\">\n <path\n d=\"M21.5 20C21.7761 20 22 20.2239 22 20.5C22 20.7761 21.7761 21 21.5 21H2.5C2.22386 21 2 20.7761 2 20.5C2 20.2239 2.22386 20 2.5 20H21.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.5 20.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.07191 6.72909L11.5719 2.70278C11.8429 2.57443 12.1571 2.57443 12.4281 2.70278L20.9281 6.72909C21.2773 6.89453 21.5 7.24638 21.5 7.63283V9.5C21.5 10.0523 21.0523 10.5 20.5 10.5H3.5C2.94772 10.5 2.5 10.0523 2.5 9.5V7.63283C2.5 7.24638 2.72267 6.89453 3.07191 6.72909Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20.5 20.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.5 20.5V13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.5 20.5V13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle cx=\"12\" cy=\"7\" r=\"1\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBank2;\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,eAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpC,EAAAC,QAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+QACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,KAAK,eAAe,CACnD,EAIGE,EAAQJ","names":["IconBank2_exports","__export","IconBank2","IconBank2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconBank2","props","React","CentralIconBase","IconBank2_default"]}
@@ -0,0 +1,2 @@
1
+ import r from"react";import p from"react";var s=({children:e,size:o=24,ariaLabel:t,color:l,ariaHidden:n=!0,style:i,...a})=>p.createElement("svg",{...a,"aria-hidden":n,role:n?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,...i}},t&&!n&&p.createElement("title",null,t),e);var u=e=>r.createElement(s,{...e,ariaLabel:"bank-2, library, gov"},r.createElement("path",{d:"M21.5 20C21.7761 20 22 20.2239 22 20.5C22 20.7761 21.7761 21 21.5 21H2.5C2.22386 21 2 20.7761 2 20.5C2 20.2239 2.22386 20 2.5 20H21.5Z",fill:"currentColor"}),r.createElement("path",{d:"M3.5 20.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M3.07191 6.72909L11.5719 2.70278C11.8429 2.57443 12.1571 2.57443 12.4281 2.70278L20.9281 6.72909C21.2773 6.89453 21.5 7.24638 21.5 7.63283V9.5C21.5 10.0523 21.0523 10.5 20.5 10.5H3.5C2.94772 10.5 2.5 10.0523 2.5 9.5V7.63283C2.5 7.24638 2.72267 6.89453 3.07191 6.72909Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 20.5V10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M9.5 20.5V13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M14.5 20.5V13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("circle",{cx:"12",cy:"7",r:"1",fill:"currentColor"})),m=u;export{u as IconBank2,m as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBank2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBank2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"bank-2, library, gov\">\n <path\n d=\"M21.5 20C21.7761 20 22 20.2239 22 20.5C22 20.7761 21.7761 21 21.5 21H2.5C2.22386 21 2 20.7761 2 20.5C2 20.2239 2.22386 20 2.5 20H21.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.5 20.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M3.07191 6.72909L11.5719 2.70278C11.8429 2.57443 12.1571 2.57443 12.4281 2.70278L20.9281 6.72909C21.2773 6.89453 21.5 7.24638 21.5 7.63283V9.5C21.5 10.0523 21.0523 10.5 20.5 10.5H3.5C2.94772 10.5 2.5 10.0523 2.5 9.5V7.63283C2.5 7.24638 2.72267 6.89453 3.07191 6.72909Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M20.5 20.5V10.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M9.5 20.5V13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <path\n d=\"M14.5 20.5V13.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <circle cx=\"12\" cy=\"7\" r=\"1\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconBank2;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,EAAE,yIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,+QACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,cAAc,QACd,eAAe,QACjB,EACAA,EAAA,cAAC,UAAO,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,KAAK,eAAe,CACnD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconBank2","props","React","CentralIconBase","IconBank2_default"]}
package/README.md CHANGED
@@ -356,6 +356,7 @@ Below is a complete list of available icons:
356
356
  ### Building
357
357
 
358
358
  - IconBank
359
+ - IconBank2
359
360
  - IconBlock
360
361
  - IconBuildings
361
362
  - IconCourt
package/icons/index.d.ts CHANGED
@@ -160,6 +160,7 @@ export type CentralIconName =
160
160
  | "IconBalloon"
161
161
  | "IconBanana"
162
162
  | "IconBank"
163
+ | "IconBank2"
163
164
  | "IconBanknote1"
164
165
  | "IconBanknote2"
165
166
  | "IconBarcode"