@central-icons-react/square-filled-radius-0-stroke-1.5 1.1.46 → 1.1.49

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.
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  import { type CentralIconBaseProps } from "../CentralIconBase";
3
- export declare const IconTriangleExclamation: React.FC<CentralIconBaseProps>;
4
- export default IconTriangleExclamation;
3
+ export declare const IconExclamationTriangle: React.FC<CentralIconBaseProps>;
4
+ export default IconExclamationTriangle;
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},i=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of C(r))!B.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=x(r,o))||n.enumerable});return e};var s=(e,r,t)=>(t=e!=null?u(d(e)):{},i(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),V=e=>i(l({},"__esModule",{value:!0}),e);var h={};I(h,{IconTriangleExclamation:()=>c,default:()=>w});module.exports=V(h);var p=s(require("react"));var a=s(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...g})=>a.default.createElement("svg",{...g,"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,...f}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>p.default.createElement(m,{...e,ariaLabel:"triangle-exclamation, error, warning, alert"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z",fill:"currentColor"})),w=c;0&&(module.exports={IconTriangleExclamation});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0})},i=(e,r,t,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let o of C(r))!B.call(e,o)&&o!==t&&l(e,o,{get:()=>r[o],enumerable:!(n=x(r,o))||n.enumerable});return e};var s=(e,r,t)=>(t=e!=null?u(d(e)):{},i(r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t,e)),V=e=>i(l({},"__esModule",{value:!0}),e);var h={};I(h,{IconExclamationTriangle:()=>c,default:()=>w});module.exports=V(h);var p=s(require("react"));var a=s(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:f,...g})=>a.default.createElement("svg",{...g,"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,...f}},t&&!o&&a.default.createElement("title",null,t),e);var c=e=>p.default.createElement(m,{...e,ariaLabel:"exclamation-triangle, error, warning, alert"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z",fill:"currentColor"})),w=c;0&&(module.exports={IconExclamationTriangle});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconTriangleExclamation/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTriangleExclamation: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"triangle-exclamation, error, warning, alert\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTriangleExclamation;\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,6BAAAE,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,+CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconTriangleExclamation_exports","__export","IconTriangleExclamation","IconTriangleExclamation_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconTriangleExclamation","props","React","CentralIconBase","IconTriangleExclamation_default"]}
1
+ {"version":3,"sources":["../src/IconExclamationTriangle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconExclamationTriangle: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"exclamation-triangle, error, warning, alert\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationTriangle;\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,6BAAAE,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,+CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconExclamationTriangle_exports","__export","IconExclamationTriangle","IconExclamationTriangle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconExclamationTriangle","props","React","CentralIconBase","IconExclamationTriangle_default"]}
@@ -1,2 +1,2 @@
1
- import a from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:i,...s})=>n.createElement("svg",{...s,"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,...i}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(l,{...r,ariaLabel:"triangle-exclamation, error, warning, alert"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z",fill:"currentColor"})),x=m;export{m as IconTriangleExclamation,x as default};
1
+ import a from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:i,...s})=>n.createElement("svg",{...s,"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,...i}},o&&!t&&n.createElement("title",null,o),r);var m=r=>a.createElement(l,{...r,ariaLabel:"exclamation-triangle, error, warning, alert"},a.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z",fill:"currentColor"})),x=m;export{m as IconExclamationTriangle,x as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconTriangleExclamation/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconTriangleExclamation: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"triangle-exclamation, error, warning, alert\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTriangleExclamation;\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,+CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconTriangleExclamation","props","React","CentralIconBase","IconTriangleExclamation_default"]}
1
+ {"version":3,"sources":["../src/IconExclamationTriangle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconExclamationTriangle: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"exclamation-triangle, error, warning, alert\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M1.18359 20.0003L12.0011 1.78125L22.8187 20.0003H1.18359ZM12.75 9.00024V14.5002H11.25V9.00024H12.75ZM11.25 15.5002H12.75V17.0002H11.25V15.5002Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconExclamationTriangle;\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,+CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconExclamationTriangle","props","React","CentralIconBase","IconExclamationTriangle_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0})},a=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of g(r))!B.call(e,t)&&t!==o&&l(e,t,{get:()=>r[t],enumerable:!(n=d(r,t))||n.enumerable});return e};var s=(e,r,o)=>(o=e!=null?u(x(e)):{},a(r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),v=e=>a(l({},"__esModule",{value:!0}),e);var h={};I(h,{IconPeopleCircle:()=>i,default:()=>P});module.exports=v(h);var C=s(require("react"));var p=s(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...f})=>p.default.createElement("svg",{...f,"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:n,...m}},o&&!t&&p.default.createElement("title",null,o),e);var i=e=>C.default.createElement(c,{...e,ariaLabel:"people-circle, user-circle,avatar,profile"},C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 14.897 3.23192 17.5063 5.20047 19.3326C6.98474 20.9879 9.37418 22 12 22C14.6258 22 17.0153 20.9879 18.7995 19.3326C20.7681 17.5063 22 14.897 22 12C22 6.47715 17.5228 2 12 2ZM5.97605 17.9968C7.29919 16.174 9.41114 15 12 15C14.5889 15 16.7008 16.174 18.0239 17.9968C16.4847 19.543 14.3541 20.5 12 20.5C9.64589 20.5 7.51531 19.543 5.97605 17.9968ZM15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z",fill:"currentColor"})),P=i;0&&(module.exports={IconPeopleCircle});
1
+ "use strict";var u=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(e,r)=>{for(var o in r)l(e,o,{get:r[o],enumerable:!0})},a=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of g(r))!B.call(e,t)&&t!==o&&l(e,t,{get:()=>r[t],enumerable:!(n=d(r,t))||n.enumerable});return e};var s=(e,r,o)=>(o=e!=null?u(x(e)):{},a(r||!e||!e.__esModule?l(o,"default",{value:e,enumerable:!0}):o,e)),v=e=>a(l({},"__esModule",{value:!0}),e);var h={};I(h,{IconPeopleCircle:()=>i,default:()=>P});module.exports=v(h);var C=s(require("react"));var p=s(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...f})=>p.default.createElement("svg",{...f,"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:n,...m}},o&&!t&&p.default.createElement("title",null,o),e);var i=e=>C.default.createElement(c,{...e,ariaLabel:"people-circle, user-circle,avatar,profile"},C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47656 2 2 6.47717 2 12C2 14.897 3.23047 17.5063 5.19922 19.3326C6.98438 20.9879 9.375 22 12 22C14.625 22 17.0156 20.9879 18.8008 19.3326C20.7695 17.5063 22 14.897 22 12C22 6.47717 17.5234 2 12 2ZM5.97656 17.9968C7.30078 16.174 9.41016 15 12 15C14.5898 15 16.6992 16.174 18.0234 17.9968C16.4844 19.543 14.3555 20.5 12 20.5C9.64453 20.5 7.51562 19.543 5.97656 17.9968ZM12 6.75C10.2031 6.75 8.75 8.20508 8.75 10C8.75 11.7949 10.2031 13.25 12 13.25C13.7969 13.25 15.25 11.7949 15.25 10C15.25 8.20508 13.7969 6.75 12 6.75Z",fill:"currentColor"})),P=i;0&&(module.exports={IconPeopleCircle});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPeopleCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-circle, user-circle,avatar,profile\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C6.47715 2 2 6.47715 2 12C2 14.897 3.23192 17.5063 5.20047 19.3326C6.98474 20.9879 9.37418 22 12 22C14.6258 22 17.0153 20.9879 18.7995 19.3326C20.7681 17.5063 22 14.897 22 12C22 6.47715 17.5228 2 12 2ZM5.97605 17.9968C7.29919 16.174 9.41114 15 12 15C14.5889 15 16.7008 16.174 18.0239 17.9968C16.4847 19.543 14.3541 20.5 12 20.5C9.64589 20.5 7.51531 19.543 5.97605 17.9968ZM15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleCircle;\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,6CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6eACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPeopleCircle_exports","__export","IconPeopleCircle","IconPeopleCircle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPeopleCircle","props","React","CentralIconBase","IconPeopleCircle_default"]}
1
+ {"version":3,"sources":["../src/IconPeopleCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-circle, user-circle,avatar,profile\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C6.47656 2 2 6.47717 2 12C2 14.897 3.23047 17.5063 5.19922 19.3326C6.98438 20.9879 9.375 22 12 22C14.625 22 17.0156 20.9879 18.8008 19.3326C20.7695 17.5063 22 14.897 22 12C22 6.47717 17.5234 2 12 2ZM5.97656 17.9968C7.30078 16.174 9.41016 15 12 15C14.5898 15 16.6992 16.174 18.0234 17.9968C16.4844 19.543 14.3555 20.5 12 20.5C9.64453 20.5 7.51562 19.543 5.97656 17.9968ZM12 6.75C10.2031 6.75 8.75 8.20508 8.75 10C8.75 11.7949 10.2031 13.25 12 13.25C13.7969 13.25 15.25 11.7949 15.25 10C15.25 8.20508 13.7969 6.75 12 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleCircle;\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,6CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ghBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPeopleCircle_exports","__export","IconPeopleCircle","IconPeopleCircle_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPeopleCircle","props","React","CentralIconBase","IconPeopleCircle_default"]}
@@ -1,2 +1,2 @@
1
- import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:C,ariaHidden:o=!0,style:a,...s})=>n.createElement("svg",{...s,"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:C,...a}},t&&!o&&n.createElement("title",null,t),r);var c=r=>p.createElement(l,{...r,ariaLabel:"people-circle, user-circle,avatar,profile"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47715 2 2 6.47715 2 12C2 14.897 3.23192 17.5063 5.20047 19.3326C6.98474 20.9879 9.37418 22 12 22C14.6258 22 17.0153 20.9879 18.7995 19.3326C20.7681 17.5063 22 14.897 22 12C22 6.47715 17.5228 2 12 2ZM5.97605 17.9968C7.29919 16.174 9.41114 15 12 15C14.5889 15 16.7008 16.174 18.0239 17.9968C16.4847 19.543 14.3541 20.5 12 20.5C9.64589 20.5 7.51531 19.543 5.97605 17.9968ZM15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z",fill:"currentColor"})),d=c;export{c as IconPeopleCircle,d as default};
1
+ import p from"react";import n from"react";var l=({children:r,size:e=24,ariaLabel:t,color:C,ariaHidden:o=!0,style:a,...s})=>n.createElement("svg",{...s,"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:C,...a}},t&&!o&&n.createElement("title",null,t),r);var c=r=>p.createElement(l,{...r,ariaLabel:"people-circle, user-circle,avatar,profile"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.47656 2 2 6.47717 2 12C2 14.897 3.23047 17.5063 5.19922 19.3326C6.98438 20.9879 9.375 22 12 22C14.625 22 17.0156 20.9879 18.8008 19.3326C20.7695 17.5063 22 14.897 22 12C22 6.47717 17.5234 2 12 2ZM5.97656 17.9968C7.30078 16.174 9.41016 15 12 15C14.5898 15 16.6992 16.174 18.0234 17.9968C16.4844 19.543 14.3555 20.5 12 20.5C9.64453 20.5 7.51562 19.543 5.97656 17.9968ZM12 6.75C10.2031 6.75 8.75 8.20508 8.75 10C8.75 11.7949 10.2031 13.25 12 13.25C13.7969 13.25 15.25 11.7949 15.25 10C15.25 8.20508 13.7969 6.75 12 6.75Z",fill:"currentColor"})),d=c;export{c as IconPeopleCircle,d as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconPeopleCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-circle, user-circle,avatar,profile\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C6.47715 2 2 6.47715 2 12C2 14.897 3.23192 17.5063 5.20047 19.3326C6.98474 20.9879 9.37418 22 12 22C14.6258 22 17.0153 20.9879 18.7995 19.3326C20.7681 17.5063 22 14.897 22 12C22 6.47715 17.5228 2 12 2ZM5.97605 17.9968C7.29919 16.174 9.41114 15 12 15C14.5889 15 16.7008 16.174 18.0239 17.9968C16.4847 19.543 14.3541 20.5 12 20.5C9.64589 20.5 7.51531 19.543 5.97605 17.9968ZM15 10C15 11.6569 13.6569 13 12 13C10.3431 13 9 11.6569 9 10C9 8.34315 10.3431 7 12 7C13.6569 7 15 8.34315 15 10Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleCircle;\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,6CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,6eACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleCircle","props","React","CentralIconBase","IconPeopleCircle_default"]}
1
+ {"version":3,"sources":["../src/IconPeopleCircle/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPeopleCircle: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"people-circle, user-circle,avatar,profile\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C6.47656 2 2 6.47717 2 12C2 14.897 3.23047 17.5063 5.19922 19.3326C6.98438 20.9879 9.375 22 12 22C14.625 22 17.0156 20.9879 18.8008 19.3326C20.7695 17.5063 22 14.897 22 12C22 6.47717 17.5234 2 12 2ZM5.97656 17.9968C7.30078 16.174 9.41016 15 12 15C14.5898 15 16.6992 16.174 18.0234 17.9968C16.4844 19.543 14.3555 20.5 12 20.5C9.64453 20.5 7.51562 19.543 5.97656 17.9968ZM12 6.75C10.2031 6.75 8.75 8.20508 8.75 10C8.75 11.7949 10.2031 13.25 12 13.25C13.7969 13.25 15.25 11.7949 15.25 10C15.25 8.20508 13.7969 6.75 12 6.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPeopleCircle;\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,6CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ghBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPeopleCircle","props","React","CentralIconBase","IconPeopleCircle_default"]}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconPreview: React.FC<CentralIconBaseProps>;
4
+ export default IconPreview;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var v=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var x=(e,r)=>{for(var t in r)n(e,t,{get:r[t],enumerable:!0})},a=(e,r,t,o)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of g(r))!w.call(e,C)&&C!==t&&n(e,C,{get:()=>r[C],enumerable:!(o=d(r,C))||o.enumerable});return e};var s=(e,r,t)=>(t=e!=null?u(v(e)):{},a(r||!e||!e.__esModule?n(t,"default",{value:e,enumerable:!0}):t,e)),B=e=>a(n({},"__esModule",{value:!0}),e);var P={};x(P,{IconPreview:()=>m,default:()=>I});module.exports=B(P);var p=s(require("react"));var l=s(require("react")),i=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:C=!0,style:c,...f})=>l.default.createElement("svg",{...f,"aria-hidden":C,role:C?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:o,...c}},t&&!C&&l.default.createElement("title",null,t),e);var m=e=>p.default.createElement(i,{...e,ariaLabel:"preview, details"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.5C13.7816 2.5 15.4252 2.72966 16.6485 3.12109C17.2555 3.31536 17.801 3.56301 18.211 3.87305C18.6088 4.17406 19 4.63214 19 5.25C19 5.33649 18.9918 5.41976 18.9776 5.5H19V10.3477L20.8887 14.8125C21.4574 16.1569 21.5719 17.9998 20.1817 19.1523C18.7891 20.3067 16.2985 21.5 12 21.5C7.70155 21.5 5.21098 20.3067 3.81839 19.1523C2.4281 17.9998 2.54261 16.1569 3.11136 14.8125L5.00003 10.3477V5.5H5.02249C5.00821 5.41976 5.00003 5.3365 5.00003 5.25C5.00003 4.63213 5.39122 4.17406 5.78909 3.87305C6.19905 3.56301 6.74459 3.31536 7.35159 3.12109C8.57482 2.72967 10.2185 2.5 12 2.5ZM17.7246 11.1836C17.4044 11.3554 17.0395 11.5038 16.6485 11.6289C15.4252 12.0203 13.7816 12.25 12 12.25C10.2185 12.25 8.57482 12.0203 7.35159 11.6289C6.96027 11.5037 6.59481 11.3556 6.27444 11.1836L4.49222 15.3975C4.03398 16.4807 4.13645 17.4673 4.77542 17.9971C5.85842 18.8949 7.99444 20 12 20C16.0056 20 18.1416 18.8949 19.2246 17.9971C19.8636 17.4673 19.9661 16.4807 19.5078 15.3975L17.7246 11.1836ZM12 4C10.3301 4 8.8484 4.21747 7.8096 4.5498C7.28593 4.71738 6.91585 4.90103 6.69339 5.06934C6.57698 5.15742 6.52819 5.21868 6.50882 5.25C6.52819 5.28132 6.57698 5.34258 6.69339 5.43066C6.91585 5.59897 7.28593 5.78262 7.8096 5.9502C8.8484 6.28253 10.3301 6.5 12 6.5C13.67 6.5 15.1517 6.28254 16.1905 5.9502C16.7141 5.78262 17.0842 5.59897 17.3067 5.43066C17.4225 5.34299 17.4707 5.28144 17.4903 5.25C17.4707 5.21856 17.4225 5.15701 17.3067 5.06934C17.0842 4.90103 16.7141 4.71738 16.1905 4.5498C15.1517 4.21746 13.67 4 12 4Z",fill:"currentColor"})),I=m;0&&(module.exports={IconPreview});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPreview/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPreview: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"preview, details\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2.5C13.7816 2.5 15.4252 2.72966 16.6485 3.12109C17.2555 3.31536 17.801 3.56301 18.211 3.87305C18.6088 4.17406 19 4.63214 19 5.25C19 5.33649 18.9918 5.41976 18.9776 5.5H19V10.3477L20.8887 14.8125C21.4574 16.1569 21.5719 17.9998 20.1817 19.1523C18.7891 20.3067 16.2985 21.5 12 21.5C7.70155 21.5 5.21098 20.3067 3.81839 19.1523C2.4281 17.9998 2.54261 16.1569 3.11136 14.8125L5.00003 10.3477V5.5H5.02249C5.00821 5.41976 5.00003 5.3365 5.00003 5.25C5.00003 4.63213 5.39122 4.17406 5.78909 3.87305C6.19905 3.56301 6.74459 3.31536 7.35159 3.12109C8.57482 2.72967 10.2185 2.5 12 2.5ZM17.7246 11.1836C17.4044 11.3554 17.0395 11.5038 16.6485 11.6289C15.4252 12.0203 13.7816 12.25 12 12.25C10.2185 12.25 8.57482 12.0203 7.35159 11.6289C6.96027 11.5037 6.59481 11.3556 6.27444 11.1836L4.49222 15.3975C4.03398 16.4807 4.13645 17.4673 4.77542 17.9971C5.85842 18.8949 7.99444 20 12 20C16.0056 20 18.1416 18.8949 19.2246 17.9971C19.8636 17.4673 19.9661 16.4807 19.5078 15.3975L17.7246 11.1836ZM12 4C10.3301 4 8.8484 4.21747 7.8096 4.5498C7.28593 4.71738 6.91585 4.90103 6.69339 5.06934C6.57698 5.15742 6.52819 5.21868 6.50882 5.25C6.52819 5.28132 6.57698 5.34258 6.69339 5.43066C6.91585 5.59897 7.28593 5.78262 7.8096 5.9502C8.8484 6.28253 10.3301 6.5 12 6.5C13.67 6.5 15.1517 6.28254 16.1905 5.9502C16.7141 5.78262 17.0842 5.59897 17.3067 5.43066C17.4225 5.34299 17.4707 5.28144 17.4903 5.25C17.4707 5.21856 17.4225 5.15701 17.3067 5.06934C17.0842 4.90103 16.7141 4.71738 16.1905 4.5498C15.1517 4.21746 13.67 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPreview;\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,iBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpC,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,o+CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconPreview_exports","__export","IconPreview","IconPreview_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconPreview","props","React","CentralIconBase","IconPreview_default"]}
@@ -0,0 +1,2 @@
1
+ import l from"react";import o from"react";var n=({children:r,size:e=24,ariaLabel:C,color:p,ariaHidden:t=!0,style:a,...s})=>o.createElement("svg",{...s,"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,...a}},C&&!t&&o.createElement("title",null,C),r);var i=r=>l.createElement(n,{...r,ariaLabel:"preview, details"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2.5C13.7816 2.5 15.4252 2.72966 16.6485 3.12109C17.2555 3.31536 17.801 3.56301 18.211 3.87305C18.6088 4.17406 19 4.63214 19 5.25C19 5.33649 18.9918 5.41976 18.9776 5.5H19V10.3477L20.8887 14.8125C21.4574 16.1569 21.5719 17.9998 20.1817 19.1523C18.7891 20.3067 16.2985 21.5 12 21.5C7.70155 21.5 5.21098 20.3067 3.81839 19.1523C2.4281 17.9998 2.54261 16.1569 3.11136 14.8125L5.00003 10.3477V5.5H5.02249C5.00821 5.41976 5.00003 5.3365 5.00003 5.25C5.00003 4.63213 5.39122 4.17406 5.78909 3.87305C6.19905 3.56301 6.74459 3.31536 7.35159 3.12109C8.57482 2.72967 10.2185 2.5 12 2.5ZM17.7246 11.1836C17.4044 11.3554 17.0395 11.5038 16.6485 11.6289C15.4252 12.0203 13.7816 12.25 12 12.25C10.2185 12.25 8.57482 12.0203 7.35159 11.6289C6.96027 11.5037 6.59481 11.3556 6.27444 11.1836L4.49222 15.3975C4.03398 16.4807 4.13645 17.4673 4.77542 17.9971C5.85842 18.8949 7.99444 20 12 20C16.0056 20 18.1416 18.8949 19.2246 17.9971C19.8636 17.4673 19.9661 16.4807 19.5078 15.3975L17.7246 11.1836ZM12 4C10.3301 4 8.8484 4.21747 7.8096 4.5498C7.28593 4.71738 6.91585 4.90103 6.69339 5.06934C6.57698 5.15742 6.52819 5.21868 6.50882 5.25C6.52819 5.28132 6.57698 5.34258 6.69339 5.43066C6.91585 5.59897 7.28593 5.78262 7.8096 5.9502C8.8484 6.28253 10.3301 6.5 12 6.5C13.67 6.5 15.1517 6.28254 16.1905 5.9502C16.7141 5.78262 17.0842 5.59897 17.3067 5.43066C17.4225 5.34299 17.4707 5.28144 17.4903 5.25C17.4707 5.21856 17.4225 5.15701 17.3067 5.06934C17.0842 4.90103 16.7141 4.71738 16.1905 4.5498C15.1517 4.21746 13.67 4 12 4Z",fill:"currentColor"})),d=i;export{i as IconPreview,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconPreview/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPreview: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"preview, details\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2.5C13.7816 2.5 15.4252 2.72966 16.6485 3.12109C17.2555 3.31536 17.801 3.56301 18.211 3.87305C18.6088 4.17406 19 4.63214 19 5.25C19 5.33649 18.9918 5.41976 18.9776 5.5H19V10.3477L20.8887 14.8125C21.4574 16.1569 21.5719 17.9998 20.1817 19.1523C18.7891 20.3067 16.2985 21.5 12 21.5C7.70155 21.5 5.21098 20.3067 3.81839 19.1523C2.4281 17.9998 2.54261 16.1569 3.11136 14.8125L5.00003 10.3477V5.5H5.02249C5.00821 5.41976 5.00003 5.3365 5.00003 5.25C5.00003 4.63213 5.39122 4.17406 5.78909 3.87305C6.19905 3.56301 6.74459 3.31536 7.35159 3.12109C8.57482 2.72967 10.2185 2.5 12 2.5ZM17.7246 11.1836C17.4044 11.3554 17.0395 11.5038 16.6485 11.6289C15.4252 12.0203 13.7816 12.25 12 12.25C10.2185 12.25 8.57482 12.0203 7.35159 11.6289C6.96027 11.5037 6.59481 11.3556 6.27444 11.1836L4.49222 15.3975C4.03398 16.4807 4.13645 17.4673 4.77542 17.9971C5.85842 18.8949 7.99444 20 12 20C16.0056 20 18.1416 18.8949 19.2246 17.9971C19.8636 17.4673 19.9661 16.4807 19.5078 15.3975L17.7246 11.1836ZM12 4C10.3301 4 8.8484 4.21747 7.8096 4.5498C7.28593 4.71738 6.91585 4.90103 6.69339 5.06934C6.57698 5.15742 6.52819 5.21868 6.50882 5.25C6.52819 5.28132 6.57698 5.34258 6.69339 5.43066C6.91585 5.59897 7.28593 5.78262 7.8096 5.9502C8.8484 6.28253 10.3301 6.5 12 6.5C13.67 6.5 15.1517 6.28254 16.1905 5.9502C16.7141 5.78262 17.0842 5.59897 17.3067 5.43066C17.4225 5.34299 17.4707 5.28144 17.4903 5.25C17.4707 5.21856 17.4225 5.15701 17.3067 5.06934C17.0842 4.90103 16.7141 4.71738 16.1905 4.5498C15.1517 4.21746 13.67 4 12 4Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPreview;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,o+CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPreview","props","React","CentralIconBase","IconPreview_default"]}
package/README.md CHANGED
@@ -981,6 +981,7 @@ Below is a complete list of available icons:
981
981
  - IconDoupleCheckmark2Small
