@central-icons-react-native/round-outlined-radius-2-stroke-2 1.1.213 → 1.1.215

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCard: FC<CentralIconBaseProps>;
4
+ export default IconCard;
@@ -0,0 +1,2 @@
1
+ "use strict";var l=Object.create;var s=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var h=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var B=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0})},i=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let C of f(o))!x.call(r,C)&&C!==e&&s(r,C,{get:()=>o[C],enumerable:!(p=m(o,C))||p.enumerable});return r};var d=(r,o,e)=>(e=r!=null?l(h(r)):{},i(o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e,r)),I=r=>i(s({},"__esModule",{value:!0}),r);var P={};B(P,{IconCard:()=>k,default:()=>L});module.exports=I(P);var n=d(require("react"));var u=d(require("react")),a=require("react-native-svg"),c=({children:r,size:o=24,...e})=>u.default.createElement(a.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"),k=r=>n.default.createElement(c,{...r},n.default.createElement(t.Path,{d:"M5 6.2C5 5.07989 5 4.51984 5.21799 4.09202C5.40973 3.71569 5.71569 3.40973 6.09202 3.21799C6.51984 3 7.07989 3 8.2 3H15.8C16.9201 3 17.4802 3 17.908 3.21799C18.2843 3.40973 18.5903 3.71569 18.782 4.09202C19 4.51984 19 5.0799 19 6.2V17.8C19 18.9201 19 19.4802 18.782 19.908C18.5903 20.2843 18.2843 20.5903 17.908 20.782C17.4802 21 16.9201 21 15.8 21H8.2C7.07989 21 6.51984 21 6.09202 20.782C5.71569 20.5903 5.40973 20.2843 5.21799 19.908C5 19.4802 5 18.9201 5 17.8V6.2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Circle,{cx:"12",cy:"9",r:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),L=k;0&&(module.exports={IconCard});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCard/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 IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 6.2C5 5.07989 5 4.51984 5.21799 4.09202C5.40973 3.71569 5.71569 3.40973 6.09202 3.21799C6.51984 3 7.07989 3 8.2 3H15.8C16.9201 3 17.4802 3 17.908 3.21799C18.2843 3.40973 18.5903 3.71569 18.782 4.09202C19 4.51984 19 5.0799 19 6.2V17.8C19 18.9201 19 19.4802 18.782 19.908C18.5903 20.2843 18.2843 20.5903 17.908 20.782C17.4802 21 16.9201 21 15.8 21H8.2C7.07989 21 6.51984 21 6.09202 20.782C5.71569 20.5903 5.40973 20.2843 5.21799 19.908C5 19.4802 5 18.9201 5 17.8V6.2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 17H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\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,cAAAE,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,EAAsCC,GAE/C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,udACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,UACC,GAAG,KACH,GAAG,IACH,EAAE,IACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGE,EAAQJ","names":["IconCard_exports","__export","IconCard","IconCard_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconCard","props","React","CentralIconBase","IconCard_default"]}
@@ -0,0 +1,2 @@
1
+ import o from"react";import s from"react";import{Svg as p}from"react-native-svg";var t=({children:e,size:r=24,...C})=>s.createElement(p,{...C,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 i,Path as n}from"react-native-svg";var d=e=>o.createElement(t,{...e},o.createElement(n,{d:"M5 6.2C5 5.07989 5 4.51984 5.21799 4.09202C5.40973 3.71569 5.71569 3.40973 6.09202 3.21799C6.51984 3 7.07989 3 8.2 3H15.8C16.9201 3 17.4802 3 17.908 3.21799C18.2843 3.40973 18.5903 3.71569 18.782 4.09202C19 4.51984 19 5.0799 19 6.2V17.8C19 18.9201 19 19.4802 18.782 19.908C18.5903 20.2843 18.2843 20.5903 17.908 20.782C17.4802 21 16.9201 21 15.8 21H8.2C7.07989 21 6.51984 21 6.09202 20.782C5.71569 20.5903 5.40973 20.2843 5.21799 19.908C5 19.4802 5 18.9201 5 17.8V6.2Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(i,{cx:"12",cy:"9",r:"2",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M9 14H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(n,{d:"M9 17H15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),B=d;export{d as IconCard,B as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconCard/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 IconCard: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M5 6.2C5 5.07989 5 4.51984 5.21799 4.09202C5.40973 3.71569 5.71569 3.40973 6.09202 3.21799C6.51984 3 7.07989 3 8.2 3H15.8C16.9201 3 17.4802 3 17.908 3.21799C18.2843 3.40973 18.5903 3.71569 18.782 4.09202C19 4.51984 19 5.0799 19 6.2V17.8C19 18.9201 19 19.4802 18.782 19.908C18.5903 20.2843 18.2843 20.5903 17.908 20.782C17.4802 21 16.9201 21 15.8 21H8.2C7.07989 21 6.51984 21 6.09202 20.782C5.71569 20.5903 5.40973 20.2843 5.21799 19.908C5 19.4802 5 18.9201 5 17.8V6.2Z\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Circle\n cx=\"12\"\n cy=\"9\"\n r=\"2\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 14H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 17H15\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCard;\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,EAAsCC,GAE/CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,udACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACJ,EAAA,CACC,GAAG,KACH,GAAG,IACH,EAAE,IACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAI,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,WACF,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QACjB,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconCard","props","React","CentralIconBase","IconCard_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHermesHelmet: FC<CentralIconBaseProps>;
4
+ export default IconHermesHelmet;
@@ -0,0 +1,2 @@
1
+ "use strict";var a=Object.create;var C=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)C(r,e,{get:o[e],enumerable:!0})},p=(r,o,e,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of L(o))!f.call(r,s)&&s!==e&&C(r,s,{get:()=>o[s],enumerable:!(i=m(o,s))||i.enumerable});return r};var d=(r,o,e)=>(e=r!=null?a(H(r)):{},p(o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>p(C({},"__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.16223 18.7972C5.05721 18.9285 5 19.0916 5 19.2597C5 19.6686 5.33145 20 5.74031 20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.2014 17.6285C20.2148 17.5561 21 16.7128 21 15.6968C21 14.9633 20.5856 14.2928 19.9295 13.9648L19 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.16223 18.7972C5.05721 18.9285 5 19.0916 5 19.2597C5 19.6686 5.33145 20 5.74031 20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.2014 17.6285C20.2148 17.5561 21 16.7128 21 15.6968C21 14.9633 20.5856 14.2928 19.9295 13.9648L19 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,iYACF,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 C from"react";import{Svg as i}from"react-native-svg";var t=({children:n,size:r=24,...s})=>C.createElement(i,{...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 p,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(p,{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.16223 18.7972C5.05721 18.9285 5 19.0916 5 19.2597C5 19.6686 5.33145 20 5.74031 20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.2014 17.6285C20.2148 17.5561 21 16.7128 21 15.6968C21 14.9633 20.5856 14.2928 19.9295 13.9648L19 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.16223 18.7972C5.05721 18.9285 5 19.0916 5 19.2597C5 19.6686 5.33145 20 5.74031 20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.2014 17.6285C20.2148 17.5561 21 16.7128 21 15.6968C21 14.9633 20.5856 14.2928 19.9295 13.9648L19 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,iYACF,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,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconQuickAi: FC<CentralIconBaseProps>;
4
+ export default IconQuickAi;
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.create;var p=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var k=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})},a=(r,o,t,s)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of k(o))!h.call(r,n)&&n!==t&&p(r,n,{get:()=>o[n],enumerable:!(s=m(o,n))||s.enumerable});return r};var i=(r,o,t)=>(t=r!=null?d(f(r)):{},a(o||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t,r)),I=r=>a(p({},"__esModule",{value:!0}),r);var P={};B(P,{IconQuickAi:()=>L,default:()=>x});module.exports=I(P);var e=i(require("react"));var c=i(require("react")),l=require("react-native-svg"),u=({children:r,size:o=24,...t})=>c.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"),L=r=>e.default.createElement(u,{...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.1059 5.74536L16.2474 3.51334C16.1285 3.20407 15.8314 3 15.5 3C15.1686 3 14.8715 3.20407 14.7526 3.51334L13.8941 5.74536C13.6909 6.27354 13.2735 6.69094 12.7454 6.89409L10.5133 7.75256C10.2041 7.87151 10 8.16864 10 8.5C10 8.83136 10.2041 9.12849 10.5133 9.24744L12.7454 10.1059C13.2735 10.3091 13.6909 10.7265 13.8941 11.2546L14.7526 13.4867C14.8715 13.7959 15.1686 14 15.5 14C15.8314 14 16.1285 13.7959 16.2474 13.4867L17.1059 11.2546C17.3091 10.7265 17.7265 10.3091 18.2546 10.1059L20.4867 9.24744C20.7959 9.12849 21 8.83136 21 8.5C21 8.16864 20.7959 7.87151 20.4867 7.75256L18.2546 6.89409C17.7265 6.69094 17.3091 6.27354 17.1059 5.74536Z",stroke:"currentColor",strokeWidth:"1.8"})),x=L;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.1059 5.74536L16.2474 3.51334C16.1285 3.20407 15.8314 3 15.5 3C15.1686 3 14.8715 3.20407 14.7526 3.51334L13.8941 5.74536C13.6909 6.27354 13.2735 6.69094 12.7454 6.89409L10.5133 7.75256C10.2041 7.87151 10 8.16864 10 8.5C10 8.83136 10.2041 9.12849 10.5133 9.24744L12.7454 10.1059C13.2735 10.3091 13.6909 10.7265 13.8941 11.2546L14.7526 13.4867C14.8715 13.7959 15.1686 14 15.5 14C15.8314 14 16.1285 13.7959 16.2474 13.4867L17.1059 11.2546C17.3091 10.7265 17.7265 10.3091 18.2546 10.1059L20.4867 9.24744C20.7959 9.12849 21 8.83136 21 8.5C21 8.16864 20.7959 7.87151 20.4867 7.75256L18.2546 6.89409C17.7265 6.69094 17.3091 6.27354 17.1059 5.74536Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\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,uoBACF,OAAO,eACP,YAAY,MACd,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 a=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.1059 5.74536L16.2474 3.51334C16.1285 3.20407 15.8314 3 15.5 3C15.1686 3 14.8715 3.20407 14.7526 3.51334L13.8941 5.74536C13.6909 6.27354 13.2735 6.69094 12.7454 6.89409L10.5133 7.75256C10.2041 7.87151 10 8.16864 10 8.5C10 8.83136 10.2041 9.12849 10.5133 9.24744L12.7454 10.1059C13.2735 10.3091 13.6909 10.7265 13.8941 11.2546L14.7526 13.4867C14.8715 13.7959 15.1686 14 15.5 14C15.8314 14 16.1285 13.7959 16.2474 13.4867L17.1059 11.2546C17.3091 10.7265 17.7265 10.3091 18.2546 10.1059L20.4867 9.24744C20.7959 9.12849 21 8.83136 21 8.5C21 8.16864 20.7959 7.87151 20.4867 7.75256L18.2546 6.89409C17.7265 6.69094 17.3091 6.27354 17.1059 5.74536Z",stroke:"currentColor",strokeWidth:"1.8"})),h=a;export{a 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.1059 5.74536L16.2474 3.51334C16.1285 3.20407 15.8314 3 15.5 3C15.1686 3 14.8715 3.20407 14.7526 3.51334L13.8941 5.74536C13.6909 6.27354 13.2735 6.69094 12.7454 6.89409L10.5133 7.75256C10.2041 7.87151 10 8.16864 10 8.5C10 8.83136 10.2041 9.12849 10.5133 9.24744L12.7454 10.1059C13.2735 10.3091 13.6909 10.7265 13.8941 11.2546L14.7526 13.4867C14.8715 13.7959 15.1686 14 15.5 14C15.8314 14 16.1285 13.7959 16.2474 13.4867L17.1059 11.2546C17.3091 10.7265 17.7265 10.3091 18.2546 10.1059L20.4867 9.24744C20.7959 9.12849 21 8.83136 21 8.5C21 8.16864 20.7959 7.87151 20.4867 7.75256L18.2546 6.89409C17.7265 6.69094 17.3091 6.27354 17.1059 5.74536Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.8\"\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,uoBACF,OAAO,eACP,YAAY,MACd,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
@@ -1084,6 +1085,7 @@ Below is a complete list of available icons:
1084
1085
  - IconBrokenHeart
