@central-icons-react/square-outlined-radius-0-stroke-1 1.1.55 → 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/IconCalenderSparkle/index.d.ts +4 -0
- package/IconCalenderSparkle/index.js +2 -0
- package/IconCalenderSparkle/index.js.map +1 -0
- package/IconCalenderSparkle/index.mjs +2 -0
- package/IconCalenderSparkle/index.mjs.map +1 -0
- 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 +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.d.ts +8 -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 L=Object.create;var p=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var f=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,a)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of k(e))!h.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(a=d(e,t))||a.enumerable});return r};var u=(r,e,o)=>(o=r!=null?L(V(r)):{},l(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),g=r=>l(p({},"__esModule",{value:!0}),r);var B={};f(B,{IconCalenderSparkle:()=>i,default:()=>x});module.exports=g(B);var n=u(require("react"));var s=u(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:a,ariaHidden:t=!0,style:C,...m})=>s.default.createElement("svg",{...m,"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:a,...C}},o&&!t&&s.default.createElement("title",null,o),r);var i=r=>n.default.createElement(c,{...r,ariaLabel:"calender-sparkle, date, plan"},n.default.createElement("path",{d:"M20.5 4.5H3.5V8.5H20.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M20.5 8.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M3.5 8.5V20.5H12.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M7.5 4.5V2.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M16.5 4.5V2.5",stroke:"currentColor",strokeLinecap:"square"}),n.default.createElement("path",{d:"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z",fill:"currentColor"})),x=i;0&&(module.exports={IconCalenderSparkle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCalenderSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCalenderSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"calender-sparkle, date, plan\">\n <path\n d=\"M20.5 4.5H3.5V8.5H20.5V4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M20.5 8.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M3.5 8.5V20.5H12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 4.5V2.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M16.5 4.5V2.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCalenderSparkle;\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,yBAAAE,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,EAAuDC,GAEhE,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8BACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtE,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpE,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrE,EAAAA,QAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCalenderSparkle_exports","__export","IconCalenderSparkle","IconCalenderSparkle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCalenderSparkle","props","React","CentralIconBase","IconCalenderSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import a from"react";var p=({children:o,size:e=24,ariaLabel:n,color:s,ariaHidden:t=!0,style:l,...u})=>a.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:s,...l}},n&&!t&&a.createElement("title",null,n),o);var c=o=>r.createElement(p,{...o,ariaLabel:"calender-sparkle, date, plan"},r.createElement("path",{d:"M20.5 4.5H3.5V8.5H20.5V4.5Z",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M20.5 8.5V12.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M3.5 8.5V20.5H12.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M7.5 4.5V2.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M16.5 4.5V2.5",stroke:"currentColor",strokeLinecap:"square"}),r.createElement("path",{d:"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z",fill:"currentColor"})),d=c;export{c as IconCalenderSparkle,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCalenderSparkle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCalenderSparkle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"calender-sparkle, date, plan\">\n <path\n d=\"M20.5 4.5H3.5V8.5H20.5V4.5Z\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M20.5 8.5V12.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M3.5 8.5V20.5H12.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <path d=\"M7.5 4.5V2.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path d=\"M16.5 4.5V2.5\" stroke=\"currentColor\" strokeLinecap=\"square\" />\n <path\n d=\"M18.4 14H17.6L16.6 16.6L14 17.6V18.4L16.6 19.4L17.6 22H18.4L19.4 19.4L22 18.4V17.6L19.4 16.6L18.4 14Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCalenderSparkle;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gCACpCC,EAAA,cAAC,QACC,EAAE,8BACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,cAAc,SAAS,EACtEA,EAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,cAAc,SAChB,EACAA,EAAA,cAAC,QAAK,EAAE,eAAe,OAAO,eAAe,cAAc,SAAS,EACpEA,EAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,cAAc,SAAS,EACrEA,EAAA,cAAC,QACC,EAAE,wGACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCalenderSparkle","props","React","CentralIconBase","IconCalenderSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var x=Object.create;var c=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,y=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)c(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of g(o))!y.call(r,t)&&t!==e&&c(r,t,{get:()=>o[t],enumerable:!(l=u(o,t))||l.enumerable});return r};var i=(r,o,e)=>(e=r!=null?x(B(r)):{},p(o||!r||!r.__esModule?c(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>p(c({},"__esModule",{value:!0}),r);var b={};I(b,{IconExclamationCircleBold:()=>m,default:()=>w});module.exports=d(b);var n=i(require("react"));var a=i(require("react")),s=({children:r,size:o=24,ariaLabel:e,color:l,ariaHidden:t=!0,style:C,...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:l,...C}},e&&!t&&a.default.createElement("title",null,e),r);var m=r=>n.default.createElement(s,{...r,ariaLabel:"exclamation-circle-bold, info, warning"},n.default.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),n.default.createElement("path",{d:"M11.5 13.5L11.25 7H12.75L12.5 13.5H11.5Z",fill:"currentColor"}),n.default.createElement("circle",{cx:"12.0001",cy:"15.9996",r:"0.9",fill:"currentColor"})),w=m;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 <circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <path d=\"M11.5 13.5L11.25 7H12.75L12.5 13.5H11.5Z\" fill=\"currentColor\" />\n <circle cx=\"12.0001\" cy=\"15.9996\" r=\"0.9\" fill=\"currentColor\" />\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,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,2CAA2C,KAAK,eAAe,EACvE,EAAAA,QAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,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 o from"react";import l from"react";var c=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:p,...i})=>l.createElement("svg",{...i,"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,...p}},n&&!t&&l.createElement("title",null,n),e);var s=e=>o.createElement(c,{...e,ariaLabel:"exclamation-circle-bold, info, warning"},o.createElement("circle",{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),o.createElement("path",{d:"M11.5 13.5L11.25 7H12.75L12.5 13.5H11.5Z",fill:"currentColor"}),o.createElement("circle",{cx:"12.0001",cy:"15.9996",r:"0.9",fill:"currentColor"})),u=s;export{s 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 <circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <path d=\"M11.5 13.5L11.25 7H12.75L12.5 13.5H11.5Z\" fill=\"currentColor\" />\n <circle cx=\"12.0001\" cy=\"15.9996\" r=\"0.9\" fill=\"currentColor\" />\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,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,2CAA2C,KAAK,eAAe,EACvEA,EAAA,cAAC,UAAO,GAAG,UAAU,GAAG,UAAU,EAAE,MAAM,KAAK,eAAe,CAChE,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconExclamationCircleBold","props","React","CentralIconBase","IconExclamationCircleBold_default"]}
|
package/README.md
CHANGED
|
@@ -188,6 +188,7 @@ Below is a complete list of available icons:
|
|
|
188
188
|
- IconBroomSparkle
|
|
189
189
|
- IconBubbleSparkle
|
|
190
190
|
- IconBubbleWideSparkle
|
|
191
|
+
- IconCalenderSparkle
|
|
191
192
|
- IconClipboard2Sparkle
|
|
192
193
|
- IconCloudySparkle
|
|
193
194
|
- IconConsoleSparkle
|
|
@@ -990,6 +991,7 @@ Below is a complete list of available icons:
|
|
|
990
991
|
- IconDoupleCheckmark2Small
|
|
991
992
|
- IconElectrocardiogram
|
|
992
993
|
- IconExclamationCircle
|
|
994
|
+
- IconExclamationCircleBold
|
|
993
995
|
- IconExclamationTriangle
|
|
994
996
|
- IconFeature
|
|
995
997
|
- IconGauge
|
package/icons/index.d.ts
CHANGED
|
@@ -322,6 +322,7 @@ export type CentralIconName =
|
|
|
322
322
|
| "IconCalenderAdd"
|
|
323
323
|
| "IconCalenderNextWeek"
|
|
324
324
|
| "IconCalenderRemove"
|
|
325
|
+
| "IconCalenderSparkle"
|
|
325
326
|
| "IconCalenderToday"
|
|
326
327
|
| "IconCalenderTomorrow"
|
|
327
328
|
| "IconCall"
|
|
@@ -635,6 +636,7 @@ export type CentralIconName =
|
|
|
635
636
|
| "IconEthereum"
|
|
636
637
|
| "IconEuro"
|
|
637
638
|
| "IconExclamationCircle"
|
|
639
|
+
| "IconExclamationCircleBold"
|
|
638
640
|
| "IconExclamationTriangle"
|
|
639
641
|
| "IconExpand"
|
|
640
642
|
| "IconExpand315"
|