@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.64 → 1.1.65
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/IconTape2/index.d.ts +4 -0
- package/IconTape2/index.js +2 -0
- package/IconTape2/index.js.map +1 -0
- package/IconTape2/index.mjs +2 -0
- package/IconTape2/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 s=Object.defineProperty;var l=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var f=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let i of m(o))!L.call(r,i)&&i!==e&&s(r,i,{get:()=>o[i],enumerable:!(p=l(o,i))||p.enumerable});return r};var u=(r,o,e)=>(e=r!=null?c(x(r)):{},d(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>d(s({},"__esModule",{value:!0}),r);var I={};f(I,{IconTape2:()=>a,default:()=>B});module.exports=g(I);var t=u(require("react"));var k=u(require("react")),C=require("react-native-svg"),h=({children:r,size:o=24,...e})=>k.default.createElement(C.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"),a=r=>t.default.createElement(h,{...r},t.default.createElement(n.Rect,{x:"3",y:"5",width:"18",height:"14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M6.5 10.5C6.5 9.39543 7.39543 8.5 8.5 8.5H15.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5H8.5C7.39543 12.5 6.5 11.6046 6.5 10.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Path,{d:"M8 16H16L17.5 19H6.5L8 16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Rect,{x:"6.5",y:"8.5",width:"4",height:"4",rx:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(n.Rect,{x:"13.5",y:"8.5",width:"4",height:"4",rx:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=a;0&&(module.exports={IconTape2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTape2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path, Rect } from \"react-native-svg\";\n\nexport const IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Rect\n x=\"3\"\n y=\"5\"\n width=\"18\"\n height=\"14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 10.5C6.5 9.39543 7.39543 8.5 8.5 8.5H15.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5H8.5C7.39543 12.5 6.5 11.6046 6.5 10.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 16H16L17.5 19H6.5L8 16Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Rect\n x=\"6.5\"\n y=\"8.5\"\n width=\"4\"\n height=\"4\"\n rx=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Rect\n x=\"13.5\"\n y=\"8.5\"\n width=\"4\"\n height=\"4\"\n rx=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape2;\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,EAA2B,4BAEdC,EAAuCC,GAEhD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,KACP,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+JACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,MACF,EAAE,MACF,MAAM,IACN,OAAO,IACP,GAAG,IACH,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,OACF,EAAE,MACF,MAAM,IACN,OAAO,IACP,GAAG,IACH,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconTape2_exports","__export","IconTape2","IconTape2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconTape2","props","React","CentralIconBase","IconTape2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as d}from"react-native-svg";var n=({children:e,size:r=24,...s})=>p.createElement(d,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as i,Rect as t}from"react-native-svg";var u=e=>o.createElement(n,{...e},o.createElement(t,{x:"3",y:"5",width:"18",height:"14",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(i,{d:"M6.5 10.5C6.5 9.39543 7.39543 8.5 8.5 8.5H15.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5H8.5C7.39543 12.5 6.5 11.6046 6.5 10.5Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(i,{d:"M8 16H16L17.5 19H6.5L8 16Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{x:"6.5",y:"8.5",width:"4",height:"4",rx:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{x:"13.5",y:"8.5",width:"4",height:"4",rx:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),f=u;export{u as IconTape2,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconTape2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path, Rect } from \"react-native-svg\";\n\nexport const IconTape2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Rect\n x=\"3\"\n y=\"5\"\n width=\"18\"\n height=\"14\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6.5 10.5C6.5 9.39543 7.39543 8.5 8.5 8.5H15.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5H8.5C7.39543 12.5 6.5 11.6046 6.5 10.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 16H16L17.5 19H6.5L8 16Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Rect\n x=\"6.5\"\n y=\"8.5\"\n width=\"4\"\n height=\"4\"\n rx=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Rect\n x=\"13.5\"\n y=\"8.5\"\n width=\"4\"\n height=\"4\"\n rx=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconTape2;\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,EAAM,QAAAC,MAAY,mBAEpB,IAAMC,EAAuCC,GAEhDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,KACP,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,EAAE,+JACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACJ,EAAA,CACC,EAAE,6BACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,MACF,EAAE,MACF,MAAM,IACN,OAAO,IACP,GAAG,IACH,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,OACF,EAAE,MACF,MAAM,IACN,OAAO,IACP,GAAG,IACH,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","Rect","IconTape2","props","React","CentralIconBase","IconTape2_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -20356,6 +20356,20 @@
|
|
|
20356
20356
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
20357
20357
|
"componentName": "IconTape"
|
|
20358
20358
|
},
|
|
20359
|
+
{
|
|
20360
|
+
"category": "Devices & Signals",
|
|
20361
|
+
"svg": "<rect x=\"3\" y=\"5\" width=\"18\" height=\"14\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6.5 10.5C6.5 9.39543 7.39543 8.5 8.5 8.5H15.5C16.6046 8.5 17.5 9.39543 17.5 10.5C17.5 11.6046 16.6046 12.5 15.5 12.5H8.5C7.39543 12.5 6.5 11.6046 6.5 10.5Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 16H16L17.5 19H6.5L8 16Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"6.5\" y=\"8.5\" width=\"4\" height=\"4\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"13.5\" y=\"8.5\" width=\"4\" height=\"4\" rx=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
20362
|
+
"iconName": "tape-2, cassette, record, music",
|
|
20363
|
+
"variant": {
|
|
20364
|
+
"join": "round",
|
|
20365
|
+
"filled": "off",
|
|
20366
|
+
"radius": "0",
|
|
20367
|
+
"stroke": "2"
|
|
20368
|
+
},
|
|
20369
|
+
"createdAt": "2025-12-12T09:01:58.254722+00:00",
|
|
20370
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
20371
|
+
"componentName": "IconTape2"
|
|
20372
|
+
},
|
|
20359
20373
|
{
|
|
20360
20374
|
"category": "Interface General",
|
|
20361
20375
|
"svg": "<path d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M13 12C13 12.5523 12.5523 13 12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"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.65",
|
|
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": 1636,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 63,
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
]
|
|
409
409
|
},
|
|
410
410
|
"Devices & Signals": {
|
|
411
|
-
"count":
|
|
411
|
+
"count": 67,
|
|
412
412
|
"icons": [
|
|
413
413
|
"IconAirdrop",
|
|
414
414
|
"IconAirplay",
|
|
@@ -467,6 +467,7 @@
|
|
|
467
467
|
"IconStudioDisplay",
|
|
468
468
|
"IconTablet",
|
|
469
469
|
"IconTape",
|
|
470
|
+
"IconTape2",
|
|
470
471
|
"IconTelevision",
|
|
471
472
|
"IconTelevisionOld",
|
|
472
473
|
"IconUsb",
|
|
@@ -3279,6 +3280,7 @@
|
|
|
3279
3280
|
"IconTag": "tag, sale",
|
|
3280
3281
|
"IconTapas": "tapas, canabes",
|
|
3281
3282
|
"IconTape": "tape",
|
|
3283
|
+
"IconTape2": "tape-2, cassette, record, music",
|
|
3282
3284
|
"IconTarget": "target, focus, do-not-disdurb",
|
|
3283
3285
|
"IconTarget1": "target-1, zoom, crosshair",
|
|
3284
3286
|
"IconTarget2": "target-2, zoom, crosshair",
|
package/index.d.ts
CHANGED
|
@@ -1452,6 +1452,7 @@ export { IconTactics2, default as IconTactics2Default } from "./IconTactics2";
|
|
|
1452
1452
|
export { IconTag, default as IconTagDefault } from "./IconTag";
|
|
1453
1453
|
export { IconTapas, default as IconTapasDefault } from "./IconTapas";
|
|
1454
1454
|
export { IconTape, default as IconTapeDefault } from "./IconTape";
|
|
1455
|
+
export { IconTape2, default as IconTape2Default } from "./IconTape2";
|
|
1455
1456
|
export { IconTarget, default as IconTargetDefault } from "./IconTarget";
|
|
1456
1457
|
export { IconTarget1, default as IconTarget1Default } from "./IconTarget1";
|
|
1457
1458
|
export { IconTarget2, default as IconTarget2Default } from "./IconTarget2";
|