1085
1086
  - IconBrowserTabs
1086
1087
  - IconBucket
1088
+ - IconCard
1087
1089
  - IconChainLink1
1088
1090
  - IconChainLink2
1089
1091
  - IconChainLink3
@@ -1951,6 +1953,7 @@ Below is a complete list of available icons:
1951
1953
  - IconGoldMedal
1952
1954
  - IconGraduateCap
1953
1955
  - IconGraduateCap2
1956
+ - IconHermesHelmet
1954
1957
  - IconInfinity
1955
1958
  - IconInjection
1956
1959
  - IconJudgeGavel
@@ -5768,6 +5768,20 @@
5768
5768
  "packageName": "round-outlined-radius-2-stroke-2",
5769
5769
  "componentName": "IconCar9Ev"
5770
5770
  },
5771
+ {
5772
+ "category": "Interface General",
5773
+ "svg": "<path d=\"M5 6.2C5 5.07989 5 4.51984 5.21799 4.09202C5.40973 3.71569 5.71569 3.40973 6.09202 3.21799C6.51984 3 7.07989 3 8.2 3H15.8C16.9201 3 17.4802 3 17.908 3.21799C18.2843 3.40973 18.5903 3.71569 18.782 4.09202C19 4.51984 19 5.0799 19 6.2V17.8C19 18.9201 19 19.4802 18.782 19.908C18.5903 20.2843 18.2843 20.5903 17.908 20.782C17.4802 21 16.9201 21 15.8 21H8.2C7.07989 21 6.51984 21 6.09202 20.782C5.71569 20.5903 5.40973 20.2843 5.21799 19.908C5 19.4802 5 18.9201 5 17.8V6.2Z\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"9\" r=\"2\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 14H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 17H15\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
5774
+ "iconName": "card, profile, avatar, account",
5775
+ "variant": {
5776
+ "join": "round",
5777
+ "filled": "off",
5778
+ "radius": "2",
5779
+ "stroke": "2"
5780
+ },
5781
+ "createdAt": "2026-04-27T10:02:27.997505+00:00",
5782
+ "packageName": "round-outlined-radius-2-stroke-2",
5783
+ "componentName": "IconCard"
5784
+ },
5771
5785
  {
5772
5786
  "category": "Vehicles & Aircrafts",
5773
5787
  "svg": "<path d=\"M3 18V11.6056C3 11.2107 3.11688 10.8247 3.3359 10.4962L6.40627 5.8906C6.7772 5.3342 7.40166 5 8.07037 5H15.9296C16.5983 5 17.2228 5.3342 17.5937 5.8906L20.6641 10.4962C20.8831 10.8247 21 11.2107 21 11.6056V18C21 18.5523 20.5523 19 20 19H18C17.4477 19 17 18.5523 17 18V17H7V18C7 18.5523 6.55228 19 6 19H4C3.44772 19 3 18.5523 3 18Z\" 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\"/>",
@@ -13636,6 +13650,20 @@
13636
13650
  "packageName": "round-outlined-radius-2-stroke-2",
13637
13651
  "componentName": "IconHeartDonation"
13638
13652
  },