982
982
  - IconElectrocardiogram
983
983
  - IconExclamationCircle
984
+ - IconExclamationTriangle
984
985
  - IconFeature
985
986
  - IconGauge
986
987
  - IconHandBell
@@ -1018,6 +1019,7 @@ Below is a complete list of available icons:
1018
1019
  - IconPlanning
1019
1020
  - IconPlusLarge
1020
1021
  - IconPlusSmall
1022
+ - IconPreview
1021
1023
  - IconProgress25
1022
1024
  - IconProgress50
1023
1025
  - IconProgress75
@@ -1065,7 +1067,6 @@ Below is a complete list of available icons:
1065
1067
  - IconTrashCanSimple
1066
1068
  - IconTrashPaper
1067
1069
  - IconTrashPermanently
1068
- - IconTriangleExclamation
1069
1070
  - IconUnarchiv
1070
1071
  - IconUnpin
1071
1072
  - IconUntrash
package/icons/index.d.ts CHANGED
@@ -631,6 +631,7 @@ export type CentralIconName =
631
631
  | "IconEthereum"
632
632
  | "IconEuro"
633
633
  | "IconExclamationCircle"
634
+ | "IconExclamationTriangle"
634
635
  | "IconExpand"
635
636
  | "IconExpand315"
636
637
  | "IconExpand45"
@@ -1154,6 +1155,7 @@ export type CentralIconName =
1154
1155
  | "IconPostcard2"
1155
1156
  | "IconPound"
1156
1157
  | "IconPowerPlant"
1158
+ | "IconPreview"
1157
1159
  | "IconPrinter"
1158
1160
  | "IconProcessor"
1159
1161
  | "IconProducthunt"
@@ -1502,7 +1504,6 @@ export type CentralIconName =
1502
1504
  | "IconTrending4"
1503
1505
  | "IconTrending5"
1504
1506
  | "IconTrendingCircle"
1505
- | "IconTriangleExclamation"
1506
1507
  | "IconTrophy"
1507
1508
  | "IconTruck"
1508
1509
  | "IconTumblr"