@central-icons-react/square-outlined-radius-0-stroke-1.5 1.0.3 → 1.0.5
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/IconCursorAi/index.d.ts +4 -0
- package/IconCursorAi/index.js +2 -0
- package/IconCursorAi/index.js.map +1 -0
- package/IconCursorAi/index.mjs +2 -0
- package/IconCursorAi/index.mjs.map +1 -0
- package/IconDispersion/index.d.ts +4 -0
- package/IconDispersion/index.js +2 -0
- package/IconDispersion/index.js.map +1 -0
- package/IconDispersion/index.mjs +2 -0
- package/IconDispersion/index.mjs.map +1 -0
- package/IconMarkup/index.d.ts +4 -0
- package/IconMarkup/index.js +2 -0
- package/IconMarkup/index.js.map +1 -0
- package/IconMarkup/index.mjs +2 -0
- package/IconMarkup/index.mjs.map +1 -0
- package/IconNewspaper1/index.js +1 -1
- package/IconNewspaper1/index.js.map +1 -1
- package/IconNewspaper1/index.mjs +1 -1
- package/IconNewspaper1/index.mjs.map +1 -1
- package/IconNewspaper2/index.js +1 -1
- package/IconNewspaper2/index.js.map +1 -1
- package/IconNewspaper2/index.mjs +1 -1
- package/IconNewspaper2/index.mjs.map +1 -1
- package/README.md +3 -0
- package/icons/index.d.ts +3 -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 +12 -6
- 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 f=Object.create;var a=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0})},s=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of h(t))!B.call(r,o)&&o!==e&&a(r,o,{get:()=>t[o],enumerable:!(n=g(t,o))||n.enumerable});return r};var i=(r,t,e)=>(e=r!=null?f(x(r)):{},s(t||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>s(a({},"__esModule",{value:!0}),r);var y={};I(y,{IconCursorAi:()=>m,default:()=>w});module.exports=d(y);var p=i(require("react"));var l=i(require("react")),C=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:c,...u})=>l.default.createElement("svg",{...u,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:n,...c}},e&&!o&&l.default.createElement("title",null,e),r);var m=r=>p.default.createElement(C,{...r,ariaLabel:"cursor-ai, agent, magic"},p.default.createElement("path",{d:"M6.83824 5.02163L3.75 3.75L10 21L14.0441 14.0441L21 10.5L16.6176 9.04844",stroke:"currentColor",strokeWidth:"1.5"}),p.default.createElement("path",{d:"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z",fill:"currentColor"})),w=m;0&&(module.exports={IconCursorAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursorAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor-ai, agent, magic\">\n <path\n d=\"M6.83824 5.02163L3.75 3.75L10 21L14.0441 14.0441L21 10.5L16.6176 9.04844\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,kBAAAE,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,EAAgDC,GAEzD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,2EACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconCursorAi_exports","__export","IconCursorAi","IconCursorAi_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import a from"react";var p=({children:t,size:r=24,ariaLabel:n,color:l,ariaHidden:e=!0,style:s,...i})=>a.createElement("svg",{...i,"aria-hidden":e,role:e?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:l,...s}},n&&!e&&a.createElement("title",null,n),t);var C=t=>o.createElement(p,{...t,ariaLabel:"cursor-ai, agent, magic"},o.createElement("path",{d:"M6.83824 5.02163L3.75 3.75L10 21L14.0441 14.0441L21 10.5L16.6176 9.04844",stroke:"currentColor",strokeWidth:"1.5"}),o.createElement("path",{d:"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z",fill:"currentColor"})),g=C;export{C as IconCursorAi,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCursorAi/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCursorAi: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"cursor-ai, agent, magic\">\n <path\n d=\"M6.83824 5.02163L3.75 3.75L10 21L14.0441 14.0441L21 10.5L16.6176 9.04844\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M13.4444 2H12.5556C12 4.5 11.5 5 9 5.55556V6.44444C11.5 7 12 7.5 12.5556 10H13.4444C14 7.5 14.5 7 17 6.44444V5.55556C14.5 5 14 4.5 13.4444 2Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCursorAi;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,2EACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,gJACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCursorAi","props","React","CentralIconBase","IconCursorAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var h=Object.create;var p=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var g=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0})},i=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of m(e))!L.call(r,o)&&o!==t&&p(r,o,{get:()=>e[o],enumerable:!(n=C(e,o))||n.enumerable});return r};var l=(r,e,t)=>(t=r!=null?h(f(r)):{},i(e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>i(p({},"__esModule",{value:!0}),r);var I={};g(I,{IconDispersion:()=>k,default:()=>B});module.exports=x(I);var s=l(require("react"));var a=l(require("react")),u=({children:r,size:e=24,ariaLabel:t,color:n,ariaHidden:o=!0,style:c,...d})=>a.default.createElement("svg",{...d,"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:n,...c}},t&&!o&&a.default.createElement("title",null,t),r);var k=r=>s.default.createElement(u,{...r,ariaLabel:"dispersion, refraction"},s.default.createElement("path",{d:"M12 3.75V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M2.75 12H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M15.75 12H21.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M15.5 7.5L20.25 3.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M20.25 20.25L15.5 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M2.75 15.75H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),s.default.createElement("path",{d:"M2.75 7.75H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),B=k;0&&(module.exports={IconDispersion});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDispersion: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"dispersion, refraction\">\n <path\n d=\"M12 3.75V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 12H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 12H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.5 7.5L20.25 3.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.25 20.25L15.5 16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 15.75H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 7.75H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["IconDispersion_exports","__export","IconDispersion","IconDispersion_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import n from"react";var p=({children:t,size:e=24,ariaLabel:s,color:a,ariaHidden:o=!0,style:i,...l})=>n.createElement("svg",{...l,"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:a,...i}},s&&!o&&n.createElement("title",null,s),t);var u=t=>r.createElement(p,{...t,ariaLabel:"dispersion, refraction"},r.createElement("path",{d:"M12 3.75V20.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M2.75 12H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.75 12H21.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M15.5 7.5L20.25 3.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M20.25 20.25L15.5 16.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M2.75 15.75H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"}),r.createElement("path",{d:"M2.75 7.75H8.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"square"})),C=u;export{u as IconDispersion,C as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconDispersion/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDispersion: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"dispersion, refraction\">\n <path\n d=\"M12 3.75V20.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 12H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.75 12H21.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M15.5 7.5L20.25 3.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M20.25 20.25L15.5 16.5\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 15.75H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n <path\n d=\"M2.75 7.75H8.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDispersion;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,gBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,uBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,yBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,mBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,EACAA,EAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconDispersion","props","React","CentralIconBase","IconDispersion_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var C=Object.create;var a=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var x=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0})},l=(r,t,e,p)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of g(t))!k.call(r,o)&&o!==e&&a(r,o,{get:()=>t[o],enumerable:!(p=d(t,o))||p.enumerable});return r};var i=(r,t,e)=>(e=r!=null?C(f(r)):{},l(t||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>l(a({},"__esModule",{value:!0}),r);var w={};x(w,{IconMarkup:()=>h,default:()=>I});module.exports=B(w);var n=i(require("react"));var s=i(require("react")),m=({children:r,size:t=24,ariaLabel:e,color:p,ariaHidden:o=!0,style:u,...c})=>s.default.createElement("svg",{...c,"aria-hidden":o,role:o?void 0:"img",width:typeof t=="number"?`${t}px`:t,height:typeof t=="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...u}},e&&!o&&s.default.createElement("title",null,e),r);var h=r=>n.default.createElement(m,{...r,ariaLabel:"markup, marker, highlight"},n.default.createElement("path",{d:"M21.0099 20.25H3.75V17.9722L7.35294 11.75",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M14.9111 16.1666L12.3984 20.1916",stroke:"currentColor",strokeWidth:"1.5"}),n.default.createElement("path",{d:"M11.1638 2.75L6.25 11.0463L16.0776 16.75L21.25 7.93518",stroke:"currentColor",strokeWidth:"1.5"})),I=h;0&&(module.exports={IconMarkup});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarkup: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"markup, marker, highlight\">\n <path\n d=\"M21.0099 20.25H3.75V17.9722L7.35294 11.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M14.9111 16.1666L12.3984 20.1916\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M11.1638 2.75L6.25 11.0463L16.0776 16.75L21.25 7.93518\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,gBAAAE,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,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpC,EAAAC,QAAA,cAAC,QACC,EAAE,4CACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,YAAY,MACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["IconMarkup_exports","__export","IconMarkup","IconMarkup_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...i})=>p.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:s,...l}},n&&!o&&p.createElement("title",null,n),e);var m=e=>t.createElement(a,{...e,ariaLabel:"markup, marker, highlight"},t.createElement("path",{d:"M21.0099 20.25H3.75V17.9722L7.35294 11.75",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement("path",{d:"M14.9111 16.1666L12.3984 20.1916",stroke:"currentColor",strokeWidth:"1.5"}),t.createElement("path",{d:"M11.1638 2.75L6.25 11.0463L16.0776 16.75L21.25 7.93518",stroke:"currentColor",strokeWidth:"1.5"})),d=m;export{m as IconMarkup,d as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconMarkup/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMarkup: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"markup, marker, highlight\">\n <path\n d=\"M21.0099 20.25H3.75V17.9722L7.35294 11.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M14.9111 16.1666L12.3984 20.1916\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n <path\n d=\"M11.1638 2.75L6.25 11.0463L16.0776 16.75L21.25 7.93518\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMarkup;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,EAAE,4CACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,mCACF,OAAO,eACP,YAAY,MACd,EACAA,EAAA,cAAC,QACC,EAAE,yDACF,OAAO,eACP,YAAY,MACd,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMarkup","props","React","CentralIconBase","IconMarkup_default"]}
|
package/IconNewspaper1/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var
|
|
1
|
+
"use strict";var C=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0})},l=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of d(r))!x.call(e,t)&&t!==o&&p(e,t,{get:()=>r[t],enumerable:!(n=g(r,t))||n.enumerable});return e};var i=(e,r,o)=>(o=e!=null?C(w(e)):{},l(r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e)),I=e=>l(p({},"__esModule",{value:!0}),e);var V={};B(V,{IconNewspaper1:()=>c,default:()=>h});module.exports=I(V);var s=i(require("react"));var a=i(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:f,...u})=>a.default.createElement("svg",{...u,"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,...f}},o&&!t&&a.default.createElement("title",null,o),e);var c=e=>s.default.createElement(m,{...e,ariaLabel:"newspaper-1, guide, info, faq, book"},s.default.createElement("path",{d:"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),h=c;0&&(module.exports={IconNewspaper1});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconNewspaper1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-1, guide, info, faq\">\n <path\n d=\"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper1;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,
|
|
1
|
+
{"version":3,"sources":["../src/IconNewspaper1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-1, guide, info, faq, book\">\n <path\n d=\"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper1;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,8EACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconNewspaper1_exports","__export","IconNewspaper1","IconNewspaper1_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconNewspaper1","props","React","CentralIconBase","IconNewspaper1_default"]}
|
package/IconNewspaper1/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:
|
|
1
|
+
import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:l,...i})=>n.createElement("svg",{...i,"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:s,...l}},t&&!o&&n.createElement("title",null,t),r);var m=r=>a.createElement(p,{...r,ariaLabel:"newspaper-1, guide, info, faq, book"},a.createElement("path",{d:"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),g=m;export{m as IconNewspaper1,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconNewspaper1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-1, guide, info, faq\">\n <path\n d=\"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper1;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,
|
|
1
|
+
{"version":3,"sources":["../src/IconNewspaper1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-1, guide, info, faq, book\">\n <path\n d=\"M12 7V20M2.75 4.25L12 6.3125L21.25 4.25V18.6875L12 20.75L2.75 18.6875V4.25Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper1;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,8EACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNewspaper1","props","React","CentralIconBase","IconNewspaper1_default"]}
|
package/IconNewspaper2/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0})},l=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of d(r))!x.call(e,t)&&t!==o&&p(e,t,{get:()=>r[t],enumerable:!(n=g(r,t))||n.enumerable});return e};var i=(e,r,o)=>(o=e!=null?u(w(e)):{},l(r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e)),I=e=>l(p({},"__esModule",{value:!0}),e);var V={};B(V,{IconNewspaper2:()=>C,default:()=>h});module.exports=I(V);var s=i(require("react"));var a=i(require("react")),m=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:c,...f})=>a.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,...c}},o&&!t&&a.default.createElement("title",null,o),e);var C=e=>s.default.createElement(m,{...e,ariaLabel:"newspaper-2, guide, info, faq, book"},s.default.createElement("path",{d:"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),h=C;0&&(module.exports={IconNewspaper2});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconNewspaper2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-2, guide, info, faq\">\n <path\n d=\"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper2;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,
|
|
1
|
+
{"version":3,"sources":["../src/IconNewspaper2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-2, guide, info, faq, book\">\n <path\n d=\"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper2;\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,oBAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpC,EAAAC,QAAA,cAAC,QACC,EAAE,6KACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconNewspaper2_exports","__export","IconNewspaper2","IconNewspaper2_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconNewspaper2","props","React","CentralIconBase","IconNewspaper2_default"]}
|
package/IconNewspaper2/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:
|
|
1
|
+
import a from"react";import n from"react";var p=({children:r,size:e=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:l,...i})=>n.createElement("svg",{...i,"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:s,...l}},t&&!o&&n.createElement("title",null,t),r);var m=r=>a.createElement(p,{...r,ariaLabel:"newspaper-2, guide, info, faq, book"},a.createElement("path",{d:"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round"})),g=m;export{m as IconNewspaper2,g as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconNewspaper2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-2, guide, info, faq\">\n <path\n d=\"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper2;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,
|
|
1
|
+
{"version":3,"sources":["../src/IconNewspaper2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNewspaper2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"newspaper-2, guide, info, faq, book\">\n <path\n d=\"M12 7.75C12 6.09315 10.6569 4.75 9 4.75H1.75V19.25H9C11 19.25 12 20.3431 12 22M12 7.75C12 6.09315 13.3431 4.75 15 4.75H22.25V19.25H15C13 19.25 12 20.3431 12 22M12 7.75V22\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNewspaper2;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uCACpCC,EAAA,cAAC,QACC,EAAE,6KACF,OAAO,eACP,YAAY,MACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNewspaper2","props","React","CentralIconBase","IconNewspaper2_default"]}
|
package/README.md
CHANGED
|
@@ -181,6 +181,7 @@ Below is a complete list of available icons:
|
|
|
181
181
|
- IconBrain1
|
|
182
182
|
- IconBrain2
|
|
183
183
|
- IconBroomSparkle
|
|
184
|
+
- IconCursorAi
|
|
184
185
|
- IconCuteRobot
|
|
185
186
|
- IconEyeSparkle
|
|
186
187
|
- IconFortuneTellerBall
|
|
@@ -595,6 +596,7 @@ Below is a complete list of available icons:
|
|
|
595
596
|
- IconColorSwatch
|
|
596
597
|
- IconComponents
|
|
597
598
|
- IconCornerRadius
|
|
599
|
+
- IconDispersion
|
|
598
600
|
- IconEditBig
|
|
599
601
|
- IconEditSmall1
|
|
600
602
|
- IconEditSmall2
|
|
@@ -609,6 +611,7 @@ Below is a complete list of available icons:
|
|
|
609
611
|
- IconMarkdown
|
|
610
612
|
- IconMarker
|
|
611
613
|
- IconMarkerCircle
|
|
614
|
+
- IconMarkup
|
|
612
615
|
- IconPaintBrush
|
|
613
616
|
- IconPaintBucket
|
|
614
617
|
- IconPaintBucketDrop
|
package/icons/index.d.ts
CHANGED
|
@@ -513,6 +513,7 @@ export type CentralIconName =
|
|
|
513
513
|
| "IconCursor1"
|
|
514
514
|
| "IconCursor2"
|
|
515
515
|
| "IconCursor3"
|
|
516
|
+
| "IconCursorAi"
|
|
516
517
|
| "IconCursorClick"
|
|
517
518
|
| "IconCursorList"
|
|
518
519
|
| "IconCurtain"
|
|
@@ -547,6 +548,7 @@ export type CentralIconName =
|
|
|
547
548
|
| "IconDirectorChair"
|
|
548
549
|
| "IconDiscord"
|
|
549
550
|
| "IconDishwasher"
|
|
551
|
+
| "IconDispersion"
|
|
550
552
|
| "IconDivider"
|
|
551
553
|
| "IconDollar"
|
|
552
554
|
| "IconDonut"
|
|
@@ -899,6 +901,7 @@ export type CentralIconName =
|
|
|
899
901
|
| "IconMarkdown"
|
|
900
902
|
| "IconMarker"
|
|
901
903
|
| "IconMarkerCircle"
|
|
904
|
+
| "IconMarkup"
|
|
902
905
|
| "IconMask"
|
|
903
906
|
| "IconMastadon"
|
|
904
907
|
| "IconMathBasic"
|