13653
+ {
13654
+ "category": "Things",
13655
+ "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.16223 18.7972C5.05721 18.9285 5 19.0916 5 19.2597C5 19.6686 5.33145 20 5.74031 20H8.32988C9.75198 20 11.1495 19.6289 12.3842 18.9233C13.4478 18.3156 14.6344 17.9547 15.8563 17.8674L19.2014 17.6285C20.2148 17.5561 21 16.7128 21 15.6968C21 14.9633 20.5856 14.2928 19.9295 13.9648L19 13.5C18.7168 10.3851 16.1051 8 12.9773 8H12\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
13656
+ "iconName": "hermes-helmet",
13657
+ "variant": {
13658
+ "join": "round",
13659
+ "filled": "off",
13660
+ "radius": "2",
13661
+ "stroke": "2"
13662
+ },
13663
+ "createdAt": "2026-04-27T09:01:53.794396+00:00",
13664
+ "packageName": "round-outlined-radius-2-stroke-2",
13665
+ "componentName": "IconHermesHelmet"
13666
+ },
13639
13667
  {
13640
13668
  "category": "Edit",
13641
13669
  "svg": "<path d=\"M11 13H13.1874C13.7187 13 14.2282 12.7886 14.6034 12.4125L19.5892 7.41421C20.3686 6.63288 20.3678 5.36791 19.5875 4.58755L19.4142 4.41422C18.6331 3.63317 17.3668 3.63317 16.5857 4.41423L11.5858 9.41422C11.2107 9.7893 11 10.298 11 10.8284V13Z\" 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\"/>",
@@ -20034,6 +20062,20 @@
20034
20062
  "packageName": "round-outlined-radius-2-stroke-2",
20035
20063
  "componentName": "IconQrCode"
20036
20064
  },
