@central-icons-react-native/round-outlined-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/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 c=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of f(o))!L.call(r,s)&&s!==e&&p(r,s,{get:()=>o[s],enumerable:!(C=m(o,s))||C.enumerable});return r};var l=(r,o,e)=>(e=r!=null?c(h(r)):{},i(o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconRadio:()=>k,default:()=>x});module.exports=I(P);var t=l(require("react"));var u=l(require("react")),a=require("react-native-svg"),d=({children:r,size:o=24,...e})=>u.default.createElement(a.Svg,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),k=r=>t.default.createElement(d,{...r},t.default.createElement(n.Path,{d:"M4 6.99976H21V19.9998H3V7L15 2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M9 7.5V11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M17 15.125C17.4832 15.125 17.875 15.5168 17.875 16C17.875 16.4832 17.4832 16.875 17 16.875C16.5168 16.875 16.125 16.4832 16.125 16C16.125 15.5168 16.5168 15.125 17 15.125Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"}),t.default.createElement(n.Path,{d:"M13 15.125C13.4832 15.125 13.875 15.5168 13.875 16C13.875 16.4832 13.4832 16.875 13 16.875C12.5168 16.875 12.125 16.4832 12.125 16C12.125 15.5168 12.5168 15.125 13 15.125Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"})),x=k;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 d=\"M4 6.99976H21V19.9998H3V7L15 2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 7.5V11.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 15.125C17.4832 15.125 17.875 15.5168 17.875 16C17.875 16.4832 17.4832 16.875 17 16.875C16.5168 16.875 16.125 16.4832 16.125 16C16.125 15.5168 16.5168 15.125 17 15.125Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M13 15.125C13.4832 15.125 13.875 15.5168 13.875 16C13.875 16.4832 13.4832 16.875 13 16.875C12.5168 16.875 12.125 16.4832 12.125 16C12.125 15.5168 12.5168 15.125 13 15.125Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\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,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,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 o from"react";import p from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...s})=>p.createElement(C,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as e}from"react-native-svg";var i=t=>o.createElement(n,{...t},o.createElement(e,{d:"M4 6.99976H21V19.9998H3V7L15 2.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M3 12H21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M9 7.5V11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M17 15.125C17.4832 15.125 17.875 15.5168 17.875 16C17.875 16.4832 17.4832 16.875 17 16.875C16.5168 16.875 16.125 16.4832 16.125 16C16.125 15.5168 16.5168 15.125 17 15.125Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"}),o.createElement(e,{d:"M13 15.125C13.4832 15.125 13.875 15.5168 13.875 16C13.875 16.4832 13.4832 16.875 13 16.875C12.5168 16.875 12.125 16.4832 12.125 16C12.125 15.5168 12.5168 15.125 13 15.125Z",fill:"currentColor",stroke:"currentColor",strokeWidth:"0.75",strokeLinecap:"square"})),L=i;export{i as IconRadio,L 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 d=\"M4 6.99976H21V19.9998H3V7L15 2.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M3 12H21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 7.5V11.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 15.125C17.4832 15.125 17.875 15.5168 17.875 16C17.875 16.4832 17.4832 16.875 17 16.875C16.5168 16.875 16.125 16.4832 16.125 16C16.125 15.5168 16.5168 15.125 17 15.125Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M13 15.125C13.4832 15.125 13.875 15.5168 13.875 16C13.875 16.4832 13.4832 16.875 13 16.875C12.5168 16.875 12.125 16.4832 12.125 16C12.125 15.5168 12.5168 15.125 13 15.125Z\"\n fill=\"currentColor\"\n stroke=\"currentColor\"\n strokeWidth=\"0.75\"\n strokeLinecap=\"square\"\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,EAAE,mCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8KACF,KAAK,eACL,OAAO,eACP,YAAY,OACZ,cAAc,SAChB,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": "round-outlined-radius-0-stroke-2",
|
|
16661
16661
|
"componentName": "IconRadar"
|
|
16662
16662
|
},
|
|
16663
|
+
{
|
|
16664
|
+
"category": "Devices & Signals",
|
|
16665
|
+
"svg": "<path d=\"M4 6.99976H21V19.9998H3V7L15 2.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M3 12H21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 7.5V11.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 15.125C17.4832 15.125 17.875 15.5168 17.875 16C17.875 16.4832 17.4832 16.875 17 16.875C16.5168 16.875 16.125 16.4832 16.125 16C16.125 15.5168 16.5168 15.125 17 15.125Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.75\" stroke-linecap=\"square\"/><path d=\"M13 15.125C13.4832 15.125 13.875 15.5168 13.875 16C13.875 16.4832 13.4832 16.875 13 16.875C12.5168 16.875 12.125 16.4832 12.125 16C12.125 15.5168 12.5168 15.125 13 15.125Z\" fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"0.75\" stroke-linecap=\"square\"/>",
|
|
16666
|
+
"iconName": "radio, antenna, signal, broadcast, speaker",
|
|
16667
|
+
"variant": {
|
|
16668
|
+
"join": "round",
|
|
16669
|
+
"filled": "off",
|
|
16670
|
+
"radius": "0",
|
|
16671
|
+
"stroke": "2"
|
|
16672
|
+
},
|
|
16673
|
+
"createdAt": "2025-12-09T15:02:02.851667+00:00",
|
|
16674
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
16675
|
+
"componentName": "IconRadio"
|
|
16676
|
+
},
|
|
16663
16677
|
{
|
|
16664
16678
|
"category": "Nature & Energy",
|
|
16665
16679
|
"svg": "<path d=\"M1.04297 17C1.5482 11.3935 6.26008 7 11.9981 7C17.7362 7 22.4481 11.3935 22.9533 17M5.06901 17C5.55424 13.6077 8.47165 11 11.9981 11C15.5246 11 18.442 13.6077 18.9272 17M9.16883 17C9.58067 15.8348 10.6919 15 11.9981 15C13.3043 15 14.4156 15.8348 14.8274 17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.62",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-2/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";
|