@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.205 → 1.1.207
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/IconLightningBolt/index.d.ts +4 -0
- package/IconLightningBolt/index.js +2 -0
- package/IconLightningBolt/index.js.map +1 -0
- package/IconLightningBolt/index.mjs +2 -0
- package/IconLightningBolt/index.mjs.map +1 -0
- package/IconLightningBoltOff/index.d.ts +4 -0
- package/IconLightningBoltOff/index.js +2 -0
- package/IconLightningBoltOff/index.js.map +1 -0
- package/IconLightningBoltOff/index.mjs +2 -0
- package/IconLightningBoltOff/index.mjs.map +1 -0
- package/IconRobot2/index.d.ts +4 -0
- package/IconRobot2/index.js +2 -0
- package/IconRobot2/index.js.map +1 -0
- package/IconRobot2/index.mjs +2 -0
- package/IconRobot2/index.mjs.map +1 -0
- package/IconVideo2/index.d.ts +4 -0
- package/IconVideo2/index.js +2 -0
- package/IconVideo2/index.js.map +1 -0
- package/IconVideo2/index.mjs +2 -0
- package/IconVideo2/index.mjs.map +1 -0
- package/IconVideo2Off/index.d.ts +4 -0
- package/IconVideo2Off/index.js +2 -0
- package/IconVideo2Off/index.js.map +1 -0
- package/IconVideo2Off/index.mjs +2 -0
- package/IconVideo2Off/index.mjs.map +1 -0
- package/README.md +5 -0
- package/filtered-icons.json +70 -0
- package/icons/index.d.ts +5 -0
- package/icons-index.json +15 -5
- package/index.d.ts +5 -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/skills/central-icons-react-native/SKILL.md +6 -1
- package/tsx-icons.json +35 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(o,r)=>{for(var t in r)n(o,t,{get:r[t],enumerable:!0})},a=(o,r,t,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let e of u(r))!x.call(o,e)&&e!==t&&n(o,e,{get:()=>r[e],enumerable:!(C=g(r,e))||C.enumerable});return o};var s=(o,r,t)=>(t=o!=null?B(I(o)):{},a(r||!o||!o.__esModule?n(t,"default",{value:o,enumerable:!0}):t,o)),h=o=>a(n({},"__esModule",{value:!0}),o);var d={};P(d,{IconLightningBolt:()=>f,default:()=>L});module.exports=h(d);var p=s(require("react"));var m=s(require("react")),l=require("react-native-svg"),i=({children:o,size:r=24,...t})=>m.default.createElement(l.Svg,{...t,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var c=require("react-native-svg"),f=o=>p.default.createElement(i,{...o},p.default.createElement(c.Path,{d:"M6.12946 12.4188L12.292 3.79125C12.9183 2.91443 14.2976 3.51201 14.0863 4.5686L13.1196 9.40194C13.0577 9.71134 13.2944 10 13.6099 10H17.0568C17.8702 10 18.3433 10.9194 17.8705 11.5812L11.708 20.2088C11.0817 21.0856 9.7024 20.488 9.91372 19.4314L10.8804 14.5981C10.9423 14.2887 10.7056 14 10.3901 14H6.94319C6.12982 14 5.65669 13.0806 6.12946 12.4188Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),L=f;0&&(module.exports={IconLightningBolt});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightningBolt/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 IconLightningBolt: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.12946 12.4188L12.292 3.79125C12.9183 2.91443 14.2976 3.51201 14.0863 4.5686L13.1196 9.40194C13.0577 9.71134 13.2944 10 13.6099 10H17.0568C17.8702 10 18.3433 10.9194 17.8705 11.5812L11.708 20.2088C11.0817 21.0856 9.7024 20.488 9.91372 19.4314L10.8804 14.5981C10.9423 14.2887 10.7056 14 10.3901 14H6.94319C6.12982 14 5.65669 13.0806 6.12946 12.4188Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightningBolt;\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,uBAAAE,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,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,iWACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconLightningBolt_exports","__export","IconLightningBolt","IconLightningBolt_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconLightningBolt","props","React","CentralIconBase","IconLightningBolt_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as C}from"react-native-svg";var t=({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 a}from"react-native-svg";var s=r=>e.createElement(t,{...r},e.createElement(a,{d:"M6.12946 12.4188L12.292 3.79125C12.9183 2.91443 14.2976 3.51201 14.0863 4.5686L13.1196 9.40194C13.0577 9.71134 13.2944 10 13.6099 10H17.0568C17.8702 10 18.3433 10.9194 17.8705 11.5812L11.708 20.2088C11.0817 21.0856 9.7024 20.488 9.91372 19.4314L10.8804 14.5981C10.9423 14.2887 10.7056 14 10.3901 14H6.94319C6.12982 14 5.65669 13.0806 6.12946 12.4188Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),x=s;export{s as IconLightningBolt,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightningBolt/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 IconLightningBolt: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M6.12946 12.4188L12.292 3.79125C12.9183 2.91443 14.2976 3.51201 14.0863 4.5686L13.1196 9.40194C13.0577 9.71134 13.2944 10 13.6099 10H17.0568C17.8702 10 18.3433 10.9194 17.8705 11.5812L11.708 20.2088C11.0817 21.0856 9.7024 20.488 9.91372 19.4314L10.8804 14.5981C10.9423 14.2887 10.7056 14 10.3901 14H6.94319C6.12982 14 5.65669 13.0806 6.12946 12.4188Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightningBolt;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,iWACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLightningBolt","props","React","CentralIconBase","IconLightningBolt_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var I=(o,r)=>{for(var e in r)n(o,e,{get:r[e],enumerable:!0})},C=(o,r,e,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let t of d(r))!g.call(o,t)&&t!==e&&n(o,t,{get:()=>r[t],enumerable:!(l=u(r,t))||l.enumerable});return o};var a=(o,r,e)=>(e=o!=null?c(B(o)):{},C(r||!o||!o.__esModule?n(e,"default",{value:o,enumerable:!0}):e,o)),v=o=>C(n({},"__esModule",{value:!0}),o);var P={};I(P,{IconLightningBoltOff:()=>m,default:()=>x});module.exports=v(P);var p=a(require("react"));var s=a(require("react")),f=require("react-native-svg"),i=({children:o,size:r=24,...e})=>s.default.createElement(f.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 L=require("react-native-svg"),m=o=>p.default.createElement(i,{...o},p.default.createElement(L.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M8.28591 11.116L6.94118 12.9998H10.1697L11.8718 14.702C11.8677 14.7324 11.8652 14.7632 11.8591 14.7938L10.8924 19.6278L13.3523 16.1824L14.7859 17.616L12.5193 20.7899C11.2667 22.5433 8.50879 21.3483 8.93142 19.2352L9.7781 14.9998H6.94118C5.31459 14.9998 4.36818 13.1614 5.31325 11.8377L6.85231 9.68245L8.28591 11.116ZM11.4763 3.20979C12.729 1.45676 15.4866 2.65156 15.0642 4.76448L14.2175 8.99983H17.0545C18.6808 9 19.6272 10.8383 18.6824 12.1619L17.1424 14.3162L15.7088 12.8826L17.0545 10.9998H13.8259L12.1228 9.2967C12.127 9.26665 12.1305 9.23609 12.1365 9.20588L13.1033 4.3719L10.6424 7.81623L9.20876 6.38264L11.4763 3.20979Z",fill:"currentColor"}),p.default.createElement(L.Path,{d:"M5 5L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),x=m;0&&(module.exports={IconLightningBoltOff});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightningBoltOff/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 IconLightningBoltOff: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.28591 11.116L6.94118 12.9998H10.1697L11.8718 14.702C11.8677 14.7324 11.8652 14.7632 11.8591 14.7938L10.8924 19.6278L13.3523 16.1824L14.7859 17.616L12.5193 20.7899C11.2667 22.5433 8.50879 21.3483 8.93142 19.2352L9.7781 14.9998H6.94118C5.31459 14.9998 4.36818 13.1614 5.31325 11.8377L6.85231 9.68245L8.28591 11.116ZM11.4763 3.20979C12.729 1.45676 15.4866 2.65156 15.0642 4.76448L14.2175 8.99983H17.0545C18.6808 9 19.6272 10.8383 18.6824 12.1619L17.1424 14.3162L15.7088 12.8826L17.0545 10.9998H13.8259L12.1228 9.2967C12.127 9.26665 12.1305 9.23609 12.1365 9.20588L13.1033 4.3719L10.6424 7.81623L9.20876 6.38264L11.4763 3.20979Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 5L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightningBoltOff;\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,0BAAAE,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,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,snBACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGE,EAAQJ","names":["IconLightningBoltOff_exports","__export","IconLightningBoltOff","IconLightningBoltOff_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconLightningBoltOff","props","React","CentralIconBase","IconLightningBoltOff_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import L from"react";import{Svg as l}from"react-native-svg";var t=({children:r,size:o=24,...p})=>L.createElement(l,{...p,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 n}from"react-native-svg";var C=r=>e.createElement(t,{...r},e.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M8.28591 11.116L6.94118 12.9998H10.1697L11.8718 14.702C11.8677 14.7324 11.8652 14.7632 11.8591 14.7938L10.8924 19.6278L13.3523 16.1824L14.7859 17.616L12.5193 20.7899C11.2667 22.5433 8.50879 21.3483 8.93142 19.2352L9.7781 14.9998H6.94118C5.31459 14.9998 4.36818 13.1614 5.31325 11.8377L6.85231 9.68245L8.28591 11.116ZM11.4763 3.20979C12.729 1.45676 15.4866 2.65156 15.0642 4.76448L14.2175 8.99983H17.0545C18.6808 9 19.6272 10.8383 18.6824 12.1619L17.1424 14.3162L15.7088 12.8826L17.0545 10.9998H13.8259L12.1228 9.2967C12.127 9.26665 12.1305 9.23609 12.1365 9.20588L13.1033 4.3719L10.6424 7.81623L9.20876 6.38264L11.4763 3.20979Z",fill:"currentColor"}),e.createElement(n,{d:"M5 5L19 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})),g=C;export{C as IconLightningBoltOff,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightningBoltOff/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 IconLightningBoltOff: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8.28591 11.116L6.94118 12.9998H10.1697L11.8718 14.702C11.8677 14.7324 11.8652 14.7632 11.8591 14.7938L10.8924 19.6278L13.3523 16.1824L14.7859 17.616L12.5193 20.7899C11.2667 22.5433 8.50879 21.3483 8.93142 19.2352L9.7781 14.9998H6.94118C5.31459 14.9998 4.36818 13.1614 5.31325 11.8377L6.85231 9.68245L8.28591 11.116ZM11.4763 3.20979C12.729 1.45676 15.4866 2.65156 15.0642 4.76448L14.2175 8.99983H17.0545C18.6808 9 19.6272 10.8383 18.6824 12.1619L17.1424 14.3162L15.7088 12.8826L17.0545 10.9998H13.8259L12.1228 9.2967C12.127 9.26665 12.1305 9.23609 12.1365 9.20588L13.1033 4.3719L10.6424 7.81623L9.20876 6.38264L11.4763 3.20979Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M5 5L19 19\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightningBoltOff;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,snBACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLightningBoltOff","props","React","CentralIconBase","IconLightningBoltOff_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var h=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,V=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},d=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of h(o))!V.call(r,C)&&C!==t&&s(r,C,{get:()=>o[C],enumerable:!(p=m(o,C))||p.enumerable});return r};var i=(r,o,t)=>(t=r!=null?c(f(r)):{},d(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>d(s({},"__esModule",{value:!0}),r);var P={};B(P,{IconRobot2:()=>a,default:()=>x});module.exports=I(P);var e=i(require("react"));var k=i(require("react")),u=require("react-native-svg"),l=({children:r,size:o=24,...t})=>k.default.createElement(u.Svg,{...t,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=>e.default.createElement(l,{...r},e.default.createElement(n.Path,{d:"M3 11.2537C3 9.20129 3 8.17511 3.41821 7.33388C3.77184 6.62256 4.40311 5.97017 5.1024 5.59332C5.9294 5.14764 6.89397 5.11588 8.8231 5.05235C10.9424 4.98255 13.0576 4.98255 15.1769 5.05234C17.106 5.11588 18.0706 5.14764 18.8976 5.59332C19.5969 5.97017 20.2282 6.62256 20.5818 7.33388C21 8.17511 21 9.20129 21 11.2537V12.7463C21 14.7987 21 15.8249 20.5818 16.6661C20.2282 17.3774 19.5969 18.0298 18.8976 18.4067C18.0706 18.8524 17.106 18.8841 15.1769 18.9477C13.0576 19.0174 10.9424 19.0174 8.8231 18.9477C6.89397 18.8841 5.9294 18.8524 5.1024 18.4067C4.40311 18.0298 3.77184 17.3774 3.41821 16.6661C3 15.8249 3 14.7987 3 12.7463V11.2537Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M22 10V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M2 10V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.default.createElement(n.Path,{d:"M12 5V3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(n.Path,{d:"M9.5 12V10.5C9.5 10.3619 9.38807 10.25 9.25 10.25C9.11193 10.25 9 10.3619 9 10.5V12C9 12.1381 9.11193 12.25 9.25 12.25C9.38807 12.25 9.5 12.1381 9.5 12Z",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M15 12V10.5C15 10.3619 14.8881 10.25 14.75 10.25C14.6119 10.25 14.5 10.3619 14.5 10.5V12C14.5 12.1381 14.6119 12.25 14.75 12.25C14.8881 12.25 15 12.1381 15 12Z",stroke:"currentColor",strokeWidth:"2"})),x=a;0&&(module.exports={IconRobot2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRobot2/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 IconRobot2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 11.2537C3 9.20129 3 8.17511 3.41821 7.33388C3.77184 6.62256 4.40311 5.97017 5.1024 5.59332C5.9294 5.14764 6.89397 5.11588 8.8231 5.05235C10.9424 4.98255 13.0576 4.98255 15.1769 5.05234C17.106 5.11588 18.0706 5.14764 18.8976 5.59332C19.5969 5.97017 20.2282 6.62256 20.5818 7.33388C21 8.17511 21 9.20129 21 11.2537V12.7463C21 14.7987 21 15.8249 20.5818 16.6661C20.2282 17.3774 19.5969 18.0298 18.8976 18.4067C18.0706 18.8524 17.106 18.8841 15.1769 18.9477C13.0576 19.0174 10.9424 19.0174 8.8231 18.9477C6.89397 18.8841 5.9294 18.8524 5.1024 18.4067C4.40311 18.0298 3.77184 17.3774 3.41821 16.6661C3 15.8249 3 14.7987 3 12.7463V11.2537Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M22 10V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 5V3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9.5 12V10.5C9.5 10.3619 9.38807 10.25 9.25 10.25C9.11193 10.25 9 10.3619 9 10.5V12C9 12.1381 9.11193 12.25 9.25 12.25C9.38807 12.25 9.5 12.1381 9.5 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M15 12V10.5C15 10.3619 14.8881 10.25 14.75 10.25C14.6119 10.25 14.5 10.3619 14.5 10.5V12C14.5 12.1381 14.6119 12.25 14.75 12.25C14.8881 12.25 15 12.1381 15 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRobot2;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,+nBACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,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,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,2JACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kKACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconRobot2_exports","__export","IconRobot2","IconRobot2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconRobot2","props","React","CentralIconBase","IconRobot2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import s from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:o=24,...C})=>s.createElement(p,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var d=e=>r.createElement(n,{...e},r.createElement(t,{d:"M3 11.2537C3 9.20129 3 8.17511 3.41821 7.33388C3.77184 6.62256 4.40311 5.97017 5.1024 5.59332C5.9294 5.14764 6.89397 5.11588 8.8231 5.05235C10.9424 4.98255 13.0576 4.98255 15.1769 5.05234C17.106 5.11588 18.0706 5.14764 18.8976 5.59332C19.5969 5.97017 20.2282 6.62256 20.5818 7.33388C21 8.17511 21 9.20129 21 11.2537V12.7463C21 14.7987 21 15.8249 20.5818 16.6661C20.2282 17.3774 19.5969 18.0298 18.8976 18.4067C18.0706 18.8524 17.106 18.8841 15.1769 18.9477C13.0576 19.0174 10.9424 19.0174 8.8231 18.9477C6.89397 18.8841 5.9294 18.8524 5.1024 18.4067C4.40311 18.0298 3.77184 17.3774 3.41821 16.6661C3 15.8249 3 14.7987 3 12.7463V11.2537Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M22 10V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M2 10V13",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(t,{d:"M12 5V3",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),r.createElement(t,{d:"M9.5 12V10.5C9.5 10.3619 9.38807 10.25 9.25 10.25C9.11193 10.25 9 10.3619 9 10.5V12C9 12.1381 9.11193 12.25 9.25 12.25C9.38807 12.25 9.5 12.1381 9.5 12Z",stroke:"currentColor",strokeWidth:"2"}),r.createElement(t,{d:"M15 12V10.5C15 10.3619 14.8881 10.25 14.75 10.25C14.6119 10.25 14.5 10.3619 14.5 10.5V12C14.5 12.1381 14.6119 12.25 14.75 12.25C14.8881 12.25 15 12.1381 15 12Z",stroke:"currentColor",strokeWidth:"2"})),V=d;export{d as IconRobot2,V as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconRobot2/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 IconRobot2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 11.2537C3 9.20129 3 8.17511 3.41821 7.33388C3.77184 6.62256 4.40311 5.97017 5.1024 5.59332C5.9294 5.14764 6.89397 5.11588 8.8231 5.05235C10.9424 4.98255 13.0576 4.98255 15.1769 5.05234C17.106 5.11588 18.0706 5.14764 18.8976 5.59332C19.5969 5.97017 20.2282 6.62256 20.5818 7.33388C21 8.17511 21 9.20129 21 11.2537V12.7463C21 14.7987 21 15.8249 20.5818 16.6661C20.2282 17.3774 19.5969 18.0298 18.8976 18.4067C18.0706 18.8524 17.106 18.8841 15.1769 18.9477C13.0576 19.0174 10.9424 19.0174 8.8231 18.9477C6.89397 18.8841 5.9294 18.8524 5.1024 18.4067C4.40311 18.0298 3.77184 17.3774 3.41821 16.6661C3 15.8249 3 14.7987 3 12.7463V11.2537Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M22 10V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10V13\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M12 5V3\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M9.5 12V10.5C9.5 10.3619 9.38807 10.25 9.25 10.25C9.11193 10.25 9 10.3619 9 10.5V12C9 12.1381 9.11193 12.25 9.25 12.25C9.38807 12.25 9.5 12.1381 9.5 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M15 12V10.5C15 10.3619 14.8881 10.25 14.75 10.25C14.6119 10.25 14.5 10.3619 14.5 10.5V12C14.5 12.1381 14.6119 12.25 14.75 12.25C14.8881 12.25 15 12.1381 15 12Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRobot2;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,+nBACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,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,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,2JACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kKACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconRobot2","props","React","CentralIconBase","IconRobot2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!x.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(s=B(o,e))||s.enumerable});return r};var m=(r,o,t)=>(t=r!=null?u(d(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconVideo2:()=>i,default:()=>h});module.exports=g(v);var p=m(require("react"));var l=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>l.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M3 7.5C3 6.39543 3.89543 5.5 5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V16.5C17 17.6046 16.1046 18.5 15 18.5H5C3.89543 18.5 3 17.6046 3 16.5V7.5Z",stroke:"currentColor",strokeWidth:"2"}),p.default.createElement(C.Path,{d:"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15",stroke:"currentColor",strokeWidth:"2"})),h=i;0&&(module.exports={IconVideo2});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVideo2/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 IconVideo2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 7.5C3 6.39543 3.89543 5.5 5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V16.5C17 17.6046 16.1046 18.5 15 18.5H5C3.89543 18.5 3 17.6046 3 16.5V7.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVideo2;\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,gBAAAE,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,EAAwCC,GAEjD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,gJACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGE,EAAQJ","names":["IconVideo2_exports","__export","IconVideo2","IconVideo2_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVideo2","props","React","CentralIconBase","IconVideo2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import t from"react";import C from"react";import{Svg as s}from"react-native-svg";var e=({children:o,size:r=24,...p})=>C.createElement(s,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(n,{d:"M3 7.5C3 6.39543 3.89543 5.5 5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V16.5C17 17.6046 16.1046 18.5 15 18.5H5C3.89543 18.5 3 17.6046 3 16.5V7.5Z",stroke:"currentColor",strokeWidth:"2"}),t.createElement(n,{d:"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15",stroke:"currentColor",strokeWidth:"2"})),x=a;export{a as IconVideo2,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVideo2/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 IconVideo2: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 7.5C3 6.39543 3.89543 5.5 5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V16.5C17 17.6046 16.1046 18.5 15 18.5H5C3.89543 18.5 3 17.6046 3 16.5V7.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVideo2;\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,EAAwCC,GAEjDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,gJACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0HACF,OAAO,eACP,YAAY,IACd,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVideo2","props","React","CentralIconBase","IconVideo2_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var p=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var B=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!I.call(r,e)&&e!==t&&p(r,e,{get:()=>o[e],enumerable:!(C=f(o,e))||C.enumerable});return r};var i=(r,o,t)=>(t=r!=null?u(B(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),x=r=>a(p({},"__esModule",{value:!0}),r);var g={};h(g,{IconVideo2Off:()=>d,default:()=>P});module.exports=x(g);var n=i(require("react"));var l=i(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...t})=>l.default.createElement(m.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var s=require("react-native-svg"),d=r=>n.default.createElement(c,{...r},n.default.createElement(s.Path,{d:"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15",stroke:"currentColor",strokeWidth:"2"}),n.default.createElement(s.Path,{d:"M2.80078 3L17.2008 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),n.default.createElement(s.Path,{d:"M3 9.5V16.5C3 17.6046 3.89543 18.5 5 18.5H10.5M9.5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),P=d;0&&(module.exports={IconVideo2Off});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVideo2Off/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 IconVideo2Off: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M2.80078 3L17.2008 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 9.5V16.5C3 17.6046 3.89543 18.5 5 18.5H10.5M9.5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVideo2Off;\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,mBAAAE,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,EAA2CC,GAEpD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,0HACF,OAAO,eACP,YAAY,IACd,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconVideo2Off_exports","__export","IconVideo2Off","IconVideo2Off_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconVideo2Off","props","React","CentralIconBase","IconVideo2Off_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:t,size:r=24,...p})=>s.createElement(C,{...p,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 a=t=>o.createElement(n,{...t},o.createElement(e,{d:"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15",stroke:"currentColor",strokeWidth:"2"}),o.createElement(e,{d:"M2.80078 3L17.2008 21",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(e,{d:"M3 9.5V16.5C3 17.6046 3.89543 18.5 5 18.5H10.5M9.5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),I=a;export{a as IconVideo2Off,I as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconVideo2Off/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 IconVideo2Off: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n />\n <Path\n d=\"M2.80078 3L17.2008 21\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M3 9.5V16.5C3 17.6046 3.89543 18.5 5 18.5H10.5M9.5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconVideo2Off;\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,EAA2CC,GAEpDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,0HACF,OAAO,eACP,YAAY,IACd,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconVideo2Off","props","React","CentralIconBase","IconVideo2Off_default"]}
|
package/README.md
CHANGED
|
@@ -199,6 +199,7 @@ Below is a complete list of available icons:
|
|
|
199
199
|
- IconPromptTextToVideo
|
|
200
200
|
- IconReceiptionBellSparkle
|
|
201
201
|
- IconRobot
|
|
202
|
+
- IconRobot2
|
|
202
203
|
- IconScanTextSparkle
|
|
203
204
|
- IconScriptAi
|
|
204
205
|
- IconSearchIntelligence
|
|
@@ -1490,6 +1491,8 @@ Below is a complete list of available icons:
|
|
|
1490
1491
|
- IconSplit
|
|
1491
1492
|
- IconUnblur
|
|
1492
1493
|
- IconVideo
|
|
1494
|
+
- IconVideo2
|
|
1495
|
+
- IconVideo2Off
|
|
1493
1496
|
- IconVideoClip
|
|
1494
1497
|
- IconVideoOff
|
|
1495
1498
|
- IconVideoOn
|
|
@@ -2205,6 +2208,8 @@ Below is a complete list of available icons:
|
|
|
2205
2208
|
- IconDrop
|
|
2206
2209
|
- IconFullMoon
|
|
2207
2210
|
- IconLightning
|
|
2211
|
+
- IconLightningBolt
|
|
2212
|
+
- IconLightningBoltOff
|
|
2208
2213
|
- IconMoon
|
|
2209
2214
|
- IconMoonStar
|
|
2210
2215
|
- IconRainy
|
package/filtered-icons.json
CHANGED
|
@@ -15148,6 +15148,34 @@
|
|
|
15148
15148
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
15149
15149
|
"componentName": "IconLightning"
|
|
15150
15150
|
},
|
|
15151
|
+
{
|
|
15152
|
+
"category": "Weather",
|
|
15153
|
+
"svg": "<path d=\"M6.12946 12.4188L12.292 3.79125C12.9183 2.91443 14.2976 3.51201 14.0863 4.5686L13.1196 9.40194C13.0577 9.71134 13.2944 10 13.6099 10H17.0568C17.8702 10 18.3433 10.9194 17.8705 11.5812L11.708 20.2088C11.0817 21.0856 9.7024 20.488 9.91372 19.4314L10.8804 14.5981C10.9423 14.2887 10.7056 14 10.3901 14H6.94319C6.12982 14 5.65669 13.0806 6.12946 12.4188Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
15154
|
+
"iconName": "lightning-bolt, speed, thunder, flash, high woltage",
|
|
15155
|
+
"variant": {
|
|
15156
|
+
"join": "round",
|
|
15157
|
+
"filled": "off",
|
|
15158
|
+
"radius": "2",
|
|
15159
|
+
"stroke": "2"
|
|
15160
|
+
},
|
|
15161
|
+
"createdAt": "2026-04-23T10:02:11.767874+00:00",
|
|
15162
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
15163
|
+
"componentName": "IconLightningBolt"
|
|
15164
|
+
},
|
|
15165
|
+
{
|
|
15166
|
+
"category": "Weather",
|
|
15167
|
+
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.28591 11.116L6.94118 12.9998H10.1697L11.8718 14.702C11.8677 14.7324 11.8652 14.7632 11.8591 14.7938L10.8924 19.6278L13.3523 16.1824L14.7859 17.616L12.5193 20.7899C11.2667 22.5433 8.50879 21.3483 8.93142 19.2352L9.7781 14.9998H6.94118C5.31459 14.9998 4.36818 13.1614 5.31325 11.8377L6.85231 9.68245L8.28591 11.116ZM11.4763 3.20979C12.729 1.45676 15.4866 2.65156 15.0642 4.76448L14.2175 8.99983H17.0545C18.6808 9 19.6272 10.8383 18.6824 12.1619L17.1424 14.3162L15.7088 12.8826L17.0545 10.9998H13.8259L12.1228 9.2967C12.127 9.26665 12.1305 9.23609 12.1365 9.20588L13.1033 4.3719L10.6424 7.81623L9.20876 6.38264L11.4763 3.20979Z\" fill=\"currentColor\"/><path d=\"M5 5L19 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/>",
|
|
15168
|
+
"iconName": "lightning-bolt-off, speed, thunder, flash, high woltage",
|
|
15169
|
+
"variant": {
|
|
15170
|
+
"join": "round",
|
|
15171
|
+
"filled": "off",
|
|
15172
|
+
"radius": "2",
|
|
15173
|
+
"stroke": "2"
|
|
15174
|
+
},
|
|
15175
|
+
"createdAt": "2026-04-23T10:02:11.767874+00:00",
|
|
15176
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
15177
|
+
"componentName": "IconLightningBoltOff"
|
|
15178
|
+
},
|
|
15151
15179
|
{
|
|
15152
15180
|
"category": "Things",
|
|
15153
15181
|
"svg": "<path d=\"M12 13L9 10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.29147 19C2.12534 15.4663 2.2402 10.0319 5.63604 6.63604C9.15076 3.12132 14.8492 3.12132 18.364 6.63604C21.7598 10.0319 21.8747 15.4663 18.7085 19\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -20762,6 +20790,20 @@
|
|
|
20762
20790
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
20763
20791
|
"componentName": "IconRobot"
|
|
20764
20792
|
},
|
|
20793
|
+
{
|
|
20794
|
+
"category": "AI & Magic",
|
|
20795
|
+
"svg": "<path d=\"M3 11.2537C3 9.20129 3 8.17511 3.41821 7.33388C3.77184 6.62256 4.40311 5.97017 5.1024 5.59332C5.9294 5.14764 6.89397 5.11588 8.8231 5.05235C10.9424 4.98255 13.0576 4.98255 15.1769 5.05234C17.106 5.11588 18.0706 5.14764 18.8976 5.59332C19.5969 5.97017 20.2282 6.62256 20.5818 7.33388C21 8.17511 21 9.20129 21 11.2537V12.7463C21 14.7987 21 15.8249 20.5818 16.6661C20.2282 17.3774 19.5969 18.0298 18.8976 18.4067C18.0706 18.8524 17.106 18.8841 15.1769 18.9477C13.0576 19.0174 10.9424 19.0174 8.8231 18.9477C6.89397 18.8841 5.9294 18.8524 5.1024 18.4067C4.40311 18.0298 3.77184 17.3774 3.41821 16.6661C3 15.8249 3 14.7987 3 12.7463V11.2537Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M22 10V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 10V13\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 5V3\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M9.5 12V10.5C9.5 10.3619 9.38807 10.25 9.25 10.25C9.11193 10.25 9 10.3619 9 10.5V12C9 12.1381 9.11193 12.25 9.25 12.25C9.38807 12.25 9.5 12.1381 9.5 12Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M15 12V10.5C15 10.3619 14.8881 10.25 14.75 10.25C14.6119 10.25 14.5 10.3619 14.5 10.5V12C14.5 12.1381 14.6119 12.25 14.75 12.25C14.8881 12.25 15 12.1381 15 12Z\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
20796
|
+
"iconName": "robot-2, agent, scout",
|
|
20797
|
+
"variant": {
|
|
20798
|
+
"join": "round",
|
|
20799
|
+
"filled": "off",
|
|
20800
|
+
"radius": "2",
|
|
20801
|
+
"stroke": "2"
|
|
20802
|
+
},
|
|
20803
|
+
"createdAt": "2026-04-23T11:02:43.234929+00:00",
|
|
20804
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
20805
|
+
"componentName": "IconRobot2"
|
|
20806
|
+
},
|
|
20765
20807
|
{
|
|
20766
20808
|
"category": "Vehicles & Aircrafts",
|
|
20767
20809
|
"svg": "<path d=\"M3 21H5C6.10457 21 7 20.1046 7 19C7 17.8954 6.10457 17 5 17C3.89543 17 3 17.8954 3 19V21Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M7.00098 13H4.76717C3.98987 13 3.50976 12.152 3.90968 11.4855L5.41837 8.97101C5.77982 8.3686 6.43083 8 7.13336 8H11.251C13.7671 5.25513 16.4925 3.3474 20.0017 3.04278C20.5519 2.99502 21.006 3.44906 20.9582 3.99927C20.6536 7.50845 18.7459 10.2339 16.001 12.75V16.8676C16.001 17.5701 15.6324 18.2212 15.03 18.5826L12.5155 20.0913C11.849 20.4912 11.001 20.0111 11.001 19.2338V17L7.00098 13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M7 13L11.25 8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M16 12.75L11 17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
@@ -26264,6 +26306,34 @@
|
|
|
26264
26306
|
"packageName": "round-outlined-radius-2-stroke-2",
|
|
26265
26307
|
"componentName": "IconVideo"
|
|
26266
26308
|
},
|
|
26309
|
+
{
|
|
26310
|
+
"category": "Photography & Video",
|
|
26311
|
+
"svg": "<path d=\"M3 7.5C3 6.39543 3.89543 5.5 5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V16.5C17 17.6046 16.1046 18.5 15 18.5H5C3.89543 18.5 3 17.6046 3 16.5V7.5Z\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\" stroke=\"currentColor\" stroke-width=\"2\"/>",
|
|
26312
|
+
"iconName": "video-2, camera, movie, play",
|
|
26313
|
+
"variant": {
|
|
26314
|
+
"join": "round",
|
|
26315
|
+
"filled": "off",
|
|
26316
|
+
"radius": "2",
|
|
26317
|
+
"stroke": "2"
|
|
26318
|
+
},
|
|
26319
|
+
"createdAt": "2026-04-23T11:02:43.234929+00:00",
|
|
26320
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
26321
|
+
"componentName": "IconVideo2"
|
|
26322
|
+
},
|
|
26323
|
+
{
|
|
26324
|
+
"category": "Photography & Video",
|
|
26325
|
+
"svg": "<path d=\"M17 9L20.0939 7.62495C20.7551 7.33105 21.5 7.8151 21.5 8.53876V15.4612C21.5 16.1849 20.7551 16.669 20.0939 16.375L17 15\" stroke=\"currentColor\" stroke-width=\"2\"/><path d=\"M2.80078 3L17.2008 21\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3 9.5V16.5C3 17.6046 3.89543 18.5 5 18.5H10.5M9.5 5.5H15C16.1046 5.5 17 6.39543 17 7.5V15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
26326
|
+
"iconName": "video-2-off, cam-off, movie, play",
|
|
26327
|
+
"variant": {
|
|
26328
|
+
"join": "round",
|
|
26329
|
+
"filled": "off",
|
|
26330
|
+
"radius": "2",
|
|
26331
|
+
"stroke": "2"
|
|
26332
|
+
},
|
|
26333
|
+
"createdAt": "2026-04-23T11:02:43.234929+00:00",
|
|
26334
|
+
"packageName": "round-outlined-radius-2-stroke-2",
|
|
26335
|
+
"componentName": "IconVideo2Off"
|
|
26336
|
+
},
|
|
26267
26337
|
{
|
|
26268
26338
|
"category": "Photography & Video",
|
|
26269
26339
|
"svg": "<path d=\"M4 12H8M4 12V8M4 12V16M8 12H16M8 12V16M8 12V8M16 12H20M16 12V16.4444M16 12V8M20 12V8M20 12V16.4444M16 20H18C19.1046 20 20 19.1046 20 18V16.4444M16 20V16.4444M16 20H8M16 4H18C19.1046 4 20 4.89543 20 6V8M16 4V8M16 4H8M16 8H20M16 16.4444H20M8 20H6C4.89543 20 4 19.1046 4 18V16M8 20V16M8 4H6C4.89543 4 4 4.89543 4 6V8M8 4V8M4 8H8M4 16H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -1081,6 +1081,8 @@ export type CentralIconName =
|
|
|
1081
1081
|
| "IconLightBulbSimple"
|
|
1082
1082
|
| "IconLightbulbSparkle"
|
|
1083
1083
|
| "IconLightning"
|
|
1084
|
+
| "IconLightningBolt"
|
|
1085
|
+
| "IconLightningBoltOff"
|
|
1084
1086
|
| "IconLimit"
|
|
1085
1087
|
| "IconLinear"
|
|
1086
1088
|
| "IconLinebreak"
|
|
@@ -1482,6 +1484,7 @@ export type CentralIconName =
|
|
|
1482
1484
|
| "IconRive"
|
|
1483
1485
|
| "IconRobinhood"
|
|
1484
1486
|
| "IconRobot"
|
|
1487
|
+
| "IconRobot2"
|
|
1485
1488
|
| "IconRocket"
|
|
1486
1489
|
| "IconRockingHorse"
|
|
1487
1490
|
| "IconRoller"
|
|
@@ -1875,6 +1878,8 @@ export type CentralIconName =
|
|
|
1875
1878
|
| "IconVibeCodingBird"
|
|
1876
1879
|
| "IconVibeCodingStar"
|
|
1877
1880
|
| "IconVideo"
|
|
1881
|
+
| "IconVideo2"
|
|
1882
|
+
| "IconVideo2Off"
|
|
1878
1883
|
| "IconVideoClip"
|
|
1879
1884
|
| "IconVideoOff"
|
|
1880
1885
|
| "IconVideoOn"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.207",
|
|
4
4
|
"style": "round-outlined-radius-2-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 1967,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 80,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiSlop",
|
|
20
20
|
"IconAiTokens",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"IconPromptTextToVideo",
|
|
69
69
|
"IconReceiptionBellSparkle",
|
|
70
70
|
"IconRobot",
|
|
71
|
+
"IconRobot2",
|
|
71
72
|
"IconScanTextSparkle",
|
|
72
73
|
"IconScriptAi",
|
|
73
74
|
"IconSearchIntelligence",
|
|
@@ -1332,7 +1333,7 @@
|
|
|
1332
1333
|
]
|
|
1333
1334
|
},
|
|
1334
1335
|
"Photography & Video": {
|
|
1335
|
-
"count":
|
|
1336
|
+
"count": 87,
|
|
1336
1337
|
"icons": [
|
|
1337
1338
|
"Icon4k",
|
|
1338
1339
|
"IconAddImage",
|
|
@@ -1409,6 +1410,8 @@
|
|
|
1409
1410
|
"IconSplit",
|
|
1410
1411
|
"IconUnblur",
|
|
1411
1412
|
"IconVideo",
|
|
1413
|
+
"IconVideo2",
|
|
1414
|
+
"IconVideo2Off",
|
|
1412
1415
|
"IconVideoClip",
|
|
1413
1416
|
"IconVideoOff",
|
|
1414
1417
|
"IconVideoOn",
|
|
@@ -2136,7 +2139,7 @@
|
|
|
2136
2139
|
]
|
|
2137
2140
|
},
|
|
2138
2141
|
"Weather": {
|
|
2139
|
-
"count":
|
|
2142
|
+
"count": 24,
|
|
2140
2143
|
"icons": [
|
|
2141
2144
|
"IconCloudSnow",
|
|
2142
2145
|
"IconCloudWeather",
|
|
@@ -2145,6 +2148,8 @@
|
|
|
2145
2148
|
"IconDrop",
|
|
2146
2149
|
"IconFullMoon",
|
|
2147
2150
|
"IconLightning",
|
|
2151
|
+
"IconLightningBolt",
|
|
2152
|
+
"IconLightningBoltOff",
|
|
2148
2153
|
"IconMoon",
|
|
2149
2154
|
"IconMoonStar",
|
|
2150
2155
|
"IconRainy",
|
|
@@ -3246,6 +3251,8 @@
|
|
|
3246
3251
|
"IconLightBulbSimple": "light-bulb-simple, idea",
|
|
3247
3252
|
"IconLightbulbSparkle": "lightbulb-sparkle, idea, reasoning, think",
|
|
3248
3253
|
"IconLightning": "lightning, zap, flash, thunder",
|
|
3254
|
+
"IconLightningBolt": "lightning-bolt, speed, thunder, flash, high woltage",
|
|
3255
|
+
"IconLightningBoltOff": "lightning-bolt-off, speed, thunder, flash, high woltage",
|
|
3249
3256
|
"IconLimit": "limit",
|
|
3250
3257
|
"IconLinear": "linear",
|
|
3251
3258
|
"IconLinebreak": "linebreak, next-line",
|
|
@@ -3647,6 +3654,7 @@
|
|
|
3647
3654
|
"IconRive": "rive",
|
|
3648
3655
|
"IconRobinhood": "robinhood",
|
|
3649
3656
|
"IconRobot": "robot",
|
|
3657
|
+
"IconRobot2": "robot-2, agent, scout",
|
|
3650
3658
|
"IconRocket": "rocket, startup, launch",
|
|
3651
3659
|
"IconRockingHorse": "rocking-horse, child, kids, toy",
|
|
3652
3660
|
"IconRoller": "roller, scooter",
|
|
@@ -4040,6 +4048,8 @@
|
|
|
4040
4048
|
"IconVibeCodingBird": "vibe-coding-bird, laptop, work",
|
|
4041
4049
|
"IconVibeCodingStar": "vibe-coding-star, working, home-office",
|
|
4042
4050
|
"IconVideo": "video, camera, movie, play",
|
|
4051
|
+
"IconVideo2": "video-2, camera, movie, play",
|
|
4052
|
+
"IconVideo2Off": "video-2-off, cam-off, movie, play",
|
|
4043
4053
|
"IconVideoClip": "video-clip, film, movie",
|
|
4044
4054
|
"IconVideoOff": "video-off, cam-off",
|
|
4045
4055
|
"IconVideoOn": "video-on, cam-on",
|
package/index.d.ts
CHANGED
|
@@ -1080,6 +1080,8 @@ export { IconLightBulbSimple, default as IconLightBulbSimpleDefault, } from "./I
|
|
|
1080
1080
|
export { IconLightbulbGlow, default as IconLightbulbGlowDefault, } from "./IconLightbulbGlow";
|
|
1081
1081
|
export { IconLightbulbSparkle, default as IconLightbulbSparkleDefault, } from "./IconLightbulbSparkle";
|
|
1082
1082
|
export { IconLightning, default as IconLightningDefault, } from "./IconLightning";
|
|
1083
|
+
export { IconLightningBolt, default as IconLightningBoltDefault, } from "./IconLightningBolt";
|
|
1084
|
+
export { IconLightningBoltOff, default as IconLightningBoltOffDefault, } from "./IconLightningBoltOff";
|
|
1083
1085
|
export { IconLimit, default as IconLimitDefault } from "./IconLimit";
|
|
1084
1086
|
export { IconLineChart1, default as IconLineChart1Default, } from "./IconLineChart1";
|
|
1085
1087
|
export { IconLineChart2, default as IconLineChart2Default, } from "./IconLineChart2";
|
|
@@ -1481,6 +1483,7 @@ export { IconRiotGames, default as IconRiotGamesDefault, } from "./IconRiotGames
|
|
|
1481
1483
|
export { IconRive, default as IconRiveDefault } from "./IconRive";
|
|
1482
1484
|
export { IconRobinhood, default as IconRobinhoodDefault, } from "./IconRobinhood";
|
|
1483
1485
|
export { IconRobot, default as IconRobotDefault } from "./IconRobot";
|
|
1486
|
+
export { IconRobot2, default as IconRobot2Default } from "./IconRobot2";
|
|
1484
1487
|
export { IconRocket, default as IconRocketDefault } from "./IconRocket";
|
|
1485
1488
|
export { IconRockingHorse, default as IconRockingHorseDefault, } from "./IconRockingHorse";
|
|
1486
1489
|
export { IconRoller, default as IconRollerDefault } from "./IconRoller";
|
|
@@ -1874,6 +1877,8 @@ export { IconVibeCoding2, default as IconVibeCoding2Default, } from "./IconVibeC
|
|
|
1874
1877
|
export { IconVibeCodingBird, default as IconVibeCodingBirdDefault, } from "./IconVibeCodingBird";
|
|
1875
1878
|
export { IconVibeCodingStar, default as IconVibeCodingStarDefault, } from "./IconVibeCodingStar";
|
|
1876
1879
|
export { IconVideo, default as IconVideoDefault } from "./IconVideo";
|
|
1880
|
+
export { IconVideo2, default as IconVideo2Default } from "./IconVideo2";
|
|
1881
|
+
export { IconVideo2Off, default as IconVideo2OffDefault, } from "./IconVideo2Off";
|
|
1877
1882
|
export { IconVideoClip, default as IconVideoClipDefault, } from "./IconVideoClip";
|
|
1878
1883
|
export { IconVideoOff, default as IconVideoOffDefault } from "./IconVideoOff";
|
|
1879
1884
|
export { IconVideoOn, default as IconVideoOnDefault } from "./IconVideoOn";
|