@central-icons-react-native/square-filled-radius-0-stroke-1.5 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/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- 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
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of d(r))!I.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(C=L(r,t))||C.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(B(o)):{},l(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(n({},"__esModule",{value:!0}),o);var g={};v(g,{IconRadio:()=>i,default:()=>P});module.exports=x(g);var p=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>p.default.createElement(c,{...o},p.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.9629 2.69531L6.9668 6H22V21H2V6.22656L15.4453 1.28711L15.9629 2.69531ZM13.5 14.875C12.9176 14.875 12.4386 15.3176 12.3809 15.8848L12.375 16L12.3809 16.1152C12.4386 16.6824 12.9176 17.125 13.5 17.125C14.1213 17.125 14.625 16.6213 14.625 16C14.625 15.4176 14.1824 14.9386 13.6152 14.8809L13.5 14.875ZM17.5 14.875C16.9176 14.875 16.4386 15.3176 16.3809 15.8848L16.375 16L16.3809 16.1152C16.4386 16.6824 16.9176 17.125 17.5 17.125C18.1213 17.125 18.625 16.6213 18.625 16C18.625 15.4176 18.1824 14.9386 17.6152 14.8809L17.5 14.875ZM3.5 11H8V7.5H3.5V11ZM9.5 11H20.5V7.5H9.5V11Z",fill:"currentColor"})),P=i;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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRadio: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.9629 2.69531L6.9668 6H22V21H2V6.22656L15.4453 1.28711L15.9629 2.69531ZM13.5 14.875C12.9176 14.875 12.4386 15.3176 12.3809 15.8848L12.375 16L12.3809 16.1152C12.4386 16.6824 12.9176 17.125 13.5 17.125C14.1213 17.125 14.625 16.6213 14.625 16C14.625 15.4176 14.1824 14.9386 13.6152 14.8809L13.5 14.875ZM17.5 14.875C16.9176 14.875 16.4386 15.3176 16.3809 15.8848L16.375 16L16.3809 16.1152C16.4386 16.6824 16.9176 17.125 17.5 17.125C18.1213 17.125 18.625 16.6213 18.625 16C18.625 15.4176 18.1824 14.9386 17.6152 14.8809L17.5 14.875ZM3.5 11H8V7.5H3.5V11ZM9.5 11H20.5V7.5H9.5V11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadio;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,eAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,kkBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconRadio_exports","__export","IconRadio","IconRadio_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRadio","props","React","CentralIconBase","IconRadio_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import p from"react";import{Svg as C}from"react-native-svg";var e=({children:r,size:o=24,...n})=>p.createElement(C,{...n,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>t.createElement(e,{...r},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.9629 2.69531L6.9668 6H22V21H2V6.22656L15.4453 1.28711L15.9629 2.69531ZM13.5 14.875C12.9176 14.875 12.4386 15.3176 12.3809 15.8848L12.375 16L12.3809 16.1152C12.4386 16.6824 12.9176 17.125 13.5 17.125C14.1213 17.125 14.625 16.6213 14.625 16C14.625 15.4176 14.1824 14.9386 13.6152 14.8809L13.5 14.875ZM17.5 14.875C16.9176 14.875 16.4386 15.3176 16.3809 15.8848L16.375 16L16.3809 16.1152C16.4386 16.6824 16.9176 17.125 17.5 17.125C18.1213 17.125 18.625 16.6213 18.625 16C18.625 15.4176 18.1824 14.9386 17.6152 14.8809L17.5 14.875ZM3.5 11H8V7.5H3.5V11ZM9.5 11H20.5V7.5H9.5V11Z",fill:"currentColor"})),I=a;export{a as IconRadio,I 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, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconRadio: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M15.9629 2.69531L6.9668 6H22V21H2V6.22656L15.4453 1.28711L15.9629 2.69531ZM13.5 14.875C12.9176 14.875 12.4386 15.3176 12.3809 15.8848L12.375 16L12.3809 16.1152C12.4386 16.6824 12.9176 17.125 13.5 17.125C14.1213 17.125 14.625 16.6213 14.625 16C14.625 15.4176 14.1824 14.9386 13.6152 14.8809L13.5 14.875ZM17.5 14.875C16.9176 14.875 16.4386 15.3176 16.3809 15.8848L16.375 16L16.3809 16.1152C16.4386 16.6824 16.9176 17.125 17.5 17.125C18.1213 17.125 18.625 16.6213 18.625 16C18.625 15.4176 18.1824 14.9386 17.6152 14.8809L17.5 14.875ZM3.5 11H8V7.5H3.5V11ZM9.5 11H20.5V7.5H9.5V11Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRadio;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,kkBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRadio","props","React","CentralIconBase","IconRadio_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -16660,6 +16660,20 @@
|
|
|
16660
16660
|
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
16661
16661
|
"componentName": "IconRadar"
|
|
16662
16662
|
},
|
|
16663
|
+
{
|
|
16664
|
+
"category": "Devices & Signals",
|
|
16665
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.9629 2.69531L6.9668 6H22V21H2V6.22656L15.4453 1.28711L15.9629 2.69531ZM13.5 14.875C12.9176 14.875 12.4386 15.3176 12.3809 15.8848L12.375 16L12.3809 16.1152C12.4386 16.6824 12.9176 17.125 13.5 17.125C14.1213 17.125 14.625 16.6213 14.625 16C14.625 15.4176 14.1824 14.9386 13.6152 14.8809L13.5 14.875ZM17.5 14.875C16.9176 14.875 16.4386 15.3176 16.3809 15.8848L16.375 16L16.3809 16.1152C16.4386 16.6824 16.9176 17.125 17.5 17.125C18.1213 17.125 18.625 16.6213 18.625 16C18.625 15.4176 18.1824 14.9386 17.6152 14.8809L17.5 14.875ZM3.5 11H8V7.5H3.5V11ZM9.5 11H20.5V7.5H9.5V11Z\" fill=\"currentColor\"/>",
|
|
16666
|
+
"iconName": "radio, antenna, signal, broadcast, speaker",
|
|
16667
|
+
"variant": {
|
|
16668
|
+
"join": "square",
|
|
16669
|
+
"filled": "on",
|
|
16670
|
+
"radius": "0",
|
|
16671
|
+
"stroke": "1.5"
|
|
16672
|
+
},
|
|
16673
|
+
"createdAt": "2025-12-09T15:02:02.851667+00:00",
|
|
16674
|
+
"packageName": "square-filled-radius-0-stroke-1.5",
|
|
16675
|
+
"componentName": "IconRadio"
|
|
16676
|
+
},
|
|
16663
16677
|
{
|
|
16664
16678
|
"category": "Nature & Energy",
|
|
16665
16679
|
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 7.5C6.20101 7.5 1.5 12.201 1.5 18H0C0 11.3726 5.37258 6 12 6C18.6274 6 24 11.3726 24 18H22.5C22.5 12.201 17.799 7.5 12 7.5ZM12 10.5C7.85786 10.5 4.5 13.8579 4.5 18H3C3 13.0294 7.02944 9 12 9C16.9706 9 21 13.0294 21 18H19.5C19.5 13.8579 16.1421 10.5 12 10.5ZM12 13.5C9.51472 13.5 7.5 15.5147 7.5 18H6C6 14.6863 8.68629 12 12 12C15.3137 12 18 14.6863 18 18H16.5C16.5 15.5147 14.4853 13.5 12 13.5ZM12 16.5C11.1716 16.5 10.5 17.1716 10.5 18H9C9 16.3431 10.3431 15 12 15C13.6569 15 15 16.3431 15 18H13.5C13.5 17.1716 12.8284 16.5 12 16.5Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-filled-radius-0-stroke-1.5",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.62",
|
|
4
4
|
"style": "square-filled-radius-0-stroke-1.5",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-filled-radius-0-stroke-1.5/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1630,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -405,7 +405,7 @@
|
|
|
405
405
|
]
|
|
406
406
|
},
|
|
407
407
|
"Devices & Signals": {
|
|
408
|
-
"count":
|
|
408
|
+
"count": 66,
|
|
409
409
|
"icons": [
|
|
410
410
|
"IconAirdrop",
|
|
411
411
|
"IconAirplay",
|
|
@@ -451,6 +451,7 @@
|
|
|
451
451
|
"IconPhoneHaptic",
|
|
452
452
|
"IconPrinter",
|
|
453
453
|
"IconProcessor",
|
|
454
|
+
"IconRadio",
|
|
454
455
|
"IconSatellite1",
|
|
455
456
|
"IconSatellite2",
|
|
456
457
|
"IconServer1",
|
|
@@ -3009,6 +3010,7 @@
|
|
|
3009
3010
|
"IconQuickSearch": "quick-search, quick-menu, command-k",
|
|
3010
3011
|
"IconQuora": "quora",
|
|
3011
3012
|
"IconRadar": "radar, location, search",
|
|
3013
|
+
"IconRadio": "radio, antenna, signal, broadcast, speaker",
|
|
3012
3014
|
"IconRainbow": "rainbow",
|
|
3013
3015
|
"IconRainy": "rainy, rain",
|
|
3014
3016
|
"IconRainyLight": "rainy-light",
|
package/index.d.ts
CHANGED
|
@@ -1188,6 +1188,7 @@ export { IconQrCode, default as IconQrCodeDefault } from "./IconQrCode";
|
|
|
1188
1188
|
export { IconQuickSearch, default as IconQuickSearchDefault, } from "./IconQuickSearch";
|
|
1189
1189
|
export { IconQuora, default as IconQuoraDefault } from "./IconQuora";
|
|
1190
1190
|
export { IconRadar, default as IconRadarDefault } from "./IconRadar";
|
|
1191
|
+
export { IconRadio, default as IconRadioDefault } from "./IconRadio";
|
|
1191
1192
|
export { IconRainbow, default as IconRainbowDefault } from "./IconRainbow";
|
|
1192
1193
|
export { IconRainy, default as IconRainyDefault } from "./IconRainy";
|
|
1193
1194
|
export { IconRainyLight, default as IconRainyLightDefault, } from "./IconRainyLight";
|