20065
+ {
20066
+ "category": "AI & Magic",
20067
+ "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.1059 5.74536L16.2474 3.51334C16.1285 3.20407 15.8314 3 15.5 3C15.1686 3 14.8715 3.20407 14.7526 3.51334L13.8941 5.74536C13.6909 6.27354 13.2735 6.69094 12.7454 6.89409L10.5133 7.75256C10.2041 7.87151 10 8.16864 10 8.5C10 8.83136 10.2041 9.12849 10.5133 9.24744L12.7454 10.1059C13.2735 10.3091 13.6909 10.7265 13.8941 11.2546L14.7526 13.4867C14.8715 13.7959 15.1686 14 15.5 14C15.8314 14 16.1285 13.7959 16.2474 13.4867L17.1059 11.2546C17.3091 10.7265 17.7265 10.3091 18.2546 10.1059L20.4867 9.24744C20.7959 9.12849 21 8.83136 21 8.5C21 8.16864 20.7959 7.87151 20.4867 7.75256L18.2546 6.89409C17.7265 6.69094 17.3091 6.27354 17.1059 5.74536Z\" stroke=\"currentColor\" stroke-width=\"1.8\"/>",
20068
+ "iconName": "quick-ai, rising",
20069
+ "variant": {
20070
+ "join": "round",
20071
+ "filled": "off",
20072
+ "radius": "2",
20073
+ "stroke": "2"
20074
+ },
20075
+ "createdAt": "2026-04-27T09:01:53.794396+00:00",
20076
+ "packageName": "round-outlined-radius-2-stroke-2",
20077
+ "componentName": "IconQuickAi"
20078
+ },
20037
20079
  {
20038
20080
  "category": "Interface General",
20039
20081
  "svg": "<path d=\"M18 17L21 20\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M4.06201 10C4.55411 6.05369 7.9205 3 12.0001 3C16.4184 3 20.0001 6.58172 20.0001 11C20.0001 15.0797 16.9464 18.4461 13 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
@@ -411,6 +411,7 @@ export type CentralIconName =
411
411
  | "IconCar8Ev"
412
412
  | "IconCar9"
413
413
  | "IconCar9Ev"
414
+ | "IconCard"
414
415
  | "IconCarFrontView"
415
416
  | "IconCarTaxi"
416
417
  | "IconCarussel"
@@ -973,6 +974,7 @@ export type CentralIconName =
973
974
  | "IconHeart2"
974
975
  | "IconHeartBeat"
975
976
  | "IconHeartDonation"
977
+ | "IconHermesHelmet"
976
978
  | "IconHighlight"
977
979
  | "IconHighlights"
978
980
  | "IconHistory"
@@ -1430,6 +1432,7 @@ export type CentralIconName =
1430
1432
  | "IconPuzzle"
1431
1433
  | "IconQm3"
1432
1434
  | "IconQrCode"
1435
+ | "IconQuickAi"
1433
1436
  | "IconQuickSearch"
1434
1437
  | "IconQuora"
1435
1438
  | "IconRacingFlag"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-outlined-radius-2-stroke-2",
3
- "version": "1.1.213",
3
+ "version": "1.1.215",
4
4
  "style": "round-outlined-radius-2-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-outlined-radius-2-stroke-2/IconHome';",
@@ -11,10 +11,10 @@
11
11
  "withProps": "<IconHome size={32} color=\"#007AFF\" />",
12
12
  "central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
13
13
  },
