@central-icons-react/square-filled-radius-0-stroke-1 1.1.56 → 1.1.57
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/IconExclamationCircleBold/index.d.ts +4 -0
- package/IconExclamationCircleBold/index.js +2 -0
- package/IconExclamationCircleBold/index.js.map +1 -0
- package/IconExclamationCircleBold/index.mjs +2 -0
- package/IconExclamationCircleBold/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 +4 -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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var d=Object.create;var l=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,o)=>{for(var r in o)l(e,r,{get:o[r],enumerable:!0})},i=(e,o,r,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of x(o))!B.call(e,t)&&t!==r&&l(e,t,{get:()=>o[t],enumerable:!(n=u(o,t))||n.enumerable});return e};var C=(e,o,r)=>(r=e!=null?d(g(e)):{},i(o||!e||!e.__esModule?l(r,"default",{value:e,enumerable:!0}):r,e)),w=e=>i(l({},"__esModule",{value:!0}),e);var h={};I(h,{IconExclamationCircleBold:()=>s,default:()=>b});module.exports=w(h);var p=C(require("react"));var a=C(require("react")),c=({children:e,size:o=24,ariaLabel:r,color:n,ariaHidden:t=!0,style:m,...f})=>a.default.createElement("svg",{...f,"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:n,...m}},r&&!t&&a.default.createElement("title",null,r),e);var s=e=>p.default.createElement(c,{...e,ariaLabel:"exclamation-circle-bold, info, warning"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.0996C11.503 15.0997 11.1006 15.503 11.1006 16C11.1008 16.4968 11.5031 16.8994 12 16.8994C12.4969 16.8994 12.9002 16.4969 12.9004 16C12.9004 15.5029 12.4971 15.0996 12 15.0996ZM11.5 13.5H12.5L12.75 7H11.25L11.5 13.5Z",fill:"currentColor"})),b=s;0&&(module.exports={IconExclamationCircleBold});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationCircleBold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconExclamationCircleBold: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"exclamation-circle-bold, info, warning\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.0996C11.503 15.0997 11.1006 15.503 11.1006 16C11.1008 16.4968 11.5031 16.8994 12 16.8994C12.4969 16.8994 12.9002 16.4969 12.9004 16C12.9004 15.5029 12.4971 15.0996 12 15.0996ZM11.5 13.5H12.5L12.75 7H11.25L11.5 13.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationCircleBold;\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,+BAAAE,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,EACXC,GAGE,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,0CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconExclamationCircleBold_exports","__export","IconExclamationCircleBold","IconExclamationCircleBold_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconExclamationCircleBold","props","React","CentralIconBase","IconExclamationCircleBold_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import a from"react";import n from"react";var l=({children:o,size:e=24,ariaLabel:t,color:p,ariaHidden:r=!0,style:i,...C})=>n.createElement("svg",{...C,"aria-hidden":r,role:r?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,...i}},t&&!r&&n.createElement("title",null,t),o);var c=o=>a.createElement(l,{...o,ariaLabel:"exclamation-circle-bold, info, warning"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.0996C11.503 15.0997 11.1006 15.503 11.1006 16C11.1008 16.4968 11.5031 16.8994 12 16.8994C12.4969 16.8994 12.9002 16.4969 12.9004 16C12.9004 15.5029 12.4971 15.0996 12 15.0996ZM11.5 13.5H12.5L12.75 7H11.25L11.5 13.5Z",fill:"currentColor"})),u=c;export{c as IconExclamationCircleBold,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconExclamationCircleBold/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconExclamationCircleBold: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"exclamation-circle-bold, info, warning\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 15.0996C11.503 15.0997 11.1006 15.503 11.1006 16C11.1008 16.4968 11.5031 16.8994 12 16.8994C12.4969 16.8994 12.9002 16.4969 12.9004 16C12.9004 15.5029 12.4971 15.0996 12 15.0996ZM11.5 13.5H12.5L12.75 7H11.25L11.5 13.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationCircleBold;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,iVACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconExclamationCircleBold","props","React","CentralIconBase","IconExclamationCircleBold_default"]}
|
package/README.md
CHANGED