@central-icons-react/square-filled-radius-0-stroke-2 1.1.61 → 1.1.62
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/IconRadio/index.d.ts +4 -0
- package/IconRadio/index.js +2 -0
- package/IconRadio/index.js.map +1 -0
- package/IconRadio/index.mjs +2 -0
- package/IconRadio/index.mjs.map +1 -0
- package/README.md +1 -0
- package/icons/index.d.ts +1 -0
- package/icons/index.js +1 -1
- package/icons/index.js.map +1 -1
- package/icons/index.mjs +1 -1
- package/icons/index.mjs.map +1 -1
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var V=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(e,r)=>{for(var o in r)a(e,o,{get:r[o],enumerable:!0})},s=(e,r,o,n)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of L(r))!g.call(e,t)&&t!==o&&a(e,t,{get:()=>r[t],enumerable:!(n=u(r,t))||n.enumerable});return e};var C=(e,r,o)=>(o=e!=null?f(V(e)):{},s(r||!e||!e.__esModule?a(o,"default",{value:e,enumerable:!0}):o,e)),B=e=>s(a({},"__esModule",{value:!0}),e);var b={};x(b,{IconRadio:()=>c,default:()=>I});module.exports=B(b);var p=C(require("react"));var l=C(require("react")),i=({children:e,size:r=24,ariaLabel:o,color:n,ariaHidden:t=!0,style:m,...d})=>l.default.createElement("svg",{...d,"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&&l.default.createElement("title",null,o),e);var c=e=>p.default.createElement(i,{...e,ariaLabel:"radio, antenna, signal, broadcast, speaker"},p.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.3516 3.43652L8.51562 6H22V21H2V6.30664L14.6484 1.56348L15.3516 3.43652ZM13.5 14.75C12.8528 14.75 12.3209 15.2418 12.2568 15.8721L12.25 16L12.2568 16.1279C12.3209 16.7582 12.8528 17.25 13.5 17.25C14.1904 17.25 14.75 16.6904 14.75 16C14.75 15.3528 14.2582 14.8209 13.6279 14.7568L13.5 14.75ZM17.5 14.75C16.8528 14.75 16.3209 15.2418 16.2568 15.8721L16.25 16L16.2568 16.1279C16.3209 16.7582 16.8528 17.25 17.5 17.25C18.1904 17.25 18.75 16.6904 18.75 16C18.75 15.3528 18.2582 14.8209 17.6279 14.7568L17.5 14.75ZM4 11H8V8H4V11ZM10 11H20V8H10V11Z",fill:"currentColor"})),I=c;0&&(module.exports={IconRadio});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRadio/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadio: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"radio, antenna, signal, broadcast, speaker\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.3516 3.43652L8.51562 6H22V21H2V6.30664L14.6484 1.56348L15.3516 3.43652ZM13.5 14.75C12.8528 14.75 12.3209 15.2418 12.2568 15.8721L12.25 16L12.2568 16.1279C12.3209 16.7582 12.8528 17.25 13.5 17.25C14.1904 17.25 14.75 16.6904 14.75 16C14.75 15.3528 14.2582 14.8209 13.6279 14.7568L13.5 14.75ZM17.5 14.75C16.8528 14.75 16.3209 15.2418 16.2568 15.8721L16.25 16L16.2568 16.1279C16.3209 16.7582 16.8528 17.25 17.5 17.25C18.1904 17.25 18.75 16.6904 18.75 16C18.75 15.3528 18.2582 14.8209 17.6279 14.7568L17.5 14.75ZM4 11H8V8H4V11ZM10 11H20V8H10V11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadio;\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,eAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEV,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,miBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRadio_exports","__export","IconRadio","IconRadio_default","__toCommonJS","import_react","import_react","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","React","IconRadio","props","React","CentralIconBase","IconRadio_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import l from"react";import n from"react";var a=({children:r,size:e=24,ariaLabel:t,color:p,ariaHidden:o=!0,style:s,...C})=>n.createElement("svg",{...C,"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:p,...s}},t&&!o&&n.createElement("title",null,t),r);var i=r=>l.createElement(a,{...r,ariaLabel:"radio, antenna, signal, broadcast, speaker"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M15.3516 3.43652L8.51562 6H22V21H2V6.30664L14.6484 1.56348L15.3516 3.43652ZM13.5 14.75C12.8528 14.75 12.3209 15.2418 12.2568 15.8721L12.25 16L12.2568 16.1279C12.3209 16.7582 12.8528 17.25 13.5 17.25C14.1904 17.25 14.75 16.6904 14.75 16C14.75 15.3528 14.2582 14.8209 13.6279 14.7568L13.5 14.75ZM17.5 14.75C16.8528 14.75 16.3209 15.2418 16.2568 15.8721L16.25 16L16.2568 16.1279C16.3209 16.7582 16.8528 17.25 17.5 17.25C18.1904 17.25 18.75 16.6904 18.75 16C18.75 15.3528 18.2582 14.8209 17.6279 14.7568L17.5 14.75ZM4 11H8V8H4V11ZM10 11H20V8H10V11Z",fill:"currentColor"})),u=i;export{i as IconRadio,u as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRadio/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadio: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"radio, antenna, signal, broadcast, speaker\"\n >\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.3516 3.43652L8.51562 6H22V21H2V6.30664L14.6484 1.56348L15.3516 3.43652ZM13.5 14.75C12.8528 14.75 12.3209 15.2418 12.2568 15.8721L12.25 16L12.2568 16.1279C12.3209 16.7582 12.8528 17.25 13.5 17.25C14.1904 17.25 14.75 16.6904 14.75 16C14.75 15.3528 14.2582 14.8209 13.6279 14.7568L13.5 14.75ZM17.5 14.75C16.8528 14.75 16.3209 15.2418 16.2568 15.8721L16.25 16L16.2568 16.1279C16.3209 16.7582 16.8528 17.25 17.5 17.25C18.1904 17.25 18.75 16.6904 18.75 16C18.75 15.3528 18.2582 14.8209 17.6279 14.7568L17.5 14.75ZM4 11H8V8H4V11ZM10 11H20V8H10V11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadio;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,8CAEVC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,miBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRadio","props","React","CentralIconBase","IconRadio_default"]}
|
package/README.md
CHANGED