@central-icons-react-native/round-outlined-radius-0-stroke-2 1.1.212 → 1.1.214
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/IconCarTaxi/index.d.ts +4 -0
- package/IconCarTaxi/index.js +2 -0
- package/IconCarTaxi/index.js.map +1 -0
- package/IconCarTaxi/index.mjs +2 -0
- package/IconCarTaxi/index.mjs.map +1 -0
- package/IconHermesHelmet/index.d.ts +4 -0
- package/IconHermesHelmet/index.js +2 -0
- package/IconHermesHelmet/index.js.map +1 -0
- package/IconHermesHelmet/index.mjs +2 -0
- package/IconHermesHelmet/index.mjs.map +1 -0
- package/IconQuickAi/index.d.ts +4 -0
- package/IconQuickAi/index.js +2 -0
- package/IconQuickAi/index.js.map +1 -0
- package/IconQuickAi/index.mjs +2 -0
- package/IconQuickAi/index.mjs.map +1 -0
- package/README.md +3 -0
- package/filtered-icons.json +42 -0
- package/icons/index.d.ts +3 -0
- package/icons-index.json +11 -6
- package/index.d.ts +3 -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 +4 -1
- package/tsx-icons.json +21 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var c=Object.create;var i=Object.defineProperty;var L=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},d=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of m(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=L(o,s))||p.enumerable});return r};var k=(r,o,e)=>(e=r!=null?c(h(r)):{},d(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),B=r=>d(i({},"__esModule",{value:!0}),r);var I={};x(I,{IconCarTaxi:()=>l,default:()=>H});module.exports=B(I);var n=k(require("react"));var u=k(require("react")),C=require("react-native-svg"),a=({children:r,size:o=24,...e})=>u.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 t=require("react-native-svg"),l=r=>n.default.createElement(a,{...r},n.default.createElement(t.Path,{d:"M3 19V11L7 5H17L21 11V19H17V17H7V19H3Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M2 10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M20.5 10H22",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M6 13H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M17 13H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M10 5V3L14 3V5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),H=l;0&&(module.exports={IconCarTaxi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCarTaxi/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 IconCarTaxi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 19V11L7 5H17L21 11V19H17V17H7V19H3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10H3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 10H22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6 13H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 13H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 5V3L14 3V5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCarTaxi;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,yCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCarTaxi_exports","__export","IconCarTaxi","IconCarTaxi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCarTaxi","props","React","CentralIconBase","IconCarTaxi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import r from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(p,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var d=n=>r.createElement(t,{...n},r.createElement(e,{d:"M3 19V11L7 5H17L21 11V19H17V17H7V19H3Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M2 10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M20.5 10H22",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M6 13H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M17 13H18",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M10 5V3L14 3V5",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"})),f=d;export{d as IconCarTaxi,f as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconCarTaxi/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 IconCarTaxi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M3 19V11L7 5H17L21 11V19H17V17H7V19H3Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M2 10H3.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M20.5 10H22\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M6 13H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M17 13H18\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M10 5V3L14 3V5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCarTaxi;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,yCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,cACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,UACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,YACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iBACF,OAAO,eACP,YAAY,IACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconCarTaxi","props","React","CentralIconBase","IconCarTaxi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var a=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var H=Object.getPrototypeOf,f=Object.prototype.hasOwnProperty;var h=(r,o)=>{for(var e in o)i(r,e,{get:o[e],enumerable:!0})},C=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!f.call(r,s)&&s!==e&&i(r,s,{get:()=>o[s],enumerable:!(p=m(o,s))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?a(H(r)):{},C(o||!r||!r.__esModule?i(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>C(i({},"__esModule",{value:!0}),r);var I={};h(I,{IconHermesHelmet:()=>l,default:()=>B});module.exports=x(I);var n=d(require("react"));var u=d(require("react")),k=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.default.createElement(k.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 t=require("react-native-svg"),l=r=>n.default.createElement(c,{...r},n.default.createElement(t.Path,{d:"M12 11L11.6327 5.85751C11.5579 4.8109 10.687 4 9.63776 4H3L3 5C3 6.10457 3.89543 7 5 7H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M8 10H5V11C5 12.1046 5.89543 13 7 13H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7 7H4V8C4 9.10457 4.89543 10 6 10H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"11.9969",cy:"12.9002",r:"1.7",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M7 13V15.7984C7 16.2526 6.84544 16.6932 6.56174 17.0478L5 19V20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.1425 17.6327C20.1891 17.5579 21 16.687 21 15.6378V14.5L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=l;0&&(module.exports={IconHermesHelmet});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHermesHelmet/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 IconHermesHelmet: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 11L11.6327 5.85751C11.5579 4.8109 10.687 4 9.63776 4H3L3 5C3 6.10457 3.89543 7 5 7H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 10H5V11C5 12.1046 5.89543 13 7 13H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 7H4V8C4 9.10457 4.89543 10 6 10H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"11.9969\"\n cy=\"12.9002\"\n r=\"1.7\"\n stroke=\"currentColor\"\n strokeWidth=\"1.7\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 13V15.7984C7 16.2526 6.84544 16.6932 6.56174 17.0478L5 19V20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.1425 17.6327C20.1891 17.5579 21 16.687 21 15.6378V14.5L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHermesHelmet;\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,QACC,EAAE,2FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,UACH,GAAG,UACH,EAAE,MACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8QACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconHermesHelmet_exports","__export","IconHermesHelmet","IconHermesHelmet_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconHermesHelmet","props","React","CentralIconBase","IconHermesHelmet_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import i from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...s})=>i.createElement(p,{...s,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n);import{Circle as C,Path as e}from"react-native-svg";var d=n=>o.createElement(t,{...n},o.createElement(e,{d:"M12 11L11.6327 5.85751C11.5579 4.8109 10.687 4 9.63776 4H3L3 5C3 6.10457 3.89543 7 5 7H7",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M8 10H5V11C5 12.1046 5.89543 13 7 13H10",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7 7H4V8C4 9.10457 4.89543 10 6 10H8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(C,{cx:"11.9969",cy:"12.9002",r:"1.7",stroke:"currentColor",strokeWidth:"1.7",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(e,{d:"M7 13V15.7984C7 16.2526 6.84544 16.6932 6.56174 17.0478L5 19V20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.1425 17.6327C20.1891 17.5579 21 16.687 21 15.6378V14.5L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),h=d;export{d as IconHermesHelmet,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconHermesHelmet/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 IconHermesHelmet: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 11L11.6327 5.85751C11.5579 4.8109 10.687 4 9.63776 4H3L3 5C3 6.10457 3.89543 7 5 7H7\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M8 10H5V11C5 12.1046 5.89543 13 7 13H10\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 7H4V8C4 9.10457 4.89543 10 6 10H8\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"11.9969\"\n cy=\"12.9002\"\n r=\"1.7\"\n stroke=\"currentColor\"\n strokeWidth=\"1.7\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M7 13V15.7984C7 16.2526 6.84544 16.6932 6.56174 17.0478L5 19V20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.1425 17.6327C20.1891 17.5579 21 16.687 21 15.6378V14.5L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconHermesHelmet;\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,cAACH,EAAA,CACC,EAAE,2FACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,0CACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uCACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,UACH,GAAG,UACH,EAAE,MACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,8QACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconHermesHelmet","props","React","CentralIconBase","IconHermesHelmet_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var l=Object.create;var p=Object.defineProperty;var k=Object.getOwnPropertyDescriptor;var m=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var t in o)p(r,t,{get:o[t],enumerable:!0})},i=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of m(o))!h.call(r,n)&&n!==t&&p(r,n,{get:()=>o[n],enumerable:!(s=k(o,n))||s.enumerable});return r};var a=(r,o,t)=>(t=r!=null?l(f(r)):{},i(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>i(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconQuickAi:()=>d,default:()=>x});module.exports=I(P);var e=a(require("react"));var u=a(require("react")),L=require("react-native-svg"),c=({children:r,size:o=24,...t})=>u.default.createElement(L.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"),d=r=>e.default.createElement(c,{...r},e.default.createElement(C.Path,{d:"M5 19L10.5 13.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(C.Path,{d:"M10 19L12 17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(C.Path,{d:"M5 14L7 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),e.default.createElement(C.Path,{d:"M17.2715 6.24728L15.8561 3.22638C15.7913 3.08824 15.6526 3 15.5 3C15.3474 3 15.2087 3.08824 15.1439 3.22638L13.7285 6.24728C13.6293 6.45904 13.459 6.62933 13.2473 6.72855L10.2264 8.14393C10.0882 8.20866 10 8.34744 10 8.5C10 8.65256 10.0882 8.79134 10.2264 8.85607L13.2473 10.2715C13.459 10.3707 13.6293 10.541 13.7285 10.7527L15.1439 13.7736C15.2087 13.9118 15.3474 14 15.5 14C15.6526 14 15.7913 13.9118 15.8561 13.7736L17.2715 10.7527C17.3707 10.541 17.541 10.3707 17.7527 10.2715L20.7736 8.85607C20.9118 8.79134 21 8.65256 21 8.5C21 8.34744 20.9118 8.20866 20.7736 8.14393L17.7527 6.72855C17.541 6.62933 17.3707 6.45904 17.2715 6.24728Z",stroke:"currentColor",strokeWidth:"1.8",strokeLinejoin:"round"})),x=d;0&&(module.exports={IconQuickAi});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconQuickAi/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 IconQuickAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 19L10.5 13.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M10 19L12 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M5 14L7 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M17.2715 6.24728L15.8561 3.22638C15.7913 3.08824 15.6526 3 15.5 3C15.3474 3 15.2087 3.08824 15.1439 3.22638L13.7285 6.24728C13.6293 6.45904 13.459 6.62933 13.2473 6.72855L10.2264 8.14393C10.0882 8.20866 10 8.34744 10 8.5C10 8.65256 10.0882 8.79134 10.2264 8.85607L13.2473 10.2715C13.459 10.3707 13.6293 10.541 13.7285 10.7527L15.1439 13.7736C15.2087 13.9118 15.3474 14 15.5 14C15.6526 14 15.7913 13.9118 15.8561 13.7736L17.2715 10.7527C17.3707 10.541 17.541 10.3707 17.7527 10.2715L20.7736 8.85607C20.9118 8.79134 21 8.65256 21 8.5C21 8.34744 20.9118 8.20866 20.7736 8.14393L17.7527 6.72855C17.541 6.62933 17.3707 6.45904 17.2715 6.24728Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconQuickAi;\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,iBAAAE,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,EAAyCC,GAElD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,kBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,ioBACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconQuickAi_exports","__export","IconQuickAi","IconQuickAi_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconQuickAi","props","React","CentralIconBase","IconQuickAi_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as s}from"react-native-svg";var n=({children:e,size:r=24,...C})=>p.createElement(s,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var i=e=>o.createElement(n,{...e},o.createElement(t,{d:"M5 19L10.5 13.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M10 19L12 17",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M5 14L7 12",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement(t,{d:"M17.2715 6.24728L15.8561 3.22638C15.7913 3.08824 15.6526 3 15.5 3C15.3474 3 15.2087 3.08824 15.1439 3.22638L13.7285 6.24728C13.6293 6.45904 13.459 6.62933 13.2473 6.72855L10.2264 8.14393C10.0882 8.20866 10 8.34744 10 8.5C10 8.65256 10.0882 8.79134 10.2264 8.85607L13.2473 10.2715C13.459 10.3707 13.6293 10.541 13.7285 10.7527L15.1439 13.7736C15.2087 13.9118 15.3474 14 15.5 14C15.6526 14 15.7913 13.9118 15.8561 13.7736L17.2715 10.7527C17.3707 10.541 17.541 10.3707 17.7527 10.2715L20.7736 8.85607C20.9118 8.79134 21 8.65256 21 8.5C21 8.34744 20.9118 8.20866 20.7736 8.14393L17.7527 6.72855C17.541 6.62933 17.3707 6.45904 17.2715 6.24728Z",stroke:"currentColor",strokeWidth:"1.8",strokeLinejoin:"round"})),h=i;export{i as IconQuickAi,h as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconQuickAi/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 IconQuickAi: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 19L10.5 13.5\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M10 19L12 17\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M5 14L7 12\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n />\n <Path\n d=\"M17.2715 6.24728L15.8561 3.22638C15.7913 3.08824 15.6526 3 15.5 3C15.3474 3 15.2087 3.08824 15.1439 3.22638L13.7285 6.24728C13.6293 6.45904 13.459 6.62933 13.2473 6.72855L10.2264 8.14393C10.0882 8.20866 10 8.34744 10 8.5C10 8.65256 10.0882 8.79134 10.2264 8.85607L13.2473 10.2715C13.459 10.3707 13.6293 10.541 13.7285 10.7527L15.1439 13.7736C15.2087 13.9118 15.3474 14 15.5 14C15.6526 14 15.7913 13.9118 15.8561 13.7736L17.2715 10.7527C17.3707 10.541 17.541 10.3707 17.7527 10.2715L20.7736 8.85607C20.9118 8.79134 21 8.65256 21 8.5C21 8.34744 20.9118 8.20866 20.7736 8.14393L17.7527 6.72855C17.541 6.62933 17.3707 6.45904 17.2715 6.24728Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconQuickAi;\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,EAAyCC,GAElDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,kBACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,eACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,aACF,OAAO,eACP,YAAY,IACZ,cAAc,QAChB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,ioBACF,OAAO,eACP,YAAY,MACZ,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconQuickAi","props","React","CentralIconBase","IconQuickAi_default"]}
|
package/README.md
CHANGED
|
@@ -199,6 +199,7 @@ Below is a complete list of available icons:
|
|
|
199
199
|
- IconPromptSuggestion
|
|
200
200
|
- IconPromptTextToImage
|
|
201
201
|
- IconPromptTextToVideo
|
|
202
|
+
- IconQuickAi
|
|
202
203
|
- IconReceiptionBellSparkle
|
|
203
204
|
- IconRobot
|
|
204
205
|
- IconRobot2
|
|
@@ -1951,6 +1952,7 @@ Below is a complete list of available icons:
|
|
|
1951
1952
|
- IconGoldMedal
|
|
1952
1953
|
- IconGraduateCap
|
|
1953
1954
|
- IconGraduateCap2
|
|
1955
|
+
- IconHermesHelmet
|
|
1954
1956
|
- IconInfinity
|
|
1955
1957
|
- IconInjection
|
|
1956
1958
|
- IconJudgeGavel
|
|
@@ -2165,6 +2167,7 @@ Below is a complete list of available icons:
|
|
|
2165
2167
|
### Vehicles
|
|
2166
2168
|
|
|
2167
2169
|
- IconBoat
|
|
2170
|
+
- IconCarTaxi
|
|
2168
2171
|
- IconSteeringWheel1
|
|
2169
2172
|
|
|
2170
2173
|
### Vehicles & Aircrafts
|
package/filtered-icons.json
CHANGED
|
@@ -5782,6 +5782,20 @@
|
|
|
5782
5782
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
5783
5783
|
"componentName": "IconCarFrontView"
|
|
5784
5784
|
},
|
|
5785
|
+
{
|
|
5786
|
+
"category": "Vehicles",
|
|
5787
|
+
"svg": "<path d=\"M3 19V11L7 5H17L21 11V19H17V17H7V19H3Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M2 10H3.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M20.5 10H22\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 13H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 13H18\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 5V3L14 3V5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linejoin=\"round\"/>",
|
|
5788
|
+
"iconName": "car-taxi, uber",
|
|
5789
|
+
"variant": {
|
|
5790
|
+
"join": "round",
|
|
5791
|
+
"filled": "off",
|
|
5792
|
+
"radius": "0",
|
|
5793
|
+
"stroke": "2"
|
|
5794
|
+
},
|
|
5795
|
+
"createdAt": "2026-04-24T15:01:54.4139+00:00",
|
|
5796
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
5797
|
+
"componentName": "IconCarTaxi"
|
|
5798
|
+
},
|
|
5785
5799
|
{
|
|
5786
5800
|
"category": "Layout",
|
|
5787
5801
|
"svg": "<path d=\"M17 4H7V20H17V4Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 6H21V18H17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 18H3V6H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -13622,6 +13636,20 @@
|
|
|
13622
13636
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
13623
13637
|
"componentName": "IconHeartDonation"
|
|
13624
13638
|
},
|
|
13639
|
+
{
|
|
13640
|
+
"category": "Things",
|
|
13641
|
+
"svg": "<path d=\"M12 11L11.6327 5.85751C11.5579 4.8109 10.687 4 9.63776 4H3L3 5C3 6.10457 3.89543 7 5 7H7\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M8 10H5V11C5 12.1046 5.89543 13 7 13H10\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 7H4V8C4 9.10457 4.89543 10 6 10H8\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"11.9969\" cy=\"12.9002\" r=\"1.7\" stroke=\"currentColor\" stroke-width=\"1.7\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 13V15.7984C7 16.2526 6.84544 16.6932 6.56174 17.0478L5 19V20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.1425 17.6327C20.1891 17.5579 21 16.687 21 15.6378V14.5L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
13642
|
+
"iconName": "hermes-helmet",
|
|
13643
|
+
"variant": {
|
|
13644
|
+
"join": "round",
|
|
13645
|
+
"filled": "off",
|
|
13646
|
+
"radius": "0",
|
|
13647
|
+
"stroke": "2"
|
|
13648
|
+
},
|
|
13649
|
+
"createdAt": "2026-04-27T09:01:53.794396+00:00",
|
|
13650
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
13651
|
+
"componentName": "IconHermesHelmet"
|
|
13652
|
+
},
|
|
13625
13653
|
{
|
|
13626
13654
|
"category": "Edit",
|
|
13627
13655
|
"svg": "<path d=\"M11 13H14.0173L20.9999 6L17.9999 3L11 10V13Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12.0003 21.0001C11.5003 21.0001 8.93732 20.1295 6.71782 17.91C3.00784 14.2 2.05809 9.13466 4.5965 6.59626C6.68218 4.51058 10.4738 4.77977 13.8179 7.00007\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17.1066 10C19.9926 13.3312 21.2145 16.7286 19.0002 18.5C17.3414 19.8271 15.2423 18.2924 14.0176 17.1094\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
|
|
@@ -20020,6 +20048,20 @@
|
|
|
20020
20048
|
"packageName": "round-outlined-radius-0-stroke-2",
|
|
20021
20049
|
"componentName": "IconQrCode"
|
|
20022
20050
|
},
|
|
20051
|
+
{
|
|
20052
|
+
"category": "AI & Magic",
|
|
20053
|
+
"svg": "<path d=\"M5 19L10.5 13.5\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M10 19L12 17\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M5 14L7 12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M17.2715 6.24728L15.8561 3.22638C15.7913 3.08824 15.6526 3 15.5 3C15.3474 3 15.2087 3.08824 15.1439 3.22638L13.7285 6.24728C13.6293 6.45904 13.459 6.62933 13.2473 6.72855L10.2264 8.14393C10.0882 8.20866 10 8.34744 10 8.5C10 8.65256 10.0882 8.79134 10.2264 8.85607L13.2473 10.2715C13.459 10.3707 13.6293 10.541 13.7285 10.7527L15.1439 13.7736C15.2087 13.9118 15.3474 14 15.5 14C15.6526 14 15.7913 13.9118 15.8561 13.7736L17.2715 10.7527C17.3707 10.541 17.541 10.3707 17.7527 10.2715L20.7736 8.85607C20.9118 8.79134 21 8.65256 21 8.5C21 8.34744 20.9118 8.20866 20.7736 8.14393L17.7527 6.72855C17.541 6.62933 17.3707 6.45904 17.2715 6.24728Z\" stroke=\"currentColor\" stroke-width=\"1.8\" stroke-linejoin=\"round\"/>",
|
|
20054
|
+
"iconName": "quick-ai, rising",
|
|
20055
|
+
"variant": {
|
|
20056
|
+
"join": "round",
|
|
20057
|
+
"filled": "off",
|
|
20058
|
+
"radius": "0",
|
|
20059
|
+
"stroke": "2"
|
|
20060
|
+
},
|
|
20061
|
+
"createdAt": "2026-04-27T09:01:53.794396+00:00",
|
|
20062
|
+
"packageName": "round-outlined-radius-0-stroke-2",
|
|
20063
|
+
"componentName": "IconQuickAi"
|
|
20064
|
+
},
|
|
20023
20065
|
{
|
|
20024
20066
|
"category": "Interface General",
|
|
20025
20067
|
"svg": "<path d=\"M18 17L21 20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M4.06189 10C4.55399 6.05369 7.92038 3 12 3C16.4183 3 20 6.58172 20 11C20 15.0797 16.9462 18.4461 12.9999 18.9381\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M3.70748 16.1746L7.91802 11.2623C8.24059 10.886 8.85526 11.1579 8.79378 11.6497L8.5 14H10.9129C11.3401 14 11.5705 14.5011 11.2925 14.8254L7.08198 19.7377C6.75941 20.114 6.14474 19.8421 6.20622 19.3503L6.5 17H4.08711C3.65993 17 3.42948 16.4989 3.70748 16.1746Z\" fill=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
|
@@ -412,6 +412,7 @@ export type CentralIconName =
|
|
|
412
412
|
| "IconCar9"
|
|
413
413
|
| "IconCar9Ev"
|
|
414
414
|
| "IconCarFrontView"
|
|
415
|
+
| "IconCarTaxi"
|
|
415
416
|
| "IconCarussel"
|
|
416
417
|
| "IconCash"
|
|
417
418
|
| "IconCat"
|
|
@@ -972,6 +973,7 @@ export type CentralIconName =
|
|
|
972
973
|
| "IconHeart2"
|
|
973
974
|
| "IconHeartBeat"
|
|
974
975
|
| "IconHeartDonation"
|
|
976
|
+
| "IconHermesHelmet"
|
|
975
977
|
| "IconHighlight"
|
|
976
978
|
| "IconHighlights"
|
|
977
979
|
| "IconHistory"
|
|
@@ -1429,6 +1431,7 @@ export type CentralIconName =
|
|
|
1429
1431
|
| "IconPuzzle"
|
|
1430
1432
|
| "IconQm3"
|
|
1431
1433
|
| "IconQrCode"
|
|
1434
|
+
| "IconQuickAi"
|
|
1432
1435
|
| "IconQuickSearch"
|
|
1433
1436
|
| "IconQuora"
|
|
1434
1437
|
| "IconRacingFlag"
|
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/round-outlined-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.214",
|
|
4
4
|
"style": "round-outlined-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-0-stroke-2/IconHome';",
|
|
@@ -11,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": 1976,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
|
-
"count":
|
|
17
|
+
"count": 85,
|
|
18
18
|
"icons": [
|
|
19
19
|
"IconAiSlop",
|
|
20
20
|
"IconAiTokens",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"IconPromptSuggestion",
|
|
69
69
|
"IconPromptTextToImage",
|
|
70
70
|
"IconPromptTextToVideo",
|
|
71
|
+
"IconQuickAi",
|
|
71
72
|
"IconReceiptionBellSparkle",
|
|
72
73
|
"IconRobot",
|
|
73
74
|
"IconRobot2",
|
|
@@ -1824,7 +1825,7 @@
|
|
|
1824
1825
|
]
|
|
1825
1826
|
},
|
|
1826
1827
|
"Things": {
|
|
1827
|
-
"count":
|
|
1828
|
+
"count": 140,
|
|
1828
1829
|
"icons": [
|
|
1829
1830
|
"IconAnvil",
|
|
1830
1831
|
"IconApps",
|
|
@@ -1884,6 +1885,7 @@
|
|
|
1884
1885
|
"IconGoldMedal",
|
|
1885
1886
|
"IconGraduateCap",
|
|
1886
1887
|
"IconGraduateCap2",
|
|
1888
|
+
"IconHermesHelmet",
|
|
1887
1889
|
"IconInfinity",
|
|
1888
1890
|
"IconInjection",
|
|
1889
1891
|
"IconJudgeGavel",
|
|
@@ -2101,8 +2103,8 @@
|
|
|
2101
2103
|
]
|
|
2102
2104
|
},
|
|
2103
2105
|
"Vehicles": {
|
|
2104
|
-
"count":
|
|
2105
|
-
"icons": ["IconBoat", "IconSteeringWheel1"]
|
|
2106
|
+
"count": 3,
|
|
2107
|
+
"icons": ["IconBoat", "IconCarTaxi", "IconSteeringWheel1"]
|
|
2106
2108
|
},
|
|
2107
2109
|
"Vehicles & Aircrafts": {
|
|
2108
2110
|
"count": 35,
|
|
@@ -2588,6 +2590,7 @@
|
|
|
2588
2590
|
"IconCar9": "car-9, van",
|
|
2589
2591
|
"IconCar9Ev": "car-9-ev, van",
|
|
2590
2592
|
"IconCarFrontView": "car-front-view",
|
|
2593
|
+
"IconCarTaxi": "car-taxi, uber",
|
|
2591
2594
|
"IconCarussel": "carussel, slides",
|
|
2592
2595
|
"IconCash": "cash",
|
|
2593
2596
|
"IconCat": "cat, image, animal, cute",
|
|
@@ -3148,6 +3151,7 @@
|
|
|
3148
3151
|
"IconHeart2": "heart-2, like, health, life, fav",
|
|
3149
3152
|
"IconHeartBeat": "heart-beat, heart rate, pulse",
|
|
3150
3153
|
"IconHeartDonation": "heart-donation, dollar",
|
|
3154
|
+
"IconHermesHelmet": "hermes-helmet",
|
|
3151
3155
|
"IconHighlight": "highlight, mark, freehand, drawing, paint",
|
|
3152
3156
|
"IconHighlights": "highlights",
|
|
3153
3157
|
"IconHistory": "history, back, timeline",
|
|
@@ -3605,6 +3609,7 @@
|
|
|
3605
3609
|
"IconPuzzle": "puzzle, plugin",
|
|
3606
3610
|
"IconQm3": "qm3, room, transform, xyz, 3d",
|
|
3607
3611
|
"IconQrCode": "qr-code, barcode, scan",
|
|
3612
|
+
"IconQuickAi": "quick-ai, rising",
|
|
3608
3613
|
"IconQuickSearch": "quick-search, quick-menu, command-k",
|
|
3609
3614
|
"IconQuora": "quora",
|
|
3610
3615
|
"IconRacingFlag": "racing-flag, target",
|
package/index.d.ts
CHANGED
|
@@ -411,6 +411,7 @@ export { IconCar8Ev, default as IconCar8EvDefault } from "./IconCar8Ev";
|
|
|
411
411
|
export { IconCar9, default as IconCar9Default } from "./IconCar9";
|
|
412
412
|
export { IconCar9Ev, default as IconCar9EvDefault } from "./IconCar9Ev";
|
|
413
413
|
export { IconCarFrontView, default as IconCarFrontViewDefault, } from "./IconCarFrontView";
|
|
414
|
+
export { IconCarTaxi, default as IconCarTaxiDefault } from "./IconCarTaxi";
|
|
414
415
|
export { IconCarussel, default as IconCarusselDefault } from "./IconCarussel";
|
|
415
416
|
export { IconCash, default as IconCashDefault } from "./IconCash";
|
|
416
417
|
export { IconCat, default as IconCatDefault } from "./IconCat";
|
|
@@ -971,6 +972,7 @@ export { IconHeart, default as IconHeartDefault } from "./IconHeart";
|
|
|
971
972
|
export { IconHeart2, default as IconHeart2Default } from "./IconHeart2";
|
|
972
973
|
export { IconHeartBeat, default as IconHeartBeatDefault, } from "./IconHeartBeat";
|
|
973
974
|
export { IconHeartDonation, default as IconHeartDonationDefault, } from "./IconHeartDonation";
|
|
975
|
+
export { IconHermesHelmet, default as IconHermesHelmetDefault, } from "./IconHermesHelmet";
|
|
974
976
|
export { IconHighlight, default as IconHighlightDefault, } from "./IconHighlight";
|
|
975
977
|
export { IconHighlights, default as IconHighlightsDefault, } from "./IconHighlights";
|
|
976
978
|
export { IconHistory, default as IconHistoryDefault } from "./IconHistory";
|
|
@@ -1428,6 +1430,7 @@ export { IconPushTheButton, default as IconPushTheButtonDefault, } from "./IconP
|
|
|
1428
1430
|
export { IconPuzzle, default as IconPuzzleDefault } from "./IconPuzzle";
|
|
1429
1431
|
export { IconQm3, default as IconQm3Default } from "./IconQm3";
|
|
1430
1432
|
export { IconQrCode, default as IconQrCodeDefault } from "./IconQrCode";
|
|
1433
|
+
export { IconQuickAi, default as IconQuickAiDefault } from "./IconQuickAi";
|
|
1431
1434
|
export { IconQuickSearch, default as IconQuickSearchDefault, } from "./IconQuickSearch";
|
|
1432
1435
|
export { IconQuora, default as IconQuoraDefault } from "./IconQuora";
|
|
1433
1436
|
export { IconRacingFlag, default as IconRacingFlagDefault, } from "./IconRacingFlag";
|