@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.80 → 1.1.81

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.
@@ -1,4 +1,4 @@
1
1
  import { FC } from "react";
2
2
  import { type CentralIconBaseProps } from "../CentralIconBase";
3
- export declare const IconEmojiAlt: FC<CentralIconBaseProps>;
4
- export default IconEmojiAlt;
3
+ export declare const IconAiTokens: FC<CentralIconBaseProps>;
4
+ export default IconAiTokens;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of I(r))!d.call(o,n)&&n!==e&&t(o,n,{get:()=>r[n],enumerable:!(p=B(r,n))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(L(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),x=o=>l(t({},"__esModule",{value:!0}),o);var g={};v(g,{IconAiTokens:()=>i,default:()=>P});module.exports=x(g);var C=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>C.default.createElement(c,{...o},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z",fill:"currentColor"})),P=i;0&&(module.exports={IconAiTokens});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAiTokens/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 IconAiTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAiTokens;\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,SAAS,UACT,SAAS,UACT,EAAE,4wBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconAiTokens_exports","__export","IconAiTokens","IconAiTokens_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconAiTokens","props","React","CentralIconBase","IconAiTokens_default"]}
@@ -0,0 +1,2 @@
1
+ import n from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>C.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>n.createElement(e,{...r},n.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z",fill:"currentColor"})),d=a;export{a as IconAiTokens,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconAiTokens/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 IconAiTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAiTokens;\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,SAAS,UACT,SAAS,UACT,EAAE,4wBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconAiTokens","props","React","CentralIconBase","IconAiTokens_default"]}
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconBrowserTabs: FC<CentralIconBaseProps>;
4
+ export default IconBrowserTabs;
@@ -0,0 +1,2 @@
1
+ "use strict";var u=Object.create;var n=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var H=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var v=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},l=(r,o,e,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of H(o))!d.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(p=B(o,t))||p.enumerable});return r};var a=(r,o,e)=>(e=r!=null?u(I(r)):{},l(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>l(n({},"__esModule",{value:!0}),r);var g={};v(g,{IconBrowserTabs:()=>i,default:()=>P});module.exports=x(g);var C=a(require("react"));var s=a(require("react")),m=require("react-native-svg"),c=({children:r,size:o=24,...e})=>s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM6 7C5.44772 7 5 7.44772 5 8C5 8.55228 5.44772 9 6 9H11C11.5523 9 12 8.55228 12 8C12 7.44772 11.5523 7 11 7H6ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H14.5C15.0523 9 15.5 8.55228 15.5 8C15.5 7.44772 15.0523 7 14.5 7H14ZM17.5 7C16.9477 7 16.5 7.44772 16.5 8C16.5 8.55228 16.9477 9 17.5 9H18C18.5523 9 19 8.55228 19 8C19 7.44772 18.5523 7 18 7H17.5Z",fill:"currentColor"})),P=i;0&&(module.exports={IconBrowserTabs});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBrowserTabs/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 IconBrowserTabs: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM6 7C5.44772 7 5 7.44772 5 8C5 8.55228 5.44772 9 6 9H11C11.5523 9 12 8.55228 12 8C12 7.44772 11.5523 7 11 7H6ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H14.5C15.0523 9 15.5 8.55228 15.5 8C15.5 7.44772 15.0523 7 14.5 7H14ZM17.5 7C16.9477 7 16.5 7.44772 16.5 8C16.5 8.55228 16.9477 9 17.5 9H18C18.5523 9 19 8.55228 19 8C19 7.44772 18.5523 7 18 7H17.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBrowserTabs;\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,SAAS,UACT,SAAS,UACT,EAAE,ueACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconBrowserTabs_exports","__export","IconBrowserTabs","IconBrowserTabs_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconBrowserTabs","props","React","CentralIconBase","IconBrowserTabs_default"]}
@@ -0,0 +1,2 @@
1
+ import t from"react";import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>C.createElement(p,{...n,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 l}from"react-native-svg";var a=o=>t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM6 7C5.44772 7 5 7.44772 5 8C5 8.55228 5.44772 9 6 9H11C11.5523 9 12 8.55228 12 8C12 7.44772 11.5523 7 11 7H6ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H14.5C15.0523 9 15.5 8.55228 15.5 8C15.5 7.44772 15.0523 7 14.5 7H14ZM17.5 7C16.9477 7 16.5 7.44772 16.5 8C16.5 8.55228 16.9477 9 17.5 9H18C18.5523 9 19 8.55228 19 8C19 7.44772 18.5523 7 18 7H17.5Z",fill:"currentColor"})),d=a;export{a as IconBrowserTabs,d as default};
2
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/IconBrowserTabs/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 IconBrowserTabs: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM6 7C5.44772 7 5 7.44772 5 8C5 8.55228 5.44772 9 6 9H11C11.5523 9 12 8.55228 12 8C12 7.44772 11.5523 7 11 7H6ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H14.5C15.0523 9 15.5 8.55228 15.5 8C15.5 7.44772 15.0523 7 14.5 7H14ZM17.5 7C16.9477 7 16.5 7.44772 16.5 8C16.5 8.55228 16.9477 9 17.5 9H18C18.5523 9 19 8.55228 19 8C19 7.44772 18.5523 7 18 7H17.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconBrowserTabs;\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,SAAS,UACT,SAAS,UACT,EAAE,ueACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconBrowserTabs","props","React","CentralIconBase","IconBrowserTabs_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var d=Object.create;var t=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!v.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=u(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?d(I(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>l(t({},"__esModule",{value:!0}),C);var M={};x(M,{IconEmojiAddReaction:()=>i,default:()=>g});module.exports=P(M);var n=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),s=({children:C,size:o=24,...r})=>m.default.createElement(c.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),i=C=>n.default.createElement(s,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 1C19.5523 1 20 1.44772 20 2V4H22C22.5523 4 23 4.44772 23 5C23 5.55228 22.5523 6 22 6H20V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V6H16C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4H18V2C18 1.44772 18.4477 1 19 1ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5523 2 13 2.44772 13 3C13 3.55228 12.5523 4 12 4ZM8 9.5C8 8.80964 8.55964 8.25 9.25 8.25C9.94036 8.25 10.5 8.80964 10.5 9.5C10.5 10.1904 9.94036 10.75 9.25 10.75C8.55964 10.75 8 10.1904 8 9.5ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07424 14.5118 8.46477 14.1213Z",fill:"currentColor"})),g=i;0&&(module.exports={IconEmojiAddReaction});
1
+ "use strict";var d=Object.create;var n=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)n(C,r,{get:o[r],enumerable:!0})},a=(C,o,r,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!v.call(C,e)&&e!==r&&n(C,e,{get:()=>o[e],enumerable:!(l=u(o,e))||l.enumerable});return C};var m=(C,o,r)=>(r=C!=null?d(I(C)):{},a(o||!C||!C.__esModule?n(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>a(n({},"__esModule",{value:!0}),C);var H={};x(H,{IconEmojiAddReaction:()=>s,default:()=>g});module.exports=P(H);var t=m(require("react"));var c=m(require("react")),f=require("react-native-svg"),i=({children:C,size:o=24,...r})=>c.default.createElement(f.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var p=require("react-native-svg"),s=C=>t.default.createElement(i,{...C},t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C13.2437 2 14.4338 2.22865 15.5322 2.64355C15.2025 3.00014 15 3.47605 15 4C15 5.10457 15.8954 6 17 6H18V7C18 8.10457 18.8954 9 20 9C20.5239 9 20.9989 8.79648 21.3555 8.4668C21.7707 9.56558 22 10.7559 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M20 0C20.5523 0 21 0.447715 21 1V3H23C23.5523 3 24 3.44772 24 4C24 4.55228 23.5523 5 23 5H21V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H17C16.4477 5 16 4.55228 16 4C16 3.44772 16.4477 3 17 3H19V1C19 0.447715 19.4477 0 20 0Z",fill:"currentColor"})),g=s;0&&(module.exports={IconEmojiAddReaction});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconEmojiAddReaction/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 IconEmojiAddReaction: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 1C19.5523 1 20 1.44772 20 2V4H22C22.5523 4 23 4.44772 23 5C23 5.55228 22.5523 6 22 6H20V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V6H16C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4H18V2C18 1.44772 18.4477 1 19 1ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5523 2 13 2.44772 13 3C13 3.55228 12.5523 4 12 4ZM8 9.5C8 8.80964 8.55964 8.25 9.25 8.25C9.94036 8.25 10.5 8.80964 10.5 9.5C10.5 10.1904 9.94036 10.75 9.25 10.75C8.55964 10.75 8 10.1904 8 9.5ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07424 14.5118 8.46477 14.1213Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiAddReaction;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,glCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconEmojiAddReaction_exports","__export","IconEmojiAddReaction","IconEmojiAddReaction_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}
1
+ {"version":3,"sources":["../src/IconEmojiAddReaction/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 IconEmojiAddReaction: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C13.2437 2 14.4338 2.22865 15.5322 2.64355C15.2025 3.00014 15 3.47605 15 4C15 5.10457 15.8954 6 17 6H18V7C18 8.10457 18.8954 9 20 9C20.5239 9 20.9989 8.79648 21.3555 8.4668C21.7707 9.56558 22 10.7559 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 0C20.5523 0 21 0.447715 21 1V3H23C23.5523 3 24 3.44772 24 4C24 4.55228 23.5523 5 23 5H21V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H17C16.4477 5 16 4.55228 16 4C16 3.44772 16.4477 3 17 3H19V1C19 0.447715 19.4477 0 20 0Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiAddReaction;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,0BAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAAkDC,GAE3D,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,g4CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+OACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconEmojiAddReaction_exports","__export","IconEmojiAddReaction","IconEmojiAddReaction_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}
@@ -1,2 +1,2 @@
1
- import e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M19 1C19.5523 1 20 1.44772 20 2V4H22C22.5523 4 23 4.44772 23 5C23 5.55228 22.5523 6 22 6H20V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V6H16C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4H18V2C18 1.44772 18.4477 1 19 1ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5523 2 13 2.44772 13 3C13 3.55228 12.5523 4 12 4ZM8 9.5C8 8.80964 8.55964 8.25 9.25 8.25C9.94036 8.25 10.5 8.80964 10.5 9.5C10.5 10.1904 9.94036 10.75 9.25 10.75C8.55964 10.75 8 10.1904 8 9.5ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07424 14.5118 8.46477 14.1213Z",fill:"currentColor"})),v=a;export{a as IconEmojiAddReaction,v as default};
1
+ import r from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:o,size:C=24,...t})=>p.createElement(l,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as n}from"react-native-svg";var a=o=>r.createElement(e,{...o},r.createElement(n,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C13.2437 2 14.4338 2.22865 15.5322 2.64355C15.2025 3.00014 15 3.47605 15 4C15 5.10457 15.8954 6 17 6H18V7C18 8.10457 18.8954 9 20 9C20.5239 9 20.9989 8.79648 21.3555 8.4668C21.7707 9.56558 22 10.7559 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z",fill:"currentColor"}),r.createElement(n,{d:"M20 0C20.5523 0 21 0.447715 21 1V3H23C23.5523 3 24 3.44772 24 4C24 4.55228 23.5523 5 23 5H21V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H17C16.4477 5 16 4.55228 16 4C16 3.44772 16.4477 3 17 3H19V1C19 0.447715 19.4477 0 20 0Z",fill:"currentColor"})),v=a;export{a as IconEmojiAddReaction,v as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconEmojiAddReaction/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 IconEmojiAddReaction: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19 1C19.5523 1 20 1.44772 20 2V4H22C22.5523 4 23 4.44772 23 5C23 5.55228 22.5523 6 22 6H20V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V6H16C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4H18V2C18 1.44772 18.4477 1 19 1ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5523 2 13 2.44772 13 3C13 3.55228 12.5523 4 12 4ZM8 9.5C8 8.80964 8.55964 8.25 9.25 8.25C9.94036 8.25 10.5 8.80964 10.5 9.5C10.5 10.1904 9.94036 10.75 9.25 10.75C8.55964 10.75 8 10.1904 8 9.5ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07424 14.5118 8.46477 14.1213Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiAddReaction;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,glCACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}
1
+ {"version":3,"sources":["../src/IconEmojiAddReaction/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 IconEmojiAddReaction: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C13.2437 2 14.4338 2.22865 15.5322 2.64355C15.2025 3.00014 15 3.47605 15 4C15 5.10457 15.8954 6 17 6H18V7C18 8.10457 18.8954 9 20 9C20.5239 9 20.9989 8.79648 21.3555 8.4668C21.7707 9.56558 22 10.7559 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M20 0C20.5523 0 21 0.447715 21 1V3H23C23.5523 3 24 3.44772 24 4C24 4.55228 23.5523 5 23 5H21V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H17C16.4477 5 16 4.55228 16 4C16 3.44772 16.4477 3 17 3H19V1C19 0.447715 19.4477 0 20 0Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiAddReaction;\n","import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,g4CACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+OACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}
@@ -1,2 +1,2 @@
1
- "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(o,r)=>{for(var e in r)t(o,e,{get:r[e],enumerable:!0})},l=(o,r,e,p)=>{if(r&&typeof r=="object"||typeof r=="function")for(let C of I(r))!v.call(o,C)&&C!==e&&t(o,C,{get:()=>r[C],enumerable:!(p=B(r,C))||p.enumerable});return o};var a=(o,r,e)=>(e=o!=null?u(d(o)):{},l(r||!o||!o.__esModule?t(e,"default",{value:o,enumerable:!0}):e,o)),P=o=>l(t({},"__esModule",{value:!0}),o);var S={};x(S,{IconEmojiSmile:()=>i,default:()=>g});module.exports=P(S);var n=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:o,size:r=24,...e})=>m.default.createElement(s.Svg,{...e,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);var f=require("react-native-svg"),i=o=>n.default.createElement(c,{...o},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07425 14.5118 8.46477 14.1213ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconEmojiSmile});
1
+ "use strict";var u=Object.create;var t=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var I=Object.getOwnPropertyNames;var d=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var x=(C,o)=>{for(var r in o)t(C,r,{get:o[r],enumerable:!0})},l=(C,o,r,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of I(o))!v.call(C,e)&&e!==r&&t(C,e,{get:()=>o[e],enumerable:!(p=B(o,e))||p.enumerable});return C};var a=(C,o,r)=>(r=C!=null?u(d(C)):{},l(o||!C||!C.__esModule?t(r,"default",{value:C,enumerable:!0}):r,C)),P=C=>l(t({},"__esModule",{value:!0}),C);var S={};x(S,{IconEmojiSmile:()=>i,default:()=>g});module.exports=P(S);var n=a(require("react"));var m=a(require("react")),s=require("react-native-svg"),c=({children:C,size:o=24,...r})=>m.default.createElement(s.Svg,{...r,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},C);var f=require("react-native-svg"),i=C=>n.default.createElement(c,{...C},n.default.createElement(f.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z",fill:"currentColor"})),g=i;0&&(module.exports={IconEmojiSmile});
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconEmojiSmile/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 IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07425 14.5118 8.46477 14.1213ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiSmile;\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,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,0sBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconEmojiSmile_exports","__export","IconEmojiSmile","IconEmojiSmile_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmojiSmile","props","React","CentralIconBase","IconEmojiSmile_default"]}
1
+ {"version":3,"sources":["../src/IconEmojiSmile/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 IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiSmile;\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,EAAqB,4BAERC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,8sCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconEmojiSmile_exports","__export","IconEmojiSmile","IconEmojiSmile_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconEmojiSmile","props","React","CentralIconBase","IconEmojiSmile_default"]}
@@ -1,2 +1,2 @@
1
- import C from"react";import n from"react";import{Svg as p}from"react-native-svg";var e=({children:r,size:o=24,...t})=>n.createElement(p,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);import{Path as l}from"react-native-svg";var a=r=>C.createElement(e,{...r},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07425 14.5118 8.46477 14.1213ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z",fill:"currentColor"})),v=a;export{a as IconEmojiSmile,v as default};
1
+ import e from"react";import n from"react";import{Svg as p}from"react-native-svg";var r=({children:o,size:C=24,...t})=>n.createElement(p,{...t,width:typeof C=="number"?`${C}px`:C,height:typeof C=="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},o);import{Path as l}from"react-native-svg";var a=o=>e.createElement(r,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z",fill:"currentColor"})),v=a;export{a as IconEmojiSmile,v as default};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/IconEmojiSmile/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 IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07425 14.5118 8.46477 14.1213ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiSmile;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,0sBACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiSmile","props","React","CentralIconBase","IconEmojiSmile_default"]}
1
+ {"version":3,"sources":["../src/IconEmojiSmile/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 IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiSmile;\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,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,SAAS,UACT,SAAS,UACT,EAAE,8sCACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiSmile","props","React","CentralIconBase","IconEmojiSmile_default"]}
package/README.md CHANGED
@@ -146,6 +146,7 @@ Below is a complete list of available icons:
146
146
 
147
147
  ### AI & Magic
148
148
 
149
+ - IconAiTokens
149
150
  - IconAiTranslate
150
151
  - IconAppleIntelligenceIcon
151
152
  - IconBag2Sparkle
@@ -694,8 +695,6 @@ Below is a complete list of available icons:
694
695
 
695
696
  - IconAlien
696
697
  - IconEmojiAddReaction
697
- - IconEmojiAlt
698
- - IconEmojiSad
699
698
  - IconEmojiSleep
700
699
  - IconEmojiSmile
701
700
  - IconEmojiSmiley
@@ -958,6 +957,7 @@ Below is a complete list of available icons:
958
957
  - IconBrokenChainLink2
959
958
  - IconBrokenChainLink3
960
959
  - IconBrokenHeart
960
+ - IconBrowserTabs
961
961
  - IconBucket
962
962
  - IconChainLink1
963
963
  - IconChainLink2
@@ -294,6 +294,20 @@
294
294
  "packageName": "round-filled-radius-0-stroke-2",
295
295
  "componentName": "IconAirpods"
296
296
  },
297
+ {
298
+ "category": "AI & Magic",
299
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 6.84863C11.6988 6.84863 11.4284 7.03428 11.3203 7.31543L10.4092 9.68359C10.3076 9.94769 10.0991 10.1562 9.83496 10.2578L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.83496 13.4395C10.0991 13.541 10.3076 13.7496 10.4092 14.0137L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.5908 14.0137C13.6924 13.7496 13.9009 13.541 14.165 13.4395L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.165 10.2578C13.9009 10.1562 13.6924 9.94769 13.5908 9.68359L12.6797 7.31543C12.5716 7.03428 12.3012 6.84863 12 6.84863Z\" fill=\"currentColor\"/>",
300
+ "iconName": "ai-tokens, credits",
301
+ "variant": {
302
+ "join": "round",
303
+ "filled": "on",
304
+ "radius": "0",
305
+ "stroke": "2"
306
+ },
307
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
308
+ "packageName": "round-filled-radius-0-stroke-2",
309
+ "componentName": "IconAiTokens"
310
+ },
297
311
  {
298
312
  "category": "AI & Magic",
299
313
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.99977 4C7.55206 4 7.99977 4.44772 7.99977 5V6H10.9998C11.5521 6 11.9998 6.44772 11.9998 7C11.9998 7.55228 11.5521 8 10.9998 8H10.3722C10.0598 9.91166 9.4435 11.5244 8.43697 12.8188C9.1879 13.3437 10.1108 13.7471 11.2423 14.0299C11.7781 14.1639 12.1039 14.7068 11.9699 15.2426C11.836 15.7784 11.2931 16.1042 10.7573 15.9702C9.29645 15.605 8.04053 15.0424 6.99972 14.245C5.95892 15.0424 4.70304 15.6049 3.24228 15.9701C2.70649 16.1041 2.16355 15.7783 2.02961 15.2425C1.89566 14.7067 2.22142 14.1638 2.75721 14.0299C3.88868 13.747 4.81159 13.3436 5.56249 12.8188C4.55599 11.5244 3.93974 9.91163 3.62732 8H2.99977C2.44749 8 1.99977 7.55228 1.99977 7C1.99977 6.44772 2.44749 6 2.99977 6H5.99977V5C5.99977 4.44772 6.44749 4 6.99977 4ZM5.65774 8C5.92372 9.41424 6.37346 10.5272 6.99974 11.4013C7.62605 10.5272 8.0758 9.41425 8.3418 8H5.65774ZM15.9998 11C16.3785 11 16.7248 11.214 16.8942 11.5528L20.8942 19.5528C21.1412 20.0468 20.941 20.6474 20.447 20.8944C19.953 21.1414 19.3523 20.9412 19.1053 20.4472L18.3817 19H13.6178L12.8942 20.4472C12.6472 20.9412 12.0465 21.1414 11.5526 20.8944C11.0586 20.6474 10.8584 20.0468 11.1053 19.5528L15.1053 11.5528C15.2747 11.214 15.621 11 15.9998 11ZM14.6178 17H17.3817L15.9998 14.2361L14.6178 17Z\" fill=\"currentColor\"/><path d=\"M18.5655 4.86018L17.9756 3.32667C17.8999 3.12986 17.7109 3 17.5 3C17.2891 3 17.1001 3.12986 17.0244 3.32667L16.4345 4.86018C16.333 5.12427 16.1243 5.33297 15.8602 5.43455L14.3267 6.02436C14.1299 6.10005 14 6.28914 14 6.5C14 6.71086 14.1299 6.89995 14.3267 6.97564L15.8602 7.56545C16.1243 7.66703 16.333 7.87573 16.4345 8.13982L17.0244 9.67333C17.1001 9.87014 17.2891 10 17.5 10C17.7109 10 17.8999 9.87014 17.9756 9.67333L18.5655 8.13982C18.667 7.87573 18.8757 7.66703 19.1398 7.56545L20.6733 6.97564C20.8701 6.89995 21 6.71086 21 6.5C21 6.28914 20.8701 6.10005 20.6733 6.02436L19.1398 5.43455C18.8757 5.33297 18.667 5.12427 18.5655 4.86018Z\" fill=\"currentColor\"/>",
@@ -3836,6 +3850,20 @@
3836
3850
  "packageName": "round-filled-radius-0-stroke-2",
3837
3851
  "componentName": "IconBroomSparkle"
3838
3852
  },
3853
+ {
3854
+ "category": "Interface General",
3855
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM6 7C5.44772 7 5 7.44772 5 8C5 8.55228 5.44772 9 6 9H11C11.5523 9 12 8.55228 12 8C12 7.44772 11.5523 7 11 7H6ZM14 7C13.4477 7 13 7.44772 13 8C13 8.55228 13.4477 9 14 9H14.5C15.0523 9 15.5 8.55228 15.5 8C15.5 7.44772 15.0523 7 14.5 7H14ZM17.5 7C16.9477 7 16.5 7.44772 16.5 8C16.5 8.55228 16.9477 9 17.5 9H18C18.5523 9 19 8.55228 19 8C19 7.44772 18.5523 7 18 7H17.5Z\" fill=\"currentColor\"/>",
3856
+ "iconName": "browser-tabs, tab-groups",
3857
+ "variant": {
3858
+ "join": "round",
3859
+ "filled": "on",
3860
+ "radius": "0",
3861
+ "stroke": "2"
3862
+ },
3863
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
3864
+ "packageName": "round-filled-radius-0-stroke-2",
3865
+ "componentName": "IconBrowserTabs"
3866
+ },
3839
3867
  {
3840
3868
  "category": "Edit",
3841
3869
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.7927 1.79283C13.1833 1.40231 13.8164 1.40231 14.207 1.79283L18.207 5.79283C18.3945 5.98037 18.4999 6.23472 18.4999 6.49994L18.4999 7.49994L19.4999 7.49994C19.7651 7.49994 20.0194 7.60529 20.207 7.79283L22.207 9.79283C22.5975 10.1834 22.5975 10.8165 22.207 11.207L17.2071 16.207C17.2047 16.2094 17.2024 16.2117 17.2 16.214L14.2069 19.2072C14.0193 19.3948 13.7649 19.5001 13.4996 19.5001C13.2343 19.5 12.9799 19.3945 12.7924 19.2069L12.4149 18.829C11.6339 18.0473 10.367 18.047 9.58571 18.8284L6.20768 22.2066C5.81721 22.5971 5.18412 22.5972 4.79357 22.2068L1.79302 19.2073C1.60543 19.0198 1.50003 18.7654 1.5 18.5002C1.49997 18.235 1.60532 17.9806 1.79287 17.793L5.17152 14.4141C5.95281 13.6328 5.95246 12.3659 5.17075 11.585L4.79307 11.2077C4.60538 11.0202 4.49989 10.7658 4.49982 10.5005C4.49975 10.2352 4.6051 9.98078 4.7927 9.79318L7.78214 6.8036C7.78564 6.79999 7.78918 6.7964 7.79274 6.79283L12.7927 1.79283ZM15.0857 15.4999L8.49995 8.91424L6.89534 10.5189C8.13979 12.0889 8.03674 14.3772 6.58578 15.8283L3.91432 18.4999L5.50039 20.0854L8.17145 17.4142C9.62252 15.963 11.9111 15.8599 13.4811 17.1045L15.0857 15.4999Z\" fill=\"currentColor\"/>",
@@ -8976,32 +9004,18 @@
8976
9004
  },
8977
9005
  {
8978
9006
  "category": "Emoji",
8979
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19 1C19.5523 1 20 1.44772 20 2V4H22C22.5523 4 23 4.44772 23 5C23 5.55228 22.5523 6 22 6H20V8C20 8.55228 19.5523 9 19 9C18.4477 9 18 8.55228 18 8V6H16C15.4477 6 15 5.55228 15 5C15 4.44772 15.4477 4 16 4H18V2C18 1.44772 18.4477 1 19 1ZM12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 11.4477 20.4477 11 21 11C21.5523 11 22 11.4477 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C12.5523 2 13 2.44772 13 3C13 3.55228 12.5523 4 12 4ZM8 9.5C8 8.80964 8.55964 8.25 9.25 8.25C9.94036 8.25 10.5 8.80964 10.5 9.5C10.5 10.1904 9.94036 10.75 9.25 10.75C8.55964 10.75 8 10.1904 8 9.5ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07424 14.5118 8.46477 14.1213Z\" fill=\"currentColor\"/>",
8980
- "iconName": "emoji-add-reaction, reaction",
9007
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C13.2437 2 14.4338 2.22865 15.5322 2.64355C15.2025 3.00014 15 3.47605 15 4C15 5.10457 15.8954 6 17 6H18V7C18 8.10457 18.8954 9 20 9C20.5239 9 20.9989 8.79648 21.3555 8.4668C21.7707 9.56558 22 10.7559 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\" fill=\"currentColor\"/><path d=\"M20 0C20.5523 0 21 0.447715 21 1V3H23C23.5523 3 24 3.44772 24 4C24 4.55228 23.5523 5 23 5H21V7C21 7.55228 20.5523 8 20 8C19.4477 8 19 7.55228 19 7V5H17C16.4477 5 16 4.55228 16 4C16 3.44772 16.4477 3 17 3H19V1C19 0.447715 19.4477 0 20 0Z\" fill=\"currentColor\"/>",
9008
+ "iconName": "emoji-add-reaction, emoji-plus",
8981
9009
  "variant": {
8982
9010
  "join": "round",
8983
9011
  "filled": "on",
8984
9012
  "radius": "0",
8985
9013
  "stroke": "2"
8986
9014
  },
8987
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9015
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
8988
9016
  "packageName": "round-filled-radius-0-stroke-2",
8989
9017
  "componentName": "IconEmojiAddReaction"
8990
9018
  },
8991
- {
8992
- "category": "Emoji",
8993
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM17.88 13.1989C17.9899 12.6577 17.6402 12.1299 17.0989 12.02C16.5577 11.9101 16.0298 12.2598 15.92 12.8011C15.6022 14.3666 14.3666 15.6022 12.8011 15.92C12.2598 16.0298 11.9101 16.5577 12.02 17.0989C12.1299 17.6402 12.6577 17.9899 13.1989 17.88C15.5516 17.4024 17.4024 15.5516 17.88 13.1989ZM10 9.5C10 10.3284 9.32843 11 8.5 11C7.67157 11 7 10.3284 7 9.5C7 8.67157 7.67157 8 8.5 8C9.32843 8 10 8.67157 10 9.5ZM13.5 11C14.3284 11 15 10.3284 15 9.5C15 8.67157 14.3284 8 13.5 8C12.6716 8 12 8.67157 12 9.5C12 10.3284 12.6716 11 13.5 11Z\" fill=\"currentColor\"/>",
8994
- "iconName": "emoji-alt",
8995
- "variant": {
8996
- "join": "round",
8997
- "filled": "on",
8998
- "radius": "0",
8999
- "stroke": "2"
9000
- },
9001
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9002
- "packageName": "round-filled-radius-0-stroke-2",
9003
- "componentName": "IconEmojiAlt"
9004
- },
9005
9019
  {
9006
9020
  "category": "Things",
9007
9021
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 13C10.8954 13 10 13.7741 10 15.5C10 17.2259 10.8954 18 12 18C13.1046 18 14 17.2259 14 15.5C14 13.7741 13.1046 13 12 13ZM9.25 9C8.55964 9 8 9.67157 8 10.5C8 11.3284 8.55964 12 9.25 12C9.94036 12 10.5 11.3284 10.5 10.5C10.5 9.67157 9.94036 9 9.25 9ZM14.75 9C14.0596 9 13.5 9.67157 13.5 10.5C13.5 11.3284 14.0596 12 14.75 12C15.4404 12 16 11.3284 16 10.5C16 9.67157 15.4404 9 14.75 9ZM9.94629 6.90039C9.39392 5.6691 6.00965 7.55742 6.56055 8.78809C6.8274 9.38245 7.49086 8.58551 8.35449 8.12695C9.19926 7.67846 10.2515 7.58232 9.94629 6.90039ZM17.4395 8.78809C17.9904 7.55742 14.6061 5.6691 14.0537 6.90039C13.7485 7.58232 14.8007 7.67846 15.6455 8.12695C16.5091 8.58551 17.1726 9.38245 17.4395 8.78809Z\" fill=\"currentColor\"/>",
@@ -9016,20 +9030,6 @@
9016
9030
  "packageName": "round-filled-radius-0-stroke-2",
9017
9031
  "componentName": "IconEmojiAstonished"
9018
9032
  },
9019
- {
9020
- "category": "Emoji",
9021
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46306 14.4645C10.4157 12.5118 13.5815 12.5118 15.5341 14.4645C15.9247 14.855 15.9247 15.4882 15.5341 15.8787C15.1436 16.2692 14.5104 16.2692 14.1199 15.8787C12.9483 14.7071 11.0488 14.7071 9.87727 15.8787C9.48675 16.2692 8.85358 16.2692 8.46306 15.8787C8.07253 15.4882 8.07253 14.855 8.46306 14.4645ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z\" fill=\"currentColor\"/>",
9022
- "iconName": "emoji-sad, unhappy",
9023
- "variant": {
9024
- "join": "round",
9025
- "filled": "on",
9026
- "radius": "0",
9027
- "stroke": "2"
9028
- },
9029
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9030
- "packageName": "round-filled-radius-0-stroke-2",
9031
- "componentName": "IconEmojiSad"
9032
- },
9033
9033
  {
9034
9034
  "category": "Things",
9035
9035
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.3184 12.0586C16.1449 11.8745 15.8551 11.8745 15.6816 12.0586C13.8856 13.9646 13.5535 17.2499 16 17.25C18.4466 17.25 18.1143 13.9646 16.3184 12.0586ZM12 14.2295C10.6195 14.2295 9.50041 15.1127 9.5 15.7295C9.5 16.3463 10.6193 15.7139 12 15.7139C12.4689 15.7139 12.9072 15.7891 13.2822 15.8613C13.2511 15.6163 13.2433 15.3703 13.2568 15.1309C13.2683 14.9283 13.2942 14.7219 13.333 14.5137C12.9471 14.3424 12.4903 14.2295 12 14.2295ZM9.25 8.5C8.55964 8.5 8 9.17157 8 10C8 10.8284 8.55964 11.5 9.25 11.5C9.94036 11.5 10.5 10.8284 10.5 10C10.5 9.17157 9.94036 8.5 9.25 8.5ZM14.75 8.5C14.0596 8.5 13.5 9.17157 13.5 10C13.5 10.8284 14.0596 11.5 14.75 11.5C15.4404 11.5 16 10.8284 16 10C16 9.17157 15.4404 8.5 14.75 8.5Z\" fill=\"currentColor\"/>",
@@ -9060,7 +9060,7 @@
9060
9060
  },
9061
9061
  {
9062
9062
  "category": "Emoji",
9063
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM8.46477 14.1213C8.8553 13.7308 9.48846 13.7308 9.87898 14.1213C11.0505 15.2929 12.95 15.2929 14.1216 14.1213C14.5121 13.7308 15.1453 13.7308 15.5358 14.1213C15.9264 14.5118 15.9264 15.145 15.5358 15.5355C13.5832 17.4882 10.4174 17.4882 8.46477 15.5355C8.07424 15.145 8.07425 14.5118 8.46477 14.1213ZM9.25 8.25C8.55964 8.25 8 8.80964 8 9.5C8 10.1904 8.55964 10.75 9.25 10.75C9.94036 10.75 10.5 10.1904 10.5 9.5C10.5 8.80964 9.94036 8.25 9.25 8.25ZM13.5 9.5C13.5 8.80964 14.0596 8.25 14.75 8.25C15.4404 8.25 16 8.80964 16 9.5C16 10.1904 15.4404 10.75 14.75 10.75C14.0596 10.75 13.5 10.1904 13.5 9.5Z\" fill=\"currentColor\"/>",
9063
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM15.4521 14.0371C15.2608 14.0718 15.0904 14.1797 14.9717 14.3311C14.8979 14.4227 14.8216 14.5088 14.7412 14.5918C14.0238 15.3357 13.0193 15.7266 12.0039 15.7246C10.9881 15.7253 9.98306 15.3324 9.2627 14.5889C9.18195 14.5059 9.10543 14.4206 9.03125 14.3291C8.91221 14.1781 8.74112 14.0713 8.5498 14.0371C8.35854 14.003 8.16265 14.0438 8.00391 14.1514C7.84516 14.2591 7.73435 14.4258 7.69531 14.6162C7.65626 14.8066 7.69281 15.0044 7.78906 15.1709C7.87432 15.3143 7.9652 15.4515 8.06543 15.5859C8.9571 16.8038 10.4874 17.5353 12.002 17.5254C13.5163 17.5378 15.0507 16.8068 15.9404 15.585C16.0404 15.4501 16.1309 15.3127 16.2158 15.1689C16.3115 15.0022 16.3472 14.8045 16.3076 14.6143C16.268 14.424 16.157 14.2567 15.998 14.1494C15.8391 14.0425 15.6431 14.0026 15.4521 14.0371ZM9.25 7.5C8.42157 7.5 7.75 8.29582 7.75 9.40039C7.75016 10.5047 8.42167 11.25 9.25 11.25C10.0783 11.25 10.7498 10.5047 10.75 9.40039C10.75 8.29582 10.0784 7.5 9.25 7.5ZM14.75 7.5C13.9216 7.5 13.25 8.29582 13.25 9.40039C13.2502 10.5047 13.9217 11.25 14.75 11.25C15.5783 11.25 16.2498 10.5047 16.25 9.40039C16.25 8.29582 15.5784 7.5 14.75 7.5Z\" fill=\"currentColor\"/>",
9064
9064
  "iconName": "emoji-smile",
9065
9065
  "variant": {
9066
9066
  "join": "round",
@@ -9068,7 +9068,7 @@
9068
9068
  "radius": "0",
9069
9069
  "stroke": "2"
9070
9070
  },
9071
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9071
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
9072
9072
  "packageName": "round-filled-radius-0-stroke-2",
9073
9073
  "componentName": "IconEmojiSmile"
9074
9074
  },
package/icons/index.d.ts CHANGED
@@ -20,6 +20,7 @@ export type CentralIconName =
20
20
  | "IconAirpodLeft"
21
21
  | "IconAirpodRight"
22
22
  | "IconAirpods"
23
+ | "IconAiTokens"
23
24
  | "IconAiTranslate"
24
25
  | "IconAlbums"
25
26
  | "IconAlien"
@@ -273,6 +274,7 @@ export type CentralIconName =
273
274
  | "IconBronceMedal"
274
275
  | "IconBroom"
275
276
  | "IconBroomSparkle"
277
+ | "IconBrowserTabs"
276
278
  | "IconBrush"
277
279
  | "IconBubble2"
278
280
  | "IconBubble3"
@@ -641,9 +643,7 @@ export type CentralIconName =
641
643
  | "IconEmailPlus"
642
644
  | "IconEmailSettings"
643
645
  | "IconEmojiAddReaction"
644
- | "IconEmojiAlt"
645
646
  | "IconEmojiAstonished"
646
- | "IconEmojiSad"
647
647
  | "IconEmojiSadTear"
648
648
  | "IconEmojiSleep"
649
649
  | "IconEmojiSmile"
package/icons-index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@central-icons-react-native/round-filled-radius-0-stroke-2",
3
- "version": "1.1.80",
3
+ "version": "1.1.81",
4
4
  "style": "round-filled-radius-0-stroke-2",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-2/IconHome';",
@@ -14,8 +14,9 @@
14
14
  "totalIcons": 1666,
15
15
  "categories": {
16
16
  "AI & Magic": {
17
- "count": 64,
17
+ "count": 65,
18
18
  "icons": [
19
+ "IconAiTokens",
19
20
  "IconAiTranslate",
20
21
  "IconAppleIntelligenceIcon",
21
22
  "IconBag2Sparkle",
@@ -582,12 +583,10 @@
582
583
  ]
583
584
  },
584
585
  "Emoji": {
585
- "count": 10,
586
+ "count": 8,
586
587
  "icons": [
587
588
  "IconAlien",
588
589
  "IconEmojiAddReaction",
589
- "IconEmojiAlt",
590
- "IconEmojiSad",
591
590
  "IconEmojiSleep",
592
591
  "IconEmojiSmile",
593
592
  "IconEmojiSmiley",
@@ -828,7 +827,7 @@
828
827
  ]
829
828
  },
830
829
  "Interface General": {
831
- "count": 175,
830
+ "count": 176,
832
831
  "icons": [
833
832
  "IconAnchor1",
834
833
  "IconAnchor2",
@@ -864,6 +863,7 @@
864
863
  "IconBrokenChainLink2",
865
864
  "IconBrokenChainLink3",
866
865
  "IconBrokenHeart",
866
+ "IconBrowserTabs",
867
867
  "IconBucket",
868
868
  "IconChainLink1",
869
869
  "IconChainLink2",
@@ -1882,6 +1882,7 @@
1882
1882
  "IconAirpodLeft": "airpod-left",
1883
1883
  "IconAirpodRight": "airpod-right",
1884
1884
  "IconAirpods": "airpods, headphones, vibe",
1885
+ "IconAiTokens": "ai-tokens, credits",
1885
1886
  "IconAiTranslate": "ai-translate, language, auto-translate",
1886
1887
  "IconAlbums": "albums, cover",
1887
1888
  "IconAlien": "alien",
@@ -2135,6 +2136,7 @@
2135
2136
  "IconBronceMedal": "bronce-medal, third-place",
2136
2137
  "IconBroom": "broom, brush, clear, clean",
2137
2138
  "IconBroomSparkle": "broom-sparkle, clean, brush",
2139
+ "IconBrowserTabs": "browser-tabs, tab-groups",
2138
2140
  "IconBrush": "brush, color",
2139
2141
  "IconBubble2": "bubble-2, message, chat",
2140
2142
  "IconBubble3": "bubble-3, message, chat",
@@ -2502,10 +2504,8 @@
2502
2504
  "IconEmailNotification": "email-notification, badge, envelope",
2503
2505
  "IconEmailPlus": "email-plus, envelope, add, plus",
2504
2506
  "IconEmailSettings": "email-settings, envelope, gear",
2505
- "IconEmojiAddReaction": "emoji-add-reaction, reaction",
2506
- "IconEmojiAlt": "emoji-alt",
2507
+ "IconEmojiAddReaction": "emoji-add-reaction, emoji-plus",
2507
2508
  "IconEmojiAstonished": "emoji-astonished",
2508
- "IconEmojiSad": "emoji-sad, unhappy",
2509
2509
  "IconEmojiSadTear": "emoji-sad-tear",
2510
2510
  "IconEmojiSleep": "emoji-sleep, snooze",
2511
2511
  "IconEmojiSmile": "emoji-smile",
package/index.d.ts CHANGED
@@ -8,6 +8,7 @@ export { IconAddToBasket2, default as IconAddToBasket2Default, } from "./IconAdd
8
8
  export { IconAdjustPhoto, default as IconAdjustPhotoDefault, } from "./IconAdjustPhoto";
9
9
  export { IconAffinity, default as IconAffinityDefault } from "./IconAffinity";
10
10
  export { IconAgent, default as IconAgentDefault } from "./IconAgent";
11
+ export { IconAiTokens, default as IconAiTokensDefault } from "./IconAiTokens";
11
12
  export { IconAiTranslate, default as IconAiTranslateDefault, } from "./IconAiTranslate";
12
13
  export { IconAirdrop, default as IconAirdropDefault } from "./IconAirdrop";
13
14
  export { IconAirdrop2, default as IconAirdrop2Default } from "./IconAirdrop2";
@@ -272,6 +273,7 @@ export { IconBrokenHeart, default as IconBrokenHeartDefault, } from "./IconBroke
272
273
  export { IconBronceMedal, default as IconBronceMedalDefault, } from "./IconBronceMedal";
273
274
  export { IconBroom, default as IconBroomDefault } from "./IconBroom";
274
275
  export { IconBroomSparkle, default as IconBroomSparkleDefault, } from "./IconBroomSparkle";
276
+ export { IconBrowserTabs, default as IconBrowserTabsDefault, } from "./IconBrowserTabs";
275
277
  export { IconBrush, default as IconBrushDefault } from "./IconBrush";
276
278
  export { IconBubble2, default as IconBubble2Default } from "./IconBubble2";
277
279
  export { IconBubble3, default as IconBubble3Default } from "./IconBubble3";
@@ -640,9 +642,7 @@ export { IconEmailNotification, default as IconEmailNotificationDefault, } from
640
642
  export { IconEmailPlus, default as IconEmailPlusDefault, } from "./IconEmailPlus";
641
643
  export { IconEmailSettings, default as IconEmailSettingsDefault, } from "./IconEmailSettings";
642
644
  export { IconEmojiAddReaction, default as IconEmojiAddReactionDefault, } from "./IconEmojiAddReaction";
643
- export { IconEmojiAlt, default as IconEmojiAltDefault } from "./IconEmojiAlt";
644
645
  export { IconEmojiAstonished, default as IconEmojiAstonishedDefault, } from "./IconEmojiAstonished";
645
- export { IconEmojiSad, default as IconEmojiSadDefault } from "./IconEmojiSad";
646
646
  export { IconEmojiSadTear, default as IconEmojiSadTearDefault, } from "./IconEmojiSadTear";
647
647
  export { IconEmojiSleep, default as IconEmojiSleepDefault, } from "./IconEmojiSleep";
648
648
  export { IconEmojiSmile, default as IconEmojiSmileDefault, } from "./IconEmojiSmile";