14
- "totalIcons": 1974,
14
+ "totalIcons": 1977,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 84,
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",
@@ -950,7 +951,7 @@
950
951
  ]
951
952
  },
952
953
  "Interface General": {
953
- "count": 198,
954
+ "count": 199,
954
955
  "icons": [
955
956
  "IconAnchor1",
956
957
  "IconAnchor2",
@@ -991,6 +992,7 @@
991
992
  "IconBrokenHeart",
992
993
  "IconBrowserTabs",
993
994
  "IconBucket",
995
+ "IconCard",
994
996
  "IconChainLink1",
995
997
  "IconChainLink2",
996
998
  "IconChainLink3",
@@ -1824,7 +1826,7 @@
1824
1826
  ]
1825
1827
  },
1826
1828
  "Things": {
1827
- "count": 139,
1829
+ "count": 140,
1828
1830
  "icons": [
1829
1831
  "IconAnvil",
1830
1832
  "IconApps",
@@ -1884,6 +1886,7 @@
1884
1886
  "IconGoldMedal",
1885
1887
  "IconGraduateCap",
1886
1888
  "IconGraduateCap2",
1889
+ "IconHermesHelmet",
1887
1890
  "IconInfinity",
1888
1891
  "IconInjection",
1889
1892
  "IconJudgeGavel",
@@ -2587,6 +2590,7 @@
2587
2590
  "IconCar8Ev": "car-8-ev, mini-van",
2588
2591
  "IconCar9": "car-9, van",
2589
2592
  "IconCar9Ev": "car-9-ev, van",
2593
+ "IconCard": "card, profile, avatar, account",
2590
2594
  "IconCarFrontView": "car-front-view",
2591
2595
  "IconCarTaxi": "car-taxi, uber",
2592
2596
  "IconCarussel": "carussel, slides",
@@ -3149,6 +3153,7 @@
3149
3153
  "IconHeart2": "heart-2, like, health, life, fav",
3150
3154
  "IconHeartBeat": "heart-beat, heart rate, pulse",
3151
3155
  "IconHeartDonation": "heart-donation, dollar",
3156
+ "IconHermesHelmet": "hermes-helmet",
3152
3157
  "IconHighlight": "highlight, mark, freehand, drawing, paint",
3153
3158
  "IconHighlights": "highlights",
3154
3159
  "IconHistory": "history, back, timeline",
@@ -3606,6 +3611,7 @@
3606
3611
  "IconPuzzle": "puzzle, plugin",
3607
3612
  "IconQm3": "qm3, room, transform, xyz, 3d",
3608
3613
  "IconQrCode": "qr-code, barcode, scan",
3614
+ "IconQuickAi": "quick-ai, rising",
3609
3615
  "IconQuickSearch": "quick-search, quick-menu, command-k",
3610
3616
  "IconQuora": "quora",
3611
3617
  "IconRacingFlag": "racing-flag, target",
package/index.d.ts CHANGED
@@ -412,6 +412,7 @@ 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
414
  export { IconCarTaxi, default as IconCarTaxiDefault } from "./IconCarTaxi";
415
+ export { IconCard, default as IconCardDefault } from "./IconCard";
415
416
  export { IconCarussel, default as IconCarusselDefault } from "./IconCarussel";
416
417
  export { IconCash, default as IconCashDefault } from "./IconCash";
417
418
  export { IconCat, default as IconCatDefault } from "./IconCat";
@@ -972,6 +973,7 @@ export { IconHeart, default as IconHeartDefault } from "./IconHeart";
972
973
  export { IconHeart2, default as IconHeart2Default } from "./IconHeart2";
973
974
  export { IconHeartBeat, default as IconHeartBeatDefault, } from "./IconHeartBeat";
974
975
  export { IconHeartDonation, default as IconHeartDonationDefault, } from "./IconHeartDonation";
976
+ export { IconHermesHelmet, default as IconHermesHelmetDefault, } from "./IconHermesHelmet";
975
977
  export { IconHighlight, default as IconHighlightDefault, } from "./IconHighlight";
976
978
  export { IconHighlights, default as IconHighlightsDefault, } from "./IconHighlights";
977
979
  export { IconHistory, default as IconHistoryDefault } from "./IconHistory";
@@ -1429,6 +1431,7 @@ export { IconPushTheButton, default as IconPushTheButtonDefault, } from "./IconP
1429
1431
  export { IconPuzzle, default as IconPuzzleDefault } from "./IconPuzzle";
1430
1432
  export { IconQm3, default as IconQm3Default } from "./IconQm3";
1431
1433
  export { IconQrCode, default as IconQrCodeDefault } from "./IconQrCode";
1434
+ export { IconQuickAi, default as IconQuickAiDefault } from "./IconQuickAi";
1432
1435
  export { IconQuickSearch, default as IconQuickSearchDefault, } from "./IconQuickSearch";
1433
1436
  export { IconQuora, default as IconQuoraDefault } from "./IconQuora";
1434
1437
  export { IconRacingFlag, default as IconRacingFlagDefault, } from "./IconRacingFlag";