@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.167 → 1.1.169
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/IconAgentNetwork/index.d.ts +4 -0
- package/IconAgentNetwork/index.js +2 -0
- package/IconAgentNetwork/index.js.map +1 -0
- package/IconAgentNetwork/index.mjs +2 -0
- package/IconAgentNetwork/index.mjs.map +1 -0
- package/IconLightbulbSparkle/index.d.ts +4 -0
- package/IconLightbulbSparkle/index.js +2 -0
- package/IconLightbulbSparkle/index.js.map +1 -0
- package/IconLightbulbSparkle/index.mjs +2 -0
- package/IconLightbulbSparkle/index.mjs.map +1 -0
- package/IconProgress25/index.d.ts +4 -0
- package/IconProgress25/index.js +2 -0
- package/IconProgress25/index.js.map +1 -0
- package/IconProgress25/index.mjs +2 -0
- package/IconProgress25/index.mjs.map +1 -0
- package/IconSpeedHigh/index.d.ts +4 -0
- package/IconSpeedHigh/index.js +2 -0
- package/IconSpeedHigh/index.js.map +1 -0
- package/IconSpeedHigh/index.mjs +2 -0
- package/IconSpeedHigh/index.mjs.map +1 -0
- package/IconSpeedLow/index.d.ts +4 -0
- package/IconSpeedLow/index.js +2 -0
- package/IconSpeedLow/index.js.map +1 -0
- package/IconSpeedLow/index.mjs +2 -0
- package/IconSpeedLow/index.mjs.map +1 -0
- package/IconSpeedMiddle/index.d.ts +4 -0
- package/IconSpeedMiddle/index.js +2 -0
- package/IconSpeedMiddle/index.js.map +1 -0
- package/IconSpeedMiddle/index.mjs +2 -0
- package/IconSpeedMiddle/index.mjs.map +1 -0
- package/README.md +6 -0
- package/filtered-icons.json +84 -0
- package/icons/index.d.ts +6 -0
- package/icons-index.json +18 -6
- package/index.d.ts +6 -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 +42 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var c=Object.defineProperty;var y=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var i=(r,o)=>{for(var t in o)c(r,t,{get:o[t],enumerable:!0})},C=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let p of B(o))!g.call(r,p)&&p!==t&&c(r,p,{get:()=>o[p],enumerable:!(s=y(o,p))||s.enumerable});return r};var l=(r,o,t)=>(t=r!=null?f(I(r)):{},C(o||!r||!r.__esModule?c(t,"default",{value:r,enumerable:!0}):t,r)),P=r=>C(c({},"__esModule",{value:!0}),r);var v={};i(v,{IconAgentNetwork:()=>x,default:()=>k});module.exports=P(v);var e=l(require("react"));var m=l(require("react")),a=require("react-native-svg"),u=({children:r,size:o=24,...t})=>m.default.createElement(a.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"),x=r=>e.default.createElement(u,{...r},e.default.createElement(n.Circle,{cx:"18.5",cy:"7.5",r:"2.75",stroke:"currentColor"}),e.default.createElement(n.Circle,{cx:"5.5",cy:"16.5",r:"2.75",stroke:"currentColor"}),e.default.createElement(n.Circle,{cx:"8.5",cy:"6.5",r:"3.75",stroke:"currentColor"}),e.default.createElement(n.Circle,{cx:"15.5",cy:"17.5",r:"3.75",stroke:"currentColor"}),e.default.createElement(n.Path,{d:"M12.3643 6.78564L15.5903 7.10081M17.9026 10.2759L16.826 13.7821M13.4093 14.1646L10.4993 9.6972M7.17742 10.2023L6.07812 13.7821M8.20985 16.8798L11.6071 17.2117",stroke:"currentColor"})),k=x;0&&(module.exports={IconAgentNetwork});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAgentNetwork/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAgentNetwork: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"18.5\" cy=\"7.5\" r=\"2.75\" stroke=\"currentColor\" />\n <Circle cx=\"5.5\" cy=\"16.5\" r=\"2.75\" stroke=\"currentColor\" />\n <Circle cx=\"8.5\" cy=\"6.5\" r=\"3.75\" stroke=\"currentColor\" />\n <Circle cx=\"15.5\" cy=\"17.5\" r=\"3.75\" stroke=\"currentColor\" />\n <Path\n d=\"M12.3643 6.78564L15.5903 7.10081M17.9026 10.2759L16.826 13.7821M13.4093 14.1646L10.4993 9.6972M7.17742 10.2023L6.07812 13.7821M8.20985 16.8798L11.6071 17.2117\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAgentNetwork;\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,sBAAAE,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,EAA6B,4BAEhBC,EAA8CC,GAEvD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,MAAM,EAAE,OAAO,OAAO,eAAe,EAC1D,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,OAAO,EAAE,OAAO,OAAO,eAAe,EAC1D,EAAAA,QAAA,cAAC,UAAO,GAAG,MAAM,GAAG,MAAM,EAAE,OAAO,OAAO,eAAe,EACzD,EAAAA,QAAA,cAAC,UAAO,GAAG,OAAO,GAAG,OAAO,EAAE,OAAO,OAAO,eAAe,EAC3D,EAAAA,QAAA,cAAC,QACC,EAAE,iKACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconAgentNetwork_exports","__export","IconAgentNetwork","IconAgentNetwork_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAgentNetwork","props","React","CentralIconBase","IconAgentNetwork_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import c from"react";import{Svg as s}from"react-native-svg";var n=({children:e,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"},e);import{Circle as t,Path as C}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{cx:"18.5",cy:"7.5",r:"2.75",stroke:"currentColor"}),o.createElement(t,{cx:"5.5",cy:"16.5",r:"2.75",stroke:"currentColor"}),o.createElement(t,{cx:"8.5",cy:"6.5",r:"3.75",stroke:"currentColor"}),o.createElement(t,{cx:"15.5",cy:"17.5",r:"3.75",stroke:"currentColor"}),o.createElement(C,{d:"M12.3643 6.78564L15.5903 7.10081M17.9026 10.2759L16.826 13.7821M13.4093 14.1646L10.4993 9.6972M7.17742 10.2023L6.07812 13.7821M8.20985 16.8798L11.6071 17.2117",stroke:"currentColor"})),i=l;export{l as IconAgentNetwork,i as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconAgentNetwork/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconAgentNetwork: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"18.5\" cy=\"7.5\" r=\"2.75\" stroke=\"currentColor\" />\n <Circle cx=\"5.5\" cy=\"16.5\" r=\"2.75\" stroke=\"currentColor\" />\n <Circle cx=\"8.5\" cy=\"6.5\" r=\"3.75\" stroke=\"currentColor\" />\n <Circle cx=\"15.5\" cy=\"17.5\" r=\"3.75\" stroke=\"currentColor\" />\n <Path\n d=\"M12.3643 6.78564L15.5903 7.10081M17.9026 10.2759L16.826 13.7821M13.4093 14.1646L10.4993 9.6972M7.17742 10.2023L6.07812 13.7821M8.20985 16.8798L11.6071 17.2117\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAgentNetwork;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,MAAM,EAAE,OAAO,OAAO,eAAe,EAC1DI,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,OAAO,EAAE,OAAO,OAAO,eAAe,EAC1DI,EAAA,cAACJ,EAAA,CAAO,GAAG,MAAM,GAAG,MAAM,EAAE,OAAO,OAAO,eAAe,EACzDI,EAAA,cAACJ,EAAA,CAAO,GAAG,OAAO,GAAG,OAAO,EAAE,OAAO,OAAO,eAAe,EAC3DI,EAAA,cAACH,EAAA,CACC,EAAE,iKACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAgentNetwork","props","React","CentralIconBase","IconAgentNetwork_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var f=Object.create;var n=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,g=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!g.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=i(o,t))||a.enumerable});return r};var l=(r,o,e)=>(e=r!=null?f(I(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),P=r=>s(n({},"__esModule",{value:!0}),r);var b={};x(b,{IconLightbulbSparkle:()=>L,default:()=>V});module.exports=P(b);var p=l(require("react"));var m=l(require("react")),c=require("react-native-svg"),u=({children:r,size:o=24,...e})=>m.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 C=require("react-native-svg"),L=r=>p.default.createElement(u,{...r},p.default.createElement(C.Path,{d:"M8.5 17.5V19C8.5 20.933 10.067 22.5 12 22.5C13.933 22.5 15.5 20.933 15.5 19V17.5M8.5 17.5V16.635C6.1211 15.3775 4.5 12.878 4.5 10C4.5 5.85786 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.85786 19.5 10C19.5 12.878 17.8789 15.3775 15.5 16.635V17.5M8.5 17.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),p.default.createElement(C.Path,{d:"M12.35 6.5H11.65L10.775 8.775L8.5 9.65V10.35L10.775 11.225L11.65 13.5H12.35L13.225 11.225L15.5 10.35V9.65L13.225 8.775L12.35 6.5Z",stroke:"currentColor"})),V=L;0&&(module.exports={IconLightbulbSparkle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightbulbSparkle/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 IconLightbulbSparkle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.5 17.5V19C8.5 20.933 10.067 22.5 12 22.5C13.933 22.5 15.5 20.933 15.5 19V17.5M8.5 17.5V16.635C6.1211 15.3775 4.5 12.878 4.5 10C4.5 5.85786 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.85786 19.5 10C19.5 12.878 17.8789 15.3775 15.5 16.635V17.5M8.5 17.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12.35 6.5H11.65L10.775 8.775L8.5 9.65V10.35L10.775 11.225L11.65 13.5H12.35L13.225 11.225L15.5 10.35V9.65L13.225 8.775L12.35 6.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightbulbSparkle;\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,EAAE,+PACF,OAAO,eACP,cAAc,SAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oIACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconLightbulbSparkle_exports","__export","IconLightbulbSparkle","IconLightbulbSparkle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconLightbulbSparkle","props","React","CentralIconBase","IconLightbulbSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(a,{...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 s=o=>e.createElement(t,{...o},e.createElement(n,{d:"M8.5 17.5V19C8.5 20.933 10.067 22.5 12 22.5C13.933 22.5 15.5 20.933 15.5 19V17.5M8.5 17.5V16.635C6.1211 15.3775 4.5 12.878 4.5 10C4.5 5.85786 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.85786 19.5 10C19.5 12.878 17.8789 15.3775 15.5 16.635V17.5M8.5 17.5H15.5",stroke:"currentColor",strokeLinecap:"square"}),e.createElement(n,{d:"M12.35 6.5H11.65L10.775 8.775L8.5 9.65V10.35L10.775 11.225L11.65 13.5H12.35L13.225 11.225L15.5 10.35V9.65L13.225 8.775L12.35 6.5Z",stroke:"currentColor"})),g=s;export{s as IconLightbulbSparkle,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconLightbulbSparkle/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 IconLightbulbSparkle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M8.5 17.5V19C8.5 20.933 10.067 22.5 12 22.5C13.933 22.5 15.5 20.933 15.5 19V17.5M8.5 17.5V16.635C6.1211 15.3775 4.5 12.878 4.5 10C4.5 5.85786 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.85786 19.5 10C19.5 12.878 17.8789 15.3775 15.5 16.635V17.5M8.5 17.5H15.5\"\n stroke=\"currentColor\"\n strokeLinecap=\"square\"\n />\n <Path\n d=\"M12.35 6.5H11.65L10.775 8.775L8.5 9.65V10.35L10.775 11.225L11.65 13.5H12.35L13.225 11.225L15.5 10.35V9.65L13.225 8.775L12.35 6.5Z\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLightbulbSparkle;\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,EAAE,+PACF,OAAO,eACP,cAAc,SAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oIACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconLightbulbSparkle","props","React","CentralIconBase","IconLightbulbSparkle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!P.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(s=x(o,t))||s.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},C(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),v=r=>C(n({},"__esModule",{value:!0}),r);var h={};g(h,{IconProgress25:()=>i,default:()=>y});module.exports=v(h);var p=a(require("react"));var c=a(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>c.default.createElement(m.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 l=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),p.default.createElement(l.Path,{d:"M20 12C20 7.58172 16.4183 4 12 4V12H20Z",fill:"currentColor"})),y=i;0&&(module.exports={IconProgress25});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress25/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress25: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress25;\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,oBAAAE,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,EAA6B,4BAEhBC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EAIGE,EAAQJ","names":["IconProgress25_exports","__export","IconProgress25","IconProgress25_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconProgress25","props","React","CentralIconBase","IconProgress25_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as s,Path as C}from"react-native-svg";var a=o=>e.createElement(t,{...o},e.createElement(s,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(C,{d:"M20 12C20 7.58172 16.4183 4 12 4V12H20Z",fill:"currentColor"})),g=a;export{a as IconProgress25,g as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconProgress25/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconProgress25: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconProgress25;\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDI,EAAA,cAACH,EAAA,CAAK,EAAE,0CAA0C,KAAK,eAAe,CACxE,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconProgress25","props","React","CentralIconBase","IconProgress25_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 g=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of I(o))!x.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=B(o,t))||a.enumerable});return r};var m=(r,o,e)=>(e=r!=null?u(g(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),d=r=>l(n({},"__esModule",{value:!0}),r);var v={};P(v,{IconSpeedHigh:()=>i,default:()=>h});module.exports=d(v);var p=m(require("react"));var s=m(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>s.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 C=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(C.Path,{d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),p.default.createElement(C.Path,{d:"M10.468 14.2846C9.75795 13.4385 9.86832 12.177 10.7145 11.467C11.5606 10.757 12.8221 10.8673 13.5321 11.7135C15.1391 13.6286 15.8568 17.5953 15.8568 17.5953C15.8568 17.5953 12.0749 16.1998 10.468 14.2846Z",fill:"currentColor"})),h=i;0&&(module.exports={IconSpeedHigh});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedHigh/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 IconSpeedHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M10.468 14.2846C9.75795 13.4385 9.86832 12.177 10.7145 11.467C11.5606 10.757 12.8221 10.8673 13.5321 11.7135C15.1391 13.6286 15.8568 17.5953 15.8568 17.5953C15.8568 17.5953 12.0749 16.1998 10.468 14.2846Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedHigh;\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,yJACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSpeedHigh_exports","__export","IconSpeedHigh","IconSpeedHigh_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSpeedHigh","props","React","CentralIconBase","IconSpeedHigh_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e from"react";import C from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>C.createElement(a,{...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 l=o=>e.createElement(t,{...o},e.createElement(n,{d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),e.createElement(n,{d:"M10.468 14.2846C9.75795 13.4385 9.86832 12.177 10.7145 11.467C11.5606 10.757 12.8221 10.8673 13.5321 11.7135C15.1391 13.6286 15.8568 17.5953 15.8568 17.5953C15.8568 17.5953 12.0749 16.1998 10.468 14.2846Z",fill:"currentColor"})),x=l;export{l as IconSpeedHigh,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedHigh/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 IconSpeedHigh: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M10.468 14.2846C9.75795 13.4385 9.86832 12.177 10.7145 11.467C11.5606 10.757 12.8221 10.8673 13.5321 11.7135C15.1391 13.6286 15.8568 17.5953 15.8568 17.5953C15.8568 17.5953 12.0749 16.1998 10.468 14.2846Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedHigh;\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,yJACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+MACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSpeedHigh","props","React","CentralIconBase","IconSpeedHigh_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var i=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var d=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!P.call(r,e)&&e!==t&&C(r,e,{get:()=>o[e],enumerable:!(l=B(o,e))||l.enumerable});return r};var s=(r,o,t)=>(t=r!=null?i(x(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var y={};d(y,{IconSpeedLow:()=>u,default:()=>v});module.exports=g(y);var n=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.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 p=require("react-native-svg"),u=r=>n.default.createElement(f,{...r},n.default.createElement(p.Path,{d:"M13.0008 11.2675C13.9574 11.8197 14.2852 13.0429 13.7329 13.9995C13.1806 14.9561 11.9574 15.2838 11.0008 14.7316C8.83578 13.4816 6.80469 9.99951 6.80469 9.99951C6.80469 9.99951 10.8358 10.0175 13.0008 11.2675Z",fill:"currentColor"}),n.default.createElement(p.Path,{opacity:"0.12",d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M6.87436 20C4.24324 18.3107 2.5 15.3589 2.5 12C2.5 10.9517 2.6698 9.943 2.98341 9",stroke:"currentColor"})),v=u;0&&(module.exports={IconSpeedLow});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedLow/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 IconSpeedLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.0008 11.2675C13.9574 11.8197 14.2852 13.0429 13.7329 13.9995C13.1806 14.9561 11.9574 15.2838 11.0008 14.7316C8.83578 13.4816 6.80469 9.99951 6.80469 9.99951C6.80469 9.99951 10.8358 10.0175 13.0008 11.2675Z\"\n fill=\"currentColor\"\n />\n <Path\n opacity=\"0.12\"\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M6.87436 20C4.24324 18.3107 2.5 15.3589 2.5 12C2.5 10.9517 2.6698 9.943 2.98341 9\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedLow;\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,kBAAAE,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,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,QAAQ,OACR,EAAE,yJACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,oFACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconSpeedLow_exports","__export","IconSpeedLow","IconSpeedLow_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSpeedLow","props","React","CentralIconBase","IconSpeedLow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:t,size:r=24,...C})=>p.createElement(l,{...C,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:"M13.0008 11.2675C13.9574 11.8197 14.2852 13.0429 13.7329 13.9995C13.1806 14.9561 11.9574 15.2838 11.0008 14.7316C8.83578 13.4816 6.80469 9.99951 6.80469 9.99951C6.80469 9.99951 10.8358 10.0175 13.0008 11.2675Z",fill:"currentColor"}),o.createElement(e,{opacity:"0.12",d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),o.createElement(e,{d:"M6.87436 20C4.24324 18.3107 2.5 15.3589 2.5 12C2.5 10.9517 2.6698 9.943 2.98341 9",stroke:"currentColor"})),P=a;export{a as IconSpeedLow,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedLow/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 IconSpeedLow: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M13.0008 11.2675C13.9574 11.8197 14.2852 13.0429 13.7329 13.9995C13.1806 14.9561 11.9574 15.2838 11.0008 14.7316C8.83578 13.4816 6.80469 9.99951 6.80469 9.99951C6.80469 9.99951 10.8358 10.0175 13.0008 11.2675Z\"\n fill=\"currentColor\"\n />\n <Path\n opacity=\"0.12\"\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M6.87436 20C4.24324 18.3107 2.5 15.3589 2.5 12C2.5 10.9517 2.6698 9.943 2.98341 9\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedLow;\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,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,oNACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,QAAQ,OACR,EAAE,yJACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,oFACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSpeedLow","props","React","CentralIconBase","IconSpeedLow_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0})},a=(r,o,e,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!x.call(r,t)&&t!==e&&C(r,t,{get:()=>o[t],enumerable:!(l=d(o,t))||l.enumerable});return r};var s=(r,o,e)=>(e=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>a(C({},"__esModule",{value:!0}),r);var y={};P(y,{IconSpeedMiddle:()=>i,default:()=>v});module.exports=g(y);var n=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...e})=>m.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 p=require("react-native-svg"),i=r=>n.default.createElement(f,{...r},n.default.createElement(p.Path,{opacity:"0.12",d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),n.default.createElement(p.Path,{d:"M14 12.9995C14 14.1041 13.1046 14.9995 12 14.9995C10.8954 14.9995 10 14.1041 10 12.9995C10 10.4995 12 6.99951 12 6.99951C12 6.99951 14 10.4995 14 12.9995Z",fill:"currentColor"})),v=i;0&&(module.exports={IconSpeedMiddle});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedMiddle/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 IconSpeedMiddle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n opacity=\"0.12\"\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M14 12.9995C14 14.1041 13.1046 14.9995 12 14.9995C10.8954 14.9995 10 14.1041 10 12.9995C10 10.4995 12 6.99951 12 6.99951C12 6.99951 14 10.4995 14 12.9995Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedMiddle;\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,QAAQ,OACR,EAAE,yJACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,gFACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,6JACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconSpeedMiddle_exports","__export","IconSpeedMiddle","IconSpeedMiddle_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconSpeedMiddle","props","React","CentralIconBase","IconSpeedMiddle_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(l,{...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 t}from"react-native-svg";var a=e=>o.createElement(n,{...e},o.createElement(t,{opacity:"0.12",d:"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),o.createElement(t,{d:"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20",stroke:"currentColor"}),o.createElement(t,{d:"M14 12.9995C14 14.1041 13.1046 14.9995 12 14.9995C10.8954 14.9995 10 14.1041 10 12.9995C10 10.4995 12 6.99951 12 6.99951C12 6.99951 14 10.4995 14 12.9995Z",fill:"currentColor"})),x=a;export{a as IconSpeedMiddle,x as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconSpeedMiddle/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 IconSpeedMiddle: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n opacity=\"0.12\"\n d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M14 12.9995C14 14.1041 13.1046 14.9995 12 14.9995C10.8954 14.9995 10 14.1041 10 12.9995C10 10.4995 12 6.99951 12 6.99951C12 6.99951 14 10.4995 14 12.9995Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSpeedMiddle;\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,QAAQ,OACR,EAAE,yJACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,gFACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,6JACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconSpeedMiddle","props","React","CentralIconBase","IconSpeedMiddle_default"]}
|
package/README.md
CHANGED
|
@@ -177,6 +177,7 @@ Below is a complete list of available icons:
|
|
|
177
177
|
- IconImagesSparkle
|
|
178
178
|
- IconImagine
|
|
179
179
|
- IconImagineAi
|
|
180
|
+
- IconLightbulbSparkle
|
|
180
181
|
- IconListSparkle
|
|
181
182
|
- IconLiveVoiceTranslate
|
|
182
183
|
- IconLocationSparkle
|
|
@@ -567,6 +568,7 @@ Below is a complete list of available icons:
|
|
|
567
568
|
|
|
568
569
|
### Devices & Signals
|
|
569
570
|
|
|
571
|
+
- IconAgentNetwork
|
|
570
572
|
- IconAirdrop
|
|
571
573
|
- IconAirplay
|
|
572
574
|
- IconAirplayAudio
|
|
@@ -1137,6 +1139,7 @@ Below is a complete list of available icons:
|
|
|
1137
1139
|
- IconPlusSmall
|
|
1138
1140
|
- IconPreview
|
|
1139
1141
|
- IconProgress100
|
|
1142
|
+
- IconProgress25
|
|
1140
1143
|
- IconProgress50
|
|
1141
1144
|
- IconProgress75
|
|
1142
1145
|
- IconProgressArc
|
|
@@ -1921,6 +1924,9 @@ Below is a complete list of available icons:
|
|
|
1921
1924
|
- IconSilverMedal
|
|
1922
1925
|
- IconSocial
|
|
1923
1926
|
- IconSpace
|
|
1927
|
+
- IconSpeedHigh
|
|
1928
|
+
- IconSpeedLow
|
|
1929
|
+
- IconSpeedMiddle
|
|
1924
1930
|
- IconStage
|
|
1925
1931
|
- IconStamps
|
|
1926
1932
|
- IconSteeringWheel
|
package/filtered-icons.json
CHANGED
|
@@ -210,6 +210,20 @@
|
|
|
210
210
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
211
211
|
"componentName": "IconAgenticCoding"
|
|
212
212
|
},
|
|
213
|
+
{
|
|
214
|
+
"category": "Devices & Signals",
|
|
215
|
+
"svg": "<circle cx=\"18.5\" cy=\"7.5\" r=\"2.75\" stroke=\"currentColor\"/><circle cx=\"5.5\" cy=\"16.5\" r=\"2.75\" stroke=\"currentColor\"/><circle cx=\"8.5\" cy=\"6.5\" r=\"3.75\" stroke=\"currentColor\"/><circle cx=\"15.5\" cy=\"17.5\" r=\"3.75\" stroke=\"currentColor\"/><path d=\"M12.3643 6.78564L15.5903 7.10081M17.9026 10.2759L16.826 13.7821M13.4093 14.1646L10.4993 9.6972M7.17742 10.2023L6.07812 13.7821M8.20985 16.8798L11.6071 17.2117\" stroke=\"currentColor\"/>",
|
|
216
|
+
"iconName": "agent-network, connections, atoms",
|
|
217
|
+
"variant": {
|
|
218
|
+
"join": "square",
|
|
219
|
+
"filled": "off",
|
|
220
|
+
"radius": "0",
|
|
221
|
+
"stroke": "1"
|
|
222
|
+
},
|
|
223
|
+
"createdAt": "2026-03-18T10:00:55.038177+00:00",
|
|
224
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
225
|
+
"componentName": "IconAgentNetwork"
|
|
226
|
+
},
|
|
213
227
|
{
|
|
214
228
|
"category": "Devices & Signals",
|
|
215
229
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"1.5\" stroke=\"currentColor\"/><path d=\"M12.5 11.5H11.5V12.5H12.5V11.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M16.7508 20.2286C19.5899 18.5859 21.5 15.516 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.516 4.41007 18.5859 7.24917 20.2286\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M9.24865 16.7634C7.60544 15.8122 6.5 14.0352 6.5 12C6.5 8.96243 8.96243 6.5 12 6.5C15.0376 6.5 17.5 8.96243 17.5 12C17.5 14.0352 16.3946 15.8122 14.7514 16.7634\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
@@ -14560,6 +14574,20 @@
|
|
|
14560
14574
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
14561
14575
|
"componentName": "IconLightBulbSimple"
|
|
14562
14576
|
},
|
|
14577
|
+
{
|
|
14578
|
+
"category": "AI & Magic",
|
|
14579
|
+
"svg": "<path d=\"M8.5 17.5V19C8.5 20.933 10.067 22.5 12 22.5C13.933 22.5 15.5 20.933 15.5 19V17.5M8.5 17.5V16.635C6.1211 15.3775 4.5 12.878 4.5 10C4.5 5.85786 7.85786 2.5 12 2.5C16.1421 2.5 19.5 5.85786 19.5 10C19.5 12.878 17.8789 15.3775 15.5 16.635V17.5M8.5 17.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M12.35 6.5H11.65L10.775 8.775L8.5 9.65V10.35L10.775 11.225L11.65 13.5H12.35L13.225 11.225L15.5 10.35V9.65L13.225 8.775L12.35 6.5Z\" stroke=\"currentColor\"/>",
|
|
14580
|
+
"iconName": "lightbulb-sparkle, idea, reasoning, think",
|
|
14581
|
+
"variant": {
|
|
14582
|
+
"join": "square",
|
|
14583
|
+
"filled": "off",
|
|
14584
|
+
"radius": "0",
|
|
14585
|
+
"stroke": "1"
|
|
14586
|
+
},
|
|
14587
|
+
"createdAt": "2026-03-18T09:00:50.796635+00:00",
|
|
14588
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
14589
|
+
"componentName": "IconLightbulbSparkle"
|
|
14590
|
+
},
|
|
14563
14591
|
{
|
|
14564
14592
|
"category": "Weather",
|
|
14565
14593
|
"svg": "<path d=\"M3.5 12.5L8.79412 2.5H18L15 8.5H21L7 20.5L9.5 12.5H3.5Z\" stroke=\"currentColor\" stroke-linecap=\"round\"/>",
|
|
@@ -18970,6 +18998,20 @@
|
|
|
18970
18998
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
18971
18999
|
"componentName": "IconProgress100"
|
|
18972
19000
|
},
|
|
19001
|
+
{
|
|
19002
|
+
"category": "Interface General",
|
|
19003
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M20 12C20 7.58172 16.4183 4 12 4V12H20Z\" fill=\"currentColor\"/>",
|
|
19004
|
+
"iconName": "progress-25, ideas, open, status, task",
|
|
19005
|
+
"variant": {
|
|
19006
|
+
"join": "square",
|
|
19007
|
+
"filled": "off",
|
|
19008
|
+
"radius": "0",
|
|
19009
|
+
"stroke": "1"
|
|
19010
|
+
},
|
|
19011
|
+
"createdAt": "2025-11-14T21:00:57.563615+00:00",
|
|
19012
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
19013
|
+
"componentName": "IconProgress25"
|
|
19014
|
+
},
|
|
18973
19015
|
{
|
|
18974
19016
|
"category": "Interface General",
|
|
18975
19017
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99594 16.0041 4.75 12 4.75V19.25Z\" fill=\"currentColor\"/>",
|
|
@@ -22036,6 +22078,48 @@
|
|
|
22036
22078
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22037
22079
|
"componentName": "IconSpeedDots"
|
|
22038
22080
|
},
|
|
22081
|
+
{
|
|
22082
|
+
"category": "Things",
|
|
22083
|
+
"svg": "<path d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\" stroke=\"currentColor\"/><path d=\"M10.468 14.2846C9.75795 13.4385 9.86832 12.177 10.7145 11.467C11.5606 10.757 12.8221 10.8673 13.5321 11.7135C15.1391 13.6286 15.8568 17.5953 15.8568 17.5953C15.8568 17.5953 12.0749 16.1998 10.468 14.2846Z\" fill=\"currentColor\"/>",
|
|
22084
|
+
"iconName": "speed-high, limit, speedometer, level",
|
|
22085
|
+
"variant": {
|
|
22086
|
+
"join": "square",
|
|
22087
|
+
"filled": "off",
|
|
22088
|
+
"radius": "0",
|
|
22089
|
+
"stroke": "1"
|
|
22090
|
+
},
|
|
22091
|
+
"createdAt": "2026-03-18T12:01:15.243428+00:00",
|
|
22092
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22093
|
+
"componentName": "IconSpeedHigh"
|
|
22094
|
+
},
|
|
22095
|
+
{
|
|
22096
|
+
"category": "Things",
|
|
22097
|
+
"svg": "<path d=\"M13.0008 11.2675C13.9574 11.8197 14.2852 13.0429 13.7329 13.9995C13.1806 14.9561 11.9574 15.2838 11.0008 14.7316C8.83578 13.4816 6.80469 9.99951 6.80469 9.99951C6.80469 9.99951 10.8358 10.0175 13.0008 11.2675Z\" fill=\"currentColor\"/><path opacity=\"0.12\" d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\" stroke=\"currentColor\"/><path d=\"M6.87436 20C4.24324 18.3107 2.5 15.3589 2.5 12C2.5 10.9517 2.6698 9.943 2.98341 9\" stroke=\"currentColor\"/>",
|
|
22098
|
+
"iconName": "speed-low, limit, speedometer, level",
|
|
22099
|
+
"variant": {
|
|
22100
|
+
"join": "square",
|
|
22101
|
+
"filled": "off",
|
|
22102
|
+
"radius": "0",
|
|
22103
|
+
"stroke": "1"
|
|
22104
|
+
},
|
|
22105
|
+
"createdAt": "2026-03-18T12:01:15.243428+00:00",
|
|
22106
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22107
|
+
"componentName": "IconSpeedLow"
|
|
22108
|
+
},
|
|
22109
|
+
{
|
|
22110
|
+
"category": "Things",
|
|
22111
|
+
"svg": "<path opacity=\"0.12\" d=\"M17.1256 20C19.7568 18.3107 21.5 15.3589 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\" stroke=\"currentColor\"/><path d=\"M12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 15.3589 4.24324 18.3107 6.87436 20\" stroke=\"currentColor\"/><path d=\"M14 12.9995C14 14.1041 13.1046 14.9995 12 14.9995C10.8954 14.9995 10 14.1041 10 12.9995C10 10.4995 12 6.99951 12 6.99951C12 6.99951 14 10.4995 14 12.9995Z\" fill=\"currentColor\"/>",
|
|
22112
|
+
"iconName": "speed-middle, limit, speedometer, level",
|
|
22113
|
+
"variant": {
|
|
22114
|
+
"join": "square",
|
|
22115
|
+
"filled": "off",
|
|
22116
|
+
"radius": "0",
|
|
22117
|
+
"stroke": "1"
|
|
22118
|
+
},
|
|
22119
|
+
"createdAt": "2026-03-18T12:01:15.243428+00:00",
|
|
22120
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
22121
|
+
"componentName": "IconSpeedMiddle"
|
|
22122
|
+
},
|
|
22039
22123
|
{
|
|
22040
22124
|
"category": "Photography & Video",
|
|
22041
22125
|
"svg": "<path d=\"M12 2.5V21.5M8.5 4.5H2.5V19.5H8.5M15.5 19.5H21.5V4.5H15.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export type CentralIconName =
|
|
|
14
14
|
| "IconAffinity"
|
|
15
15
|
| "IconAgent"
|
|
16
16
|
| "IconAgenticCoding"
|
|
17
|
+
| "IconAgentNetwork"
|
|
17
18
|
| "IconAirdrop"
|
|
18
19
|
| "IconAirdrop2"
|
|
19
20
|
| "IconAirplane"
|
|
@@ -1039,6 +1040,7 @@ export type CentralIconName =
|
|
|
1039
1040
|
| "IconLightBulb"
|
|
1040
1041
|
| "IconLightbulbGlow"
|
|
1041
1042
|
| "IconLightBulbSimple"
|
|
1043
|
+
| "IconLightbulbSparkle"
|
|
1042
1044
|
| "IconLightning"
|
|
1043
1045
|
| "IconLimit"
|
|
1044
1046
|
| "IconLinear"
|
|
@@ -1354,6 +1356,7 @@ export type CentralIconName =
|
|
|
1354
1356
|
| "IconProcessor"
|
|
1355
1357
|
| "IconProducthunt"
|
|
1356
1358
|
| "IconProgress100"
|
|
1359
|
+
| "IconProgress25"
|
|
1357
1360
|
| "IconProgress50"
|
|
1358
1361
|
| "IconProgress75"
|
|
1359
1362
|
| "IconProgressArc"
|
|
@@ -1573,6 +1576,9 @@ export type CentralIconName =
|
|
|
1573
1576
|
| "IconSpeachToText"
|
|
1574
1577
|
| "IconSpeaker"
|
|
1575
1578
|
| "IconSpeedDots"
|
|
1579
|
+
| "IconSpeedHigh"
|
|
1580
|
+
| "IconSpeedLow"
|
|
1581
|
+
| "IconSpeedMiddle"
|
|
1576
1582
|
| "IconSplit"
|
|
1577
1583
|
| "IconSpotify"
|
|
1578
1584
|
| "IconSquareArrowBottomLeftCorner"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.169",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/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": 1894,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 72,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiTokens",
|
|
20
20
|
"IconAiTranslate",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"IconImagesSparkle",
|
|
48
48
|
"IconImagine",
|
|
49
49
|
"IconImagineAi",
|
|
50
|
+
"IconLightbulbSparkle",
|
|
50
51
|
"IconListSparkle",
|
|
51
52
|
"IconLiveVoiceTranslate",
|
|
52
53
|
"IconLocationSparkle",
|
|
@@ -453,8 +454,9 @@
|
|
|
453
454
|
]
|
|
454
455
|
},
|
|
455
456
|
"Devices & Signals": {
|
|
456
|
-
"count":
|
|
457
|
+
"count": 76,
|
|
457
458
|
"icons": [
|
|
459
|
+
"IconAgentNetwork",
|
|
458
460
|
"IconAirdrop",
|
|
459
461
|
"IconAirplay",
|
|
460
462
|
"IconAirplayAudio",
|
|
@@ -913,7 +915,7 @@
|
|
|
913
915
|
]
|
|
914
916
|
},
|
|
915
917
|
"Interface General": {
|
|
916
|
-
"count":
|
|
918
|
+
"count": 191,
|
|
917
919
|
"icons": [
|
|
918
920
|
"IconAnchor1",
|
|
919
921
|
"IconAnchor2",
|
|
@@ -1045,6 +1047,7 @@
|
|
|
1045
1047
|
"IconPlusSmall",
|
|
1046
1048
|
"IconPreview",
|
|
1047
1049
|
"IconProgress100",
|
|
1050
|
+
"IconProgress25",
|
|
1048
1051
|
"IconProgress50",
|
|
1049
1052
|
"IconProgress75",
|
|
1050
1053
|
"IconProgressArc",
|
|
@@ -1755,7 +1758,7 @@
|
|
|
1755
1758
|
]
|
|
1756
1759
|
},
|
|
1757
1760
|
"Things": {
|
|
1758
|
-
"count":
|
|
1761
|
+
"count": 133,
|
|
1759
1762
|
"icons": [
|
|
1760
1763
|
"IconAnvil",
|
|
1761
1764
|
"IconApps",
|
|
@@ -1855,6 +1858,9 @@
|
|
|
1855
1858
|
"IconSilverMedal",
|
|
1856
1859
|
"IconSocial",
|
|
1857
1860
|
"IconSpace",
|
|
1861
|
+
"IconSpeedHigh",
|
|
1862
|
+
"IconSpeedLow",
|
|
1863
|
+
"IconSpeedMiddle",
|
|
1858
1864
|
"IconStage",
|
|
1859
1865
|
"IconStamps",
|
|
1860
1866
|
"IconSteeringWheel",
|
|
@@ -2105,6 +2111,7 @@
|
|
|
2105
2111
|
"IconAffinity": "affinity",
|
|
2106
2112
|
"IconAgent": "agent, flow, diagram, org",
|
|
2107
2113
|
"IconAgenticCoding": "agentic-coding, ai-code, vibe-code",
|
|
2114
|
+
"IconAgentNetwork": "agent-network, connections, atoms",
|
|
2108
2115
|
"IconAirdrop": "airdrop, file-sharing, radar",
|
|
2109
2116
|
"IconAirdrop2": "airdrop-2, free, drop, parachute",
|
|
2110
2117
|
"IconAirplane": "airplane, flight",
|
|
@@ -3130,6 +3137,7 @@
|
|
|
3130
3137
|
"IconLightBulb": "light-bulb, idea, light",
|
|
3131
3138
|
"IconLightbulbGlow": "lightbulb-glow, idea, reasoning, think",
|
|
3132
3139
|
"IconLightBulbSimple": "light-bulb-simple, idea",
|
|
3140
|
+
"IconLightbulbSparkle": "lightbulb-sparkle, idea, reasoning, think",
|
|
3133
3141
|
"IconLightning": "lightning, zap, flash, thunder",
|
|
3134
3142
|
"IconLimit": "limit",
|
|
3135
3143
|
"IconLinear": "linear",
|
|
@@ -3445,6 +3453,7 @@
|
|
|
3445
3453
|
"IconProcessor": "processor, chip",
|
|
3446
3454
|
"IconProducthunt": "producthunt",
|
|
3447
3455
|
"IconProgress100": "progress-100, ideas, open, status, task",
|
|
3456
|
+
"IconProgress25": "progress-25, ideas, open, status, task",
|
|
3448
3457
|
"IconProgress50": "progress-50, ideas, open, status, tas",
|
|
3449
3458
|
"IconProgress75": "progress-75, ideas, open, status, tas",
|
|
3450
3459
|
"IconProgressArc": "progress-arc, progress-dynamic, ideas, open, status, task",
|
|
@@ -3664,6 +3673,9 @@
|
|
|
3664
3673
|
"IconSpeachToText": "speach-to-text, voice-to-text",
|
|
3665
3674
|
"IconSpeaker": "speaker, music, sound",
|
|
3666
3675
|
"IconSpeedDots": "speed-dots, motion, animation",
|
|
3676
|
+
"IconSpeedHigh": "speed-high, limit, speedometer, level",
|
|
3677
|
+
"IconSpeedLow": "speed-low, limit, speedometer, level",
|
|
3678
|
+
"IconSpeedMiddle": "speed-middle, limit, speedometer, level",
|
|
3667
3679
|
"IconSplit": "split",
|
|
3668
3680
|
"IconSpotify": "spotify",
|
|
3669
3681
|
"IconSquareArrowBottomLeftCorner": "square-arrow-bottom-left-corner",
|
package/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { IconAdjustPhoto, default as IconAdjustPhotoDefault, } from "./IconAdjus
|
|
|
12
12
|
export { IconAdobeAcrobat, default as IconAdobeAcrobatDefault, } from "./IconAdobeAcrobat";
|
|
13
13
|
export { IconAffinity, default as IconAffinityDefault } from "./IconAffinity";
|
|
14
14
|
export { IconAgent, default as IconAgentDefault } from "./IconAgent";
|
|
15
|
+
export { IconAgentNetwork, default as IconAgentNetworkDefault, } from "./IconAgentNetwork";
|
|
15
16
|
export { IconAgenticCoding, default as IconAgenticCodingDefault, } from "./IconAgenticCoding";
|
|
16
17
|
export { IconAiTokens, default as IconAiTokensDefault } from "./IconAiTokens";
|
|
17
18
|
export { IconAiTranslate, default as IconAiTranslateDefault, } from "./IconAiTranslate";
|
|
@@ -1038,6 +1039,7 @@ export { IconLifeVest, default as IconLifeVestDefault } from "./IconLifeVest";
|
|
|
1038
1039
|
export { IconLightBulb, default as IconLightBulbDefault, } from "./IconLightBulb";
|
|
1039
1040
|
export { IconLightBulbSimple, default as IconLightBulbSimpleDefault, } from "./IconLightBulbSimple";
|
|
1040
1041
|
export { IconLightbulbGlow, default as IconLightbulbGlowDefault, } from "./IconLightbulbGlow";
|
|
1042
|
+
export { IconLightbulbSparkle, default as IconLightbulbSparkleDefault, } from "./IconLightbulbSparkle";
|
|
1041
1043
|
export { IconLightning, default as IconLightningDefault, } from "./IconLightning";
|
|
1042
1044
|
export { IconLimit, default as IconLimitDefault } from "./IconLimit";
|
|
1043
1045
|
export { IconLineChart1, default as IconLineChart1Default, } from "./IconLineChart1";
|
|
@@ -1353,6 +1355,7 @@ export { IconPrinter, default as IconPrinterDefault } from "./IconPrinter";
|
|
|
1353
1355
|
export { IconProcessor, default as IconProcessorDefault, } from "./IconProcessor";
|
|
1354
1356
|
export { IconProducthunt, default as IconProducthuntDefault, } from "./IconProducthunt";
|
|
1355
1357
|
export { IconProgress100, default as IconProgress100Default, } from "./IconProgress100";
|
|
1358
|
+
export { IconProgress25, default as IconProgress25Default, } from "./IconProgress25";
|
|
1356
1359
|
export { IconProgress50, default as IconProgress50Default, } from "./IconProgress50";
|
|
1357
1360
|
export { IconProgress75, default as IconProgress75Default, } from "./IconProgress75";
|
|
1358
1361
|
export { IconProgressArc, default as IconProgressArcDefault, } from "./IconProgressArc";
|
|
@@ -1572,6 +1575,9 @@ export { IconSpatialCapture, default as IconSpatialCaptureDefault, } from "./Ico
|
|
|
1572
1575
|
export { IconSpeachToText, default as IconSpeachToTextDefault, } from "./IconSpeachToText";
|
|
1573
1576
|
export { IconSpeaker, default as IconSpeakerDefault } from "./IconSpeaker";
|
|
1574
1577
|
export { IconSpeedDots, default as IconSpeedDotsDefault, } from "./IconSpeedDots";
|
|
1578
|
+
export { IconSpeedHigh, default as IconSpeedHighDefault, } from "./IconSpeedHigh";
|
|
1579
|
+
export { IconSpeedLow, default as IconSpeedLowDefault } from "./IconSpeedLow";
|
|
1580
|
+
export { IconSpeedMiddle, default as IconSpeedMiddleDefault, } from "./IconSpeedMiddle";
|
|
1575
1581
|
export { IconSplit, default as IconSplitDefault } from "./IconSplit";
|
|
1576
1582
|
export { IconSpotify, default as IconSpotifyDefault } from "./IconSpotify";
|
|
1577
1583
|
export { IconSquareArrowBottomLeftCorner, default as IconSquareArrowBottomLeftCornerDefault, } from "./IconSquareArrowBottomLeftCorner";
|