@central-icons-react/round-filled-radius-2-stroke-2 1.0.4 → 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/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 +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +7 -5
- 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 p=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)p(r,e,{get:t[e],enumerable:!0})},C=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of h(t))!B.call(r,o)&&o!==e&&p(r,o,{get:()=>t[o],enumerable:!(n=g(t,o))||n.enumerable});return r};var s=(r,t,e)=>(e=r!=null?f(x(r)):{},C(t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),L=r=>C(p({},"__esModule",{value:!0}),r);var w={};I(w,{IconMarkup:()=>i,default:()=>d});module.exports=L(w);var l=s(require("react"));var a=s(require("react")),m=({children:r,size:t=24,ariaLabel:e,color:n,ariaHidden:o=!0,style:c,...u})=>a.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&&a.default.createElement("title",null,e),r);var i=r=>l.default.createElement(m,{...r,ariaLabel:"markup, marker, highlight"},l.default.createElement("path",{d:"M15.4936 16.6921L14.0537 19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H5.5722C4.15161 21 3 19.8484 3 18.4278C3 17.9705 3.12189 17.5215 3.35313 17.1271L6.61962 11.5544L15.4936 16.6921Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21.25 7.62345C21.7323 7.90179 21.8944 8.5205 21.6104 8.99952L19.1865 13.0883C18.3477 14.5031 16.5262 14.9788 15.1028 14.1547L9.0732 10.6639C7.62948 9.82811 7.14492 7.97505 7.99467 6.53949L10.3878 2.49659C10.6669 2.02504 11.2736 1.86596 11.7482 2.13986L21.25 7.62345Z",fill:"currentColor"})),d=i;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=\"M15.4936 16.6921L14.0537 19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H5.5722C4.15161 21 3 19.8484 3 18.4278C3 17.9705 3.12189 17.5215 3.35313 17.1271L6.61962 11.5544L15.4936 16.6921Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.25 7.62345C21.7323 7.90179 21.8944 8.5205 21.6104 8.99952L19.1865 13.0883C18.3477 14.5031 16.5262 14.9788 15.1028 14.1547L9.0732 10.6639C7.62948 9.82811 7.14492 7.97505 7.99467 6.53949L10.3878 2.49659C10.6669 2.02504 11.2736 1.86596 11.7482 2.13986L21.25 7.62345Z\"\n fill=\"currentColor\"\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,0MACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8QACF,KAAK,eACP,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 o from"react";import p from"react";var l=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:C,...s})=>p.createElement("svg",{...s,"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:a,...C}},n&&!e&&p.createElement("title",null,n),t);var m=t=>o.createElement(l,{...t,ariaLabel:"markup, marker, highlight"},o.createElement("path",{d:"M15.4936 16.6921L14.0537 19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H5.5722C4.15161 21 3 19.8484 3 18.4278C3 17.9705 3.12189 17.5215 3.35313 17.1271L6.61962 11.5544L15.4936 16.6921Z",fill:"currentColor"}),o.createElement("path",{d:"M21.25 7.62345C21.7323 7.90179 21.8944 8.5205 21.6104 8.99952L19.1865 13.0883C18.3477 14.5031 16.5262 14.9788 15.1028 14.1547L9.0732 10.6639C7.62948 9.82811 7.14492 7.97505 7.99467 6.53949L10.3878 2.49659C10.6669 2.02504 11.2736 1.86596 11.7482 2.13986L21.25 7.62345Z",fill:"currentColor"})),g=m;export{m as IconMarkup,g 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=\"M15.4936 16.6921L14.0537 19H20C20.5523 19 21 19.4477 21 20C21 20.5523 20.5523 21 20 21H5.5722C4.15161 21 3 19.8484 3 18.4278C3 17.9705 3.12189 17.5215 3.35313 17.1271L6.61962 11.5544L15.4936 16.6921Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M21.25 7.62345C21.7323 7.90179 21.8944 8.5205 21.6104 8.99952L19.1865 13.0883C18.3477 14.5031 16.5262 14.9788 15.1028 14.1547L9.0732 10.6639C7.62948 9.82811 7.14492 7.97505 7.99467 6.53949L10.3878 2.49659C10.6669 2.02504 11.2736 1.86596 11.7482 2.13986L21.25 7.62345Z\"\n fill=\"currentColor\"\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,0MACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,8QACF,KAAK,eACP,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 u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},s=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of w(e))!B.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(n=g(e,t))||n.enumerable});return r};var i=(r,e,o)=>(o=r!=null?u(x(r)):{},s(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),V=r=>s(p({},"__esModule",{value:!0}),r);var h={};I(h,{IconNewspaper1:()=>m,default:()=>d});module.exports=V(h);var a=i(require("react"));var l=i(require("react")),C=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:f,...c})=>l.default.createElement("svg",{...c,"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:n,...f}},o&&!t&&l.default.createElement("title",null,o),r);var m=r=>a.default.createElement(C,{...r,ariaLabel:"newspaper-1, guide, info, faq, book"},a.default.createElement("path",{d:"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z",fill:"currentColor"}),a.default.createElement("path",{d:"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z",fill:"currentColor"})),d=m;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=\"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z\"\n fill=\"currentColor\"\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=\"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z\"\n fill=\"currentColor\"\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,sIACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,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
|
|
1
|
+
import t from"react";import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:l,ariaHidden:o=!0,style:s,...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:l,...s}},n&&!o&&p.createElement("title",null,n),e);var C=e=>t.createElement(a,{...e,ariaLabel:"newspaper-1, guide, info, faq, book"},t.createElement("path",{d:"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z",fill:"currentColor"}),t.createElement("path",{d:"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z",fill:"currentColor"})),g=C;export{C 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=\"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z\"\n fill=\"currentColor\"\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=\"M11 5.25356L5.65079 4.06484C3.77725 3.6485 2 5.07416 2 6.99341V16.8958C2 18.3019 2.9766 19.5194 4.34921 19.8244L11 21.3023V5.25356Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.3023L19.6508 19.8244C21.0234 19.5194 22 18.3019 22 16.8958V6.99341C22 5.07416 20.2227 3.6485 18.3492 4.06484L13 5.25356V21.3023Z\"\n fill=\"currentColor\"\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,sIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,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 w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0})},l=(r,e,o,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of w(e))!B.call(r,t)&&t!==o&&p(r,t,{get:()=>e[t],enumerable:!(n=g(e,t))||n.enumerable});return r};var s=(r,e,o)=>(o=r!=null?u(x(r)):{},l(e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o,r)),d=r=>l(p({},"__esModule",{value:!0}),r);var b={};I(b,{IconNewspaper2:()=>m,default:()=>h});module.exports=d(b);var C=s(require("react"));var a=s(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:f,...c})=>a.default.createElement("svg",{...c,"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:n,...f}},o&&!t&&a.default.createElement("title",null,o),r);var m=r=>C.default.createElement(i,{...r,ariaLabel:"newspaper-2, guide, info, faq, book"},C.default.createElement("path",{d:"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z",fill:"currentColor"}),C.default.createElement("path",{d:"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z",fill:"currentColor"})),h=m;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=\"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z\"\n fill=\"currentColor\"\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=\"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z\"\n fill=\"currentColor\"\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,sYACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oWACF,KAAK,eACP,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
|
|
1
|
+
import t from"react";import p from"react";var C=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:l,...s})=>p.createElement("svg",{...s,"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:a,...l}},n&&!o&&p.createElement("title",null,n),e);var i=e=>t.createElement(C,{...e,ariaLabel:"newspaper-2, guide, info, faq, book"},t.createElement("path",{d:"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z",fill:"currentColor"}),t.createElement("path",{d:"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z",fill:"currentColor"})),g=i;export{i 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=\"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z\"\n fill=\"currentColor\"\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=\"M11 8.00011C11 5.79097 9.20915 4.00011 7.00001 4.00011C5.83347 4.00011 4.66692 4.00018 3.50038 4.00018C2.11953 4.00017 1 5.1195 0.999998 6.50035C0.999981 10.167 1.00004 13.8336 1.00002 17.5002C1.00002 18.8809 2.1192 20.0001 3.49986 20.0002C5.24091 20.0002 6.98196 20.0001 8.72301 20.0001C9.24368 20.0001 9.72336 20.1254 10.1234 20.3726C10.4822 20.5943 10.7822 20.8975 11 21.2562V8.00011Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13 21.2562C13.2178 20.8975 13.5178 20.5943 13.8766 20.3726C14.2767 20.1254 14.7563 20.0001 15.277 20.0001C17.018 20.0001 18.759 20.0001 20.5 20.0001C21.8807 20.0001 23 18.8808 23 17.5001C23 13.8335 23 10.1669 23 6.50024C23 5.11946 21.8806 4.00014 20.4998 4.00014C19.3332 4.00014 18.1666 4.00011 17 4.00011C14.7909 4.00011 13 5.79097 13 8.00011V21.2562Z\"\n fill=\"currentColor\"\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,sYACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oWACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNewspaper2","props","React","CentralIconBase","IconNewspaper2_default"]}
|
package/README.md
CHANGED