@central-icons-react-native/round-outlined-radius-1-stroke-1.5 1.1.68 → 1.1.69

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.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconVibeCoding2: FC<CentralIconBaseProps>;
4
+ export default IconVibeCoding2;
@@ -0,0 +1,2 @@
1
+ "use strict";var c=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.getPrototypeOf,B=Object.prototype.hasOwnProperty;var I=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of f(o))!B.call(r,n)&&n!==e&&C(r,n,{get:()=>o[n],enumerable:!(s=d(o,n))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?c(k(r)):{},i(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>i(C({},"__esModule",{value:!0}),r);var P={};I(P,{IconVibeCoding2:()=>u,default:()=>x});module.exports=g(P);var t=a(require("react"));var l=a(require("react")),L=require("react-native-svg"),m=({children:r,size:o=24,...e})=>l.default.createElement(L.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 p=require("react-native-svg"),u=r=>t.default.createElement(m,{...r},t.default.createElement(p.Path,{d:"M18.2405 5.18518L17.5436 3.37334C17.4571 3.14842 17.241 3 17 3C16.759 3 16.5429 3.14842 16.4564 3.37334L15.7595 5.18518C15.658 5.44927 15.4493 5.65797 15.1852 5.75955L13.3733 6.45641C13.1484 6.54292 13 6.75901 13 7C13 7.24099 13.1484 7.45708 13.3733 7.54359L15.1852 8.24045C15.4493 8.34203 15.658 8.55073 15.7595 8.81482L16.4564 10.6267C16.5429 10.8516 16.759 11 17 11C17.241 11 17.4571 10.8516 17.5436 10.6267L18.2405 8.81482C18.342 8.55073 18.5507 8.34203 18.8148 8.24045L20.6267 7.54359C20.8516 7.45708 21 7.24099 21 7C21 6.75901 20.8516 6.54292 20.6267 6.45641L18.8148 5.75955C18.5507 5.65797 18.342 5.44927 18.2405 5.18518Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M9.25 4.75L2 12L9.25 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),t.default.createElement(p.Path,{d:"M22 12L14.75 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),x=u;0&&(module.exports={IconVibeCoding2});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVibeCoding2/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 IconVibeCoding2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.2405 5.18518L17.5436 3.37334C17.4571 3.14842 17.241 3 17 3C16.759 3 16.5429 3.14842 16.4564 3.37334L15.7595 5.18518C15.658 5.44927 15.4493 5.65797 15.1852 5.75955L13.3733 6.45641C13.1484 6.54292 13 6.75901 13 7C13 7.24099 13.1484 7.45708 13.3733 7.54359L15.1852 8.24045C15.4493 8.34203 15.658 8.55073 15.7595 8.81482L16.4564 10.6267C16.5429 10.8516 16.759 11 17 11C17.241 11 17.4571 10.8516 17.5436 10.6267L18.2405 8.81482C18.342 8.55073 18.5507 8.34203 18.8148 8.24045L20.6267 7.54359C20.8516 7.45708 21 7.24099 21 7C21 6.75901 20.8516 6.54292 20.6267 6.45641L18.8148 5.75955C18.5507 5.65797 18.342 5.44927 18.2405 5.18518Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.25 4.75L2 12L9.25 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22 12L14.75 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVibeCoding2;\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,qBAAAE,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,EAA6CC,GAEtD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,unBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVibeCoding2_exports","__export","IconVibeCoding2","IconVibeCoding2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVibeCoding2","props","React","CentralIconBase","IconVibeCoding2_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var t=({children:e,size:r=24,...C})=>p.createElement(s,{...C,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 n}from"react-native-svg";var i=e=>o.createElement(t,{...e},o.createElement(n,{d:"M18.2405 5.18518L17.5436 3.37334C17.4571 3.14842 17.241 3 17 3C16.759 3 16.5429 3.14842 16.4564 3.37334L15.7595 5.18518C15.658 5.44927 15.4493 5.65797 15.1852 5.75955L13.3733 6.45641C13.1484 6.54292 13 6.75901 13 7C13 7.24099 13.1484 7.45708 13.3733 7.54359L15.1852 8.24045C15.4493 8.34203 15.658 8.55073 15.7595 8.81482L16.4564 10.6267C16.5429 10.8516 16.759 11 17 11C17.241 11 17.4571 10.8516 17.5436 10.6267L18.2405 8.81482C18.342 8.55073 18.5507 8.34203 18.8148 8.24045L20.6267 7.54359C20.8516 7.45708 21 7.24099 21 7C21 6.75901 20.8516 6.54292 20.6267 6.45641L18.8148 5.75955C18.5507 5.65797 18.342 5.44927 18.2405 5.18518Z",fill:"currentColor"}),o.createElement(n,{d:"M9.25 4.75L2 12L9.25 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M22 12L14.75 19.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),B=i;export{i as IconVibeCoding2,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconVibeCoding2/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 IconVibeCoding2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M18.2405 5.18518L17.5436 3.37334C17.4571 3.14842 17.241 3 17 3C16.759 3 16.5429 3.14842 16.4564 3.37334L15.7595 5.18518C15.658 5.44927 15.4493 5.65797 15.1852 5.75955L13.3733 6.45641C13.1484 6.54292 13 6.75901 13 7C13 7.24099 13.1484 7.45708 13.3733 7.54359L15.1852 8.24045C15.4493 8.34203 15.658 8.55073 15.7595 8.81482L16.4564 10.6267C16.5429 10.8516 16.759 11 17 11C17.241 11 17.4571 10.8516 17.5436 10.6267L18.2405 8.81482C18.342 8.55073 18.5507 8.34203 18.8148 8.24045L20.6267 7.54359C20.8516 7.45708 21 7.24099 21 7C21 6.75901 20.8516 6.54292 20.6267 6.45641L18.8148 5.75955C18.5507 5.65797 18.342 5.44927 18.2405 5.18518Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M9.25 4.75L2 12L9.25 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M22 12L14.75 19.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVibeCoding2;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,unBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,qBACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVibeCoding2","props","React","CentralIconBase","IconVibeCoding2_default"]}
package/README.md CHANGED
@@ -450,6 +450,7 @@ Below is a complete list of available icons:
450
450
  - IconShip
451
451
  - IconTestflight
452
452
  - IconVibeCoding
453
+ - IconVibeCoding2
453
454
  - IconWebsite
454
455
 
455
456
  ### Communication
@@ -21882,6 +21882,20 @@
21882
21882
  "packageName": "round-outlined-radius-1-stroke-1.5",
21883
21883
  "componentName": "IconVibeCoding"
21884
21884
  },
21885
+ {
21886
+ "category": "Code",
21887
+ "svg": "<path d=\"M18.2405 5.18518L17.5436 3.37334C17.4571 3.14842 17.241 3 17 3C16.759 3 16.5429 3.14842 16.4564 3.37334L15.7595 5.18518C15.658 5.44927 15.4493 5.65797 15.1852 5.75955L13.3733 6.45641C13.1484 6.54292 13 6.75901 13 7C13 7.24099 13.1484 7.45708 13.3733 7.54359L15.1852 8.24045C15.4493 8.34203 15.658 8.55073 15.7595 8.81482L16.4564 10.6267C16.5429 10.8516 16.759 11 17 11C17.241 11 17.4571 10.8516 17.5436 10.6267L18.2405 8.81482C18.342 8.55073 18.5507 8.34203 18.8148 8.24045L20.6267 7.54359C20.8516 7.45708 21 7.24099 21 7C21 6.75901 20.8516 6.54292 20.6267 6.45641L18.8148 5.75955C18.5507 5.65797 18.342 5.44927 18.2405 5.18518Z\" fill=\"currentColor\"/><path d=\"M9.25 4.75L2 12L9.25 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22 12L14.75 19.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
21888
+ "iconName": "vibe-coding-2, ai, ide, syntax",
21889
+ "variant": {
21890
+ "join": "round",
21891
+ "filled": "off",
21892
+ "radius": "1",
21893
+ "stroke": "1.5"
21894
+ },
21895
+ "createdAt": "2025-12-16T19:02:16.049338+00:00",
21896
+ "packageName": "round-outlined-radius-1-stroke-1.5",
21897
+ "componentName": "IconVibeCoding2"
21898
+ },
21885
21899
  {
21886
21900
  "category": "People",
21887
21901
  "svg": "<path d=\"M1.75 20.25C1.75 15.5839 5.32074 13.5638 8.4125 14.1897\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 5C17.5516 5.63061 17.9302 6.28903 18.1667 7.05714C18.9047 6.65121 19.6656 6.3 20.5 6.13143\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.90201 10.9929C5.63764 10.9929 3.80201 9.15083 3.80201 6.87857C3.8019 5.33571 4.31451 3.27857 6.36451 3.27857C7.55762 3.27857 9.4394 2.25 9.4394 2.25C10.0869 3.26228 11.0764 3.54532 12.002 2.76429C13.2097 3.97619 12.9029 5.15889 12.002 6.36429V6.87857C12.002 9.15083 10.1664 10.9929 7.90201 10.9929Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect width=\"4\" height=\"2.5\" rx=\"0.5\" transform=\"matrix(-1 0 0 1 8 6)\" fill=\"currentColor\"/><rect width=\"3\" height=\"2.5\" rx=\"0.5\" transform=\"matrix(-1 0 0 1 12 6)\" fill=\"currentColor\"/><path d=\"M9.4375 6.75H7.3875\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.7 20.2498H19.445C19.8918 20.2498 20.2844 19.9534 20.4068 19.5236L21.8873 14.3236C22.0691 13.685 21.5895 13.0498 20.9255 13.0498H13.8825C13.2123 13.0498 12.6234 13.4944 12.4399 14.139L10.7 20.2498ZM10.7 20.2498H6.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
package/icons/index.d.ts CHANGED
@@ -1562,6 +1562,7 @@ export type CentralIconName =
1562
1562
  | "IconVerticalAlignmentLeft"
1563
1563
  | "IconVerticalAlignmentRight"
1564
1564
  | "IconVibeCoding"
1565
+ | "IconVibeCoding2"
1565
1566
  | "IconVibeCodingBird"
1566
1567
  | "IconVibeCodingStar"
1567
1568
  | "IconVideo"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-1-stroke-1.5",
3
- "version": "1.1.68",
3
+ "version": "1.1.69",
4
4
  "style": "round-outlined-radius-1-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-1-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": 1641,
14
+ "totalIcons": 1642,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
17
  "count": 63,
@@ -286,7 +286,7 @@
286
286
  ]
287
287
  },
288
288
  "Code": {
289
- "count": 45,
289
+ "count": 46,
290
290
  "icons": [
291
291
  "IconAnchor",
292
292
  "IconAnimation",
@@ -332,6 +332,7 @@
332
332
  "IconShip",
333
333
  "IconTestflight",
334
334
  "IconVibeCoding",
335
+ "IconVibeCoding2",
335
336
  "IconWebsite"
336
337
  ]
337
338
  },
@@ -3394,6 +3395,7 @@
3394
3395
  "IconVerticalAlignmentLeft": "vertical-alignment-left",
3395
3396
  "IconVerticalAlignmentRight": "vertical-alignment-right",
3396
3397
  "IconVibeCoding": "vibe-coding, ai, ide, syntax",
3398
+ "IconVibeCoding2": "vibe-coding-2, ai, ide, syntax",
3397
3399
  "IconVibeCodingBird": "vibe-coding-bird, laptop, work",
3398
3400
  "IconVibeCodingStar": "vibe-coding-star, working, home-office",
3399
3401
  "IconVideo": "video, camera, movie, play",
package/index.d.ts CHANGED
@@ -1561,6 +1561,7 @@ export { IconVerticalAlignmentCenter, default as IconVerticalAlignmentCenterDefa
1561
1561
  export { IconVerticalAlignmentLeft, default as IconVerticalAlignmentLeftDefault, } from "./IconVerticalAlignmentLeft";
1562
1562
  export { IconVerticalAlignmentRight, default as IconVerticalAlignmentRightDefault, } from "./IconVerticalAlignmentRight";
1563
1563
  export { IconVibeCoding, default as IconVibeCodingDefault, } from "./IconVibeCoding";
1564
+ export { IconVibeCoding2, default as IconVibeCoding2Default, } from "./IconVibeCoding2";
1564
1565
  export { IconVibeCodingBird, default as IconVibeCodingBirdDefault, } from "./IconVibeCodingBird";
1565
1566
  export { IconVibeCodingStar, default as IconVibeCodingStarDefault, } from "./IconVibeCodingStar";
1566
1567
  export { IconVideo, default as IconVideoDefault } from "./IconVideo";