@central-icons-react-native/round-filled-radius-2-stroke-1.5 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.3701 9.78711C10.2939 9.98518 10.1365 10.1426 9.93848 10.2188L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.93848 13.4785C10.1365 13.5547 10.2939 13.7121 10.3701 13.9102L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.6299 13.9102C13.7061 13.7121 13.8635 13.5547 14.0615 13.4785L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.0615 10.2188C13.8635 10.1426 13.7061 9.98518 13.6299 9.78711L12.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.3701 9.78711C10.2939 9.98518 10.1365 10.1426 9.93848 10.2188L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.93848 13.4785C10.1365 13.5547 10.2939 13.7121 10.3701 13.9102L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.6299 13.9102C13.7061 13.7121 13.8635 13.5547 14.0615 13.4785L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.0615 10.2188C13.8635 10.1426 13.7061 9.98518 13.6299 9.78711L12.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,gxBACF,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.3701 9.78711C10.2939 9.98518 10.1365 10.1426 9.93848 10.2188L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.93848 13.4785C10.1365 13.5547 10.2939 13.7121 10.3701 13.9102L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.6299 13.9102C13.7061 13.7121 13.8635 13.5547 14.0615 13.4785L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.0615 10.2188C13.8635 10.1426 13.7061 9.98518 13.6299 9.78711L12.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.3701 9.78711C10.2939 9.98518 10.1365 10.1426 9.93848 10.2188L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.93848 13.4785C10.1365 13.5547 10.2939 13.7121 10.3701 13.9102L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.6299 13.9102C13.7061 13.7121 13.8635 13.5547 14.0615 13.4785L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.0615 10.2188C13.8635 10.1426 13.7061 9.98518 13.6299 9.78711L12.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,gxBACF,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:"M19.25 4C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75C2 5.23122 3.23122 4 4.75 4H19.25ZM5.75 7C5.33579 7 5 7.33579 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5H11.25C11.6642 8.5 12 8.16421 12 7.75C12 7.33579 11.6642 7 11.25 7H5.75ZM13.75 7C13.3358 7 13 7.33579 13 7.75C13 8.16421 13.3358 8.5 13.75 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H13.75ZM17.25 7C16.8358 7 16.5 7.33579 16.5 7.75C16.5 8.16421 16.8358 8.5 17.25 8.5H18.25C18.6642 8.5 19 8.16421 19 7.75C19 7.33579 18.6642 7 18.25 7H17.25Z",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=\"M19.25 4C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75C2 5.23122 3.23122 4 4.75 4H19.25ZM5.75 7C5.33579 7 5 7.33579 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5H11.25C11.6642 8.5 12 8.16421 12 7.75C12 7.33579 11.6642 7 11.25 7H5.75ZM13.75 7C13.3358 7 13 7.33579 13 7.75C13 8.16421 13.3358 8.5 13.75 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H13.75ZM17.25 7C16.8358 7 16.5 7.33579 16.5 7.75C16.5 8.16421 16.8358 8.5 17.25 8.5H18.25C18.6642 8.5 19 8.16421 19 7.75C19 7.33579 18.6642 7 18.25 7H17.25Z\"\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,ykBACF,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:"M19.25 4C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75C2 5.23122 3.23122 4 4.75 4H19.25ZM5.75 7C5.33579 7 5 7.33579 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5H11.25C11.6642 8.5 12 8.16421 12 7.75C12 7.33579 11.6642 7 11.25 7H5.75ZM13.75 7C13.3358 7 13 7.33579 13 7.75C13 8.16421 13.3358 8.5 13.75 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H13.75ZM17.25 7C16.8358 7 16.5 7.33579 16.5 7.75C16.5 8.16421 16.8358 8.5 17.25 8.5H18.25C18.6642 8.5 19 8.16421 19 7.75C19 7.33579 18.6642 7 18.25 7H17.25Z",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=\"M19.25 4C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75C2 5.23122 3.23122 4 4.75 4H19.25ZM5.75 7C5.33579 7 5 7.33579 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5H11.25C11.6642 8.5 12 8.16421 12 7.75C12 7.33579 11.6642 7 11.25 7H5.75ZM13.75 7C13.3358 7 13 7.33579 13 7.75C13 8.16421 13.3358 8.5 13.75 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H13.75ZM17.25 7C16.8358 7 16.5 7.33579 16.5 7.75C16.5 8.16421 16.8358 8.5 17.25 8.5H18.25C18.6642 8.5 19 8.16421 19 7.75C19 7.33579 18.6642 7 18.25 7H17.25Z\"\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,ykBACF,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 l=Object.create;var i=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var f=Object.getPrototypeOf,h=Object.prototype.hasOwnProperty;var B=(o,r)=>{for(var e in r)i(o,e,{get:r[e],enumerable:!0})},p=(o,r,e,C)=>{if(r&&typeof r=="object"||typeof r=="function")for(let s of L(r))!h.call(o,s)&&s!==e&&i(o,s,{get:()=>r[s],enumerable:!(C=m(r,s))||C.enumerable});return o};var d=(o,r,e)=>(e=o!=null?l(f(o)):{},p(r||!o||!o.__esModule?i(e,"default",{value:o,enumerable:!0}):e,o)),I=o=>p(i({},"__esModule",{value:!0}),o);var x={};B(x,{IconEmojiAddReaction:()=>c,default:()=>M});module.exports=I(x);var n=d(require("react"));var u=d(require("react")),k=require("react-native-svg"),a=({children:o,size:r=24,...e})=>u.default.createElement(k.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 t=require("react-native-svg"),c=o=>n.default.createElement(a,{...o},n.default.createElement(t.Path,{d:"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M19 1.75V8.25M15.75 5H22.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement(t.Path,{d:"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),M=c;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.5909 2 15.0943 2.37316 16.4297 3.03418C15.7552 3.1809 15.25 3.7815 15.25 4.5C15.25 5.32843 15.9216 6 16.75 6H18V7.25C18 8.07843 18.6716 8.75 19.5 8.75C20.2188 8.75 20.8184 8.24424 20.9648 7.56934C21.6262 8.905 22 10.4086 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.17383 14.3564C7.25498 14.5445 7.34265 14.7214 7.44434 14.9004C8.33313 16.5191 10.1801 17.5462 12.001 17.5254C13.8243 17.5535 15.6645 16.4674 16.4531 14.8389C16.5443 14.6589 16.6202 14.4815 16.6895 14.2939C16.2298 14.098 15.7702 13.902 15.3105 13.7061C15.2444 13.8354 15.175 13.9544 15.0977 14.0732C14.4188 15.1319 13.2283 15.7305 12.0029 15.7246C10.7747 15.7315 9.59651 15.0724 9.00879 14.0098C8.9411 13.8906 8.88146 13.7717 8.82617 13.6436C8.27526 13.8809 7.72474 14.1191 7.17383 14.3564ZM9.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:"M19.5 1C19.9142 1 20.25 1.33579 20.25 1.75V3.75H22.25C22.6642 3.75 23 4.08579 23 4.5C23 4.91421 22.6642 5.25 22.25 5.25H20.25V7.25C20.25 7.66421 19.9142 8 19.5 8C19.0858 8 18.75 7.66421 18.75 7.25V5.25H16.75C16.3358 5.25 16 4.91421 16 4.5C16 4.08579 16.3358 3.75 16.75 3.75H18.75V1.75C18.75 1.33579 19.0858 1 19.5 1Z",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 d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 1.75V8.25M15.75 5H22.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,sHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,iKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,sJACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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.5909 2 15.0943 2.37316 16.4297 3.03418C15.7552 3.1809 15.25 3.7815 15.25 4.5C15.25 5.32843 15.9216 6 16.75 6H18V7.25C18 8.07843 18.6716 8.75 19.5 8.75C20.2188 8.75 20.8184 8.24424 20.9648 7.56934C21.6262 8.905 22 10.4086 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.17383 14.3564C7.25498 14.5445 7.34265 14.7214 7.44434 14.9004C8.33313 16.5191 10.1801 17.5462 12.001 17.5254C13.8243 17.5535 15.6645 16.4674 16.4531 14.8389C16.5443 14.6589 16.6202 14.4815 16.6895 14.2939C16.2298 14.098 15.7702 13.902 15.3105 13.7061C15.2444 13.8354 15.175 13.9544 15.0977 14.0732C14.4188 15.1319 13.2283 15.7305 12.0029 15.7246C10.7747 15.7315 9.59651 15.0724 9.00879 14.0098C8.9411 13.8906 8.88146 13.7717 8.82617 13.6436C8.27526 13.8809 7.72474 14.1191 7.17383 14.3564ZM9.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=\"M19.5 1C19.9142 1 20.25 1.33579 20.25 1.75V3.75H22.25C22.6642 3.75 23 4.08579 23 4.5C23 4.91421 22.6642 5.25 22.25 5.25H20.25V7.25C20.25 7.66421 19.9142 8 19.5 8C19.0858 8 18.75 7.66421 18.75 7.25V5.25H16.75C16.3358 5.25 16 4.91421 16 4.5C16 4.08579 16.3358 3.75 16.75 3.75H18.75V1.75C18.75 1.33579 19.0858 1 19.5 1Z\"\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,+nCACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,+TACF,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 r from"react";import i from"react";import{Svg as C}from"react-native-svg";var t=({children:n,size:o=24,...s})=>i.createElement(C,{...s,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},n);import{Path as e}from"react-native-svg";var p=n=>r.createElement(t,{...n},r.createElement(e,{d:"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M19 1.75V8.25M15.75 5H22.25",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement(e,{d:"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),h=p;export{p as IconEmojiAddReaction,h 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.5909 2 15.0943 2.37316 16.4297 3.03418C15.7552 3.1809 15.25 3.7815 15.25 4.5C15.25 5.32843 15.9216 6 16.75 6H18V7.25C18 8.07843 18.6716 8.75 19.5 8.75C20.2188 8.75 20.8184 8.24424 20.9648 7.56934C21.6262 8.905 22 10.4086 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.17383 14.3564C7.25498 14.5445 7.34265 14.7214 7.44434 14.9004C8.33313 16.5191 10.1801 17.5462 12.001 17.5254C13.8243 17.5535 15.6645 16.4674 16.4531 14.8389C16.5443 14.6589 16.6202 14.4815 16.6895 14.2939C16.2298 14.098 15.7702 13.902 15.3105 13.7061C15.2444 13.8354 15.175 13.9544 15.0977 14.0732C14.4188 15.1319 13.2283 15.7305 12.0029 15.7246C10.7747 15.7315 9.59651 15.0724 9.00879 14.0098C8.9411 13.8906 8.88146 13.7717 8.82617 13.6436C8.27526 13.8809 7.72474 14.1191 7.17383 14.3564ZM9.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:"M19.5 1C19.9142 1 20.25 1.33579 20.25 1.75V3.75H22.25C22.6642 3.75 23 4.08579 23 4.5C23 4.91421 22.6642 5.25 22.25 5.25H20.25V7.25C20.25 7.66421 19.9142 8 19.5 8C19.0858 8 18.75 7.66421 18.75 7.25V5.25H16.75C16.3358 5.25 16 4.91421 16 4.5C16 4.08579 16.3358 3.75 16.75 3.75H18.75V1.75C18.75 1.33579 19.0858 1 19.5 1Z",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 d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M19 1.75V8.25M15.75 5H22.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n />\n <Path\n d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\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,EAAE,sHACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8BACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kEACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,iKACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,sJACF,OAAO,eACP,YAAY,MACZ,cAAc,QACd,eAAe,QACjB,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.5909 2 15.0943 2.37316 16.4297 3.03418C15.7552 3.1809 15.25 3.7815 15.25 4.5C15.25 5.32843 15.9216 6 16.75 6H18V7.25C18 8.07843 18.6716 8.75 19.5 8.75C20.2188 8.75 20.8184 8.24424 20.9648 7.56934C21.6262 8.905 22 10.4086 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.17383 14.3564C7.25498 14.5445 7.34265 14.7214 7.44434 14.9004C8.33313 16.5191 10.1801 17.5462 12.001 17.5254C13.8243 17.5535 15.6645 16.4674 16.4531 14.8389C16.5443 14.6589 16.6202 14.4815 16.6895 14.2939C16.2298 14.098 15.7702 13.902 15.3105 13.7061C15.2444 13.8354 15.175 13.9544 15.0977 14.0732C14.4188 15.1319 13.2283 15.7305 12.0029 15.7246C10.7747 15.7315 9.59651 15.0724 9.00879 14.0098C8.9411 13.8906 8.88146 13.7717 8.82617 13.6436C8.27526 13.8809 7.72474 14.1191 7.17383 14.3564ZM9.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=\"M19.5 1C19.9142 1 20.25 1.33579 20.25 1.75V3.75H22.25C22.6642 3.75 23 4.08579 23 4.5C23 4.91421 22.6642 5.25 22.25 5.25H20.25V7.25C20.25 7.66421 19.9142 8 19.5 8C19.0858 8 18.75 7.66421 18.75 7.25V5.25H16.75C16.3358 5.25 16 4.91421 16 4.5C16 4.08579 16.3358 3.75 16.75 3.75H18.75V1.75C18.75 1.33579 19.0858 1 19.5 1Z\"\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,+nCACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,+TACF,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 12ZM13.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.5ZM9.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.25ZM9.70221 14.2981C9.40931 14.0052 8.93444 14.0052 8.64155 14.2981C8.34865 14.591 8.34865 15.0659 8.64154 15.3588C10.4965 17.2138 13.5041 17.2138 15.3591 15.3588C15.6519 15.0659 15.6519 14.591 15.3591 14.2981C15.0662 14.0052 14.5913 14.0052 14.2984 14.2981C13.0292 15.5673 10.9714 15.5673 9.70221 14.2981Z",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.4756 14.1523C15.3157 14.1817 15.1731 14.2724 15.0752 14.4004C15.0005 14.4963 14.9238 14.5865 14.8418 14.6738C14.11 15.4577 13.0611 15.8778 12.0039 15.875C10.9465 15.8765 9.89676 15.4549 9.16211 14.6719C9.0799 14.5848 9.00271 14.4951 8.92773 14.3994C8.82964 14.2719 8.68709 14.1814 8.52734 14.1523C8.36741 14.1235 8.20242 14.1579 8.06934 14.248C7.93634 14.3383 7.84384 14.4784 7.81152 14.6377C7.77926 14.7969 7.81039 14.9622 7.89258 15.1006C7.97692 15.2397 8.06643 15.3728 8.16504 15.5029C9.04241 16.6812 10.529 17.3841 12.002 17.375C13.4748 17.3865 14.9654 16.684 15.8408 15.502C15.9391 15.3716 16.0284 15.2389 16.1123 15.0996C16.1941 14.9609 16.2251 14.7949 16.1924 14.6357C16.1596 14.4766 16.0659 14.337 15.9326 14.2471C15.7994 14.1574 15.6353 14.1232 15.4756 14.1523ZM9.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 12ZM13.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.5ZM9.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.25ZM9.70221 14.2981C9.40931 14.0052 8.93444 14.0052 8.64155 14.2981C8.34865 14.591 8.34865 15.0659 8.64154 15.3588C10.4965 17.2138 13.5041 17.2138 15.3591 15.3588C15.6519 15.0659 15.6519 14.591 15.3591 14.2981C15.0662 14.0052 14.5913 14.0052 14.2984 14.2981C13.0292 15.5673 10.9714 15.5673 9.70221 14.2981Z\"\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,6sBACF,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.4756 14.1523C15.3157 14.1817 15.1731 14.2724 15.0752 14.4004C15.0005 14.4963 14.9238 14.5865 14.8418 14.6738C14.11 15.4577 13.0611 15.8778 12.0039 15.875C10.9465 15.8765 9.89676 15.4549 9.16211 14.6719C9.0799 14.5848 9.00271 14.4951 8.92773 14.3994C8.82964 14.2719 8.68709 14.1814 8.52734 14.1523C8.36741 14.1235 8.20242 14.1579 8.06934 14.248C7.93634 14.3383 7.84384 14.4784 7.81152 14.6377C7.77926 14.7969 7.81039 14.9622 7.89258 15.1006C7.97692 15.2397 8.06643 15.3728 8.16504 15.5029C9.04241 16.6812 10.529 17.3841 12.002 17.375C13.4748 17.3865 14.9654 16.684 15.8408 15.502C15.9391 15.3716 16.0284 15.2389 16.1123 15.0996C16.1941 14.9609 16.2251 14.7949 16.1924 14.6357C16.1596 14.4766 16.0659 14.337 15.9326 14.2471C15.7994 14.1574 15.6353 14.1232 15.4756 14.1523ZM9.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 12ZM13.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.5ZM9.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.25ZM9.70221 14.2981C9.40931 14.0052 8.93444 14.0052 8.64155 14.2981C8.34865 14.591 8.34865 15.0659 8.64154 15.3588C10.4965 17.2138 13.5041 17.2138 15.3591 15.3588C15.6519 15.0659 15.6519 14.591 15.3591 14.2981C15.0662 14.0052 14.5913 14.0052 14.2984 14.2981C13.0292 15.5673 10.9714 15.5673 9.70221 14.2981Z",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.4756 14.1523C15.3157 14.1817 15.1731 14.2724 15.0752 14.4004C15.0005 14.4963 14.9238 14.5865 14.8418 14.6738C14.11 15.4577 13.0611 15.8778 12.0039 15.875C10.9465 15.8765 9.89676 15.4549 9.16211 14.6719C9.0799 14.5848 9.00271 14.4951 8.92773 14.3994C8.82964 14.2719 8.68709 14.1814 8.52734 14.1523C8.36741 14.1235 8.20242 14.1579 8.06934 14.248C7.93634 14.3383 7.84384 14.4784 7.81152 14.6377C7.77926 14.7969 7.81039 14.9622 7.89258 15.1006C7.97692 15.2397 8.06643 15.3728 8.16504 15.5029C9.04241 16.6812 10.529 17.3841 12.002 17.375C13.4748 17.3865 14.9654 16.684 15.8408 15.502C15.9391 15.3716 16.0284 15.2389 16.1123 15.0996C16.1941 14.9609 16.2251 14.7949 16.1924 14.6357C16.1596 14.4766 16.0659 14.337 15.9326 14.2471C15.7994 14.1574 15.6353 14.1232 15.4756 14.1523ZM9.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 12ZM13.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.5ZM9.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.25ZM9.70221 14.2981C9.40931 14.0052 8.93444 14.0052 8.64155 14.2981C8.34865 14.591 8.34865 15.0659 8.64154 15.3588C10.4965 17.2138 13.5041 17.2138 15.3591 15.3588C15.6519 15.0659 15.6519 14.591 15.3591 14.2981C15.0662 14.0052 14.5913 14.0052 14.2984 14.2981C13.0292 15.5673 10.9714 15.5673 9.70221 14.2981Z\"\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,6sBACF,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.4756 14.1523C15.3157 14.1817 15.1731 14.2724 15.0752 14.4004C15.0005 14.4963 14.9238 14.5865 14.8418 14.6738C14.11 15.4577 13.0611 15.8778 12.0039 15.875C10.9465 15.8765 9.89676 15.4549 9.16211 14.6719C9.0799 14.5848 9.00271 14.4951 8.92773 14.3994C8.82964 14.2719 8.68709 14.1814 8.52734 14.1523C8.36741 14.1235 8.20242 14.1579 8.06934 14.248C7.93634 14.3383 7.84384 14.4784 7.81152 14.6377C7.77926 14.7969 7.81039 14.9622 7.89258 15.1006C7.97692 15.2397 8.06643 15.3728 8.16504 15.5029C9.04241 16.6812 10.529 17.3841 12.002 17.375C13.4748 17.3865 14.9654 16.684 15.8408 15.502C15.9391 15.3716 16.0284 15.2389 16.1123 15.0996C16.1941 14.9609 16.2251 14.7949 16.1924 14.6357C16.1596 14.4766 16.0659 14.337 15.9326 14.2471C15.7994 14.1574 15.6353 14.1232 15.4756 14.1523ZM9.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-2-stroke-1.5",
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.3701 9.78711C10.2939 9.98518 10.1365 10.1426 9.93848 10.2188L7.4668 11.1689C7.18564 11.2771 7 11.5474 7 11.8486C7 12.1499 7.18564 12.4202 7.4668 12.5283L9.93848 13.4785C10.1365 13.5547 10.2939 13.7121 10.3701 13.9102L11.3203 16.3818C11.4284 16.663 11.6988 16.8486 12 16.8486C12.3012 16.8486 12.5716 16.663 12.6797 16.3818L13.6299 13.9102C13.7061 13.7121 13.8635 13.5547 14.0615 13.4785L16.5332 12.5283C16.8144 12.4202 17 12.1499 17 11.8486C17 11.5474 16.8144 11.2771 16.5332 11.1689L14.0615 10.2188C13.8635 10.1426 13.7061 9.98518 13.6299 9.78711L12.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": "2",
305
+ "stroke": "1.5"
306
+ },
307
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
308
+ "packageName": "round-filled-radius-2-stroke-1.5",
309
+ "componentName": "IconAiTokens"
310
+ },
297
311
  {
298
312
  "category": "AI & Magic",
299
313
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 4C7.41421 4 7.75 4.33579 7.75 4.75V6.06665H11.25C11.6642 6.06665 12 6.40244 12 6.81665C12 7.23086 11.6642 7.56665 11.25 7.56665H10.4248C10.0845 9.68318 9.39037 11.4216 8.24913 12.7779C8.16995 12.872 8.08886 12.964 8.00585 13.0539C8.85346 13.7037 9.90163 14.1911 11.1879 14.5239C11.5889 14.6277 11.8298 15.0368 11.7261 15.4379C11.6223 15.8389 11.2132 16.0798 10.8121 15.9761C9.25769 15.5739 7.94367 14.9504 6.87142 14.0683C5.84632 14.8244 4.61619 15.3675 3.18262 15.7274C2.78088 15.8283 2.37343 15.5844 2.27257 15.1826C2.17171 14.7809 2.41563 14.3734 2.81738 14.2726C4.00169 13.9752 4.98351 13.5511 5.79235 12.9953C5.77568 12.9753 5.75909 12.9552 5.74259 12.9349C4.60291 11.5381 3.91109 9.74802 3.5729 7.56665H2.75C2.33579 7.56665 2 7.23086 2 6.81665C2 6.40244 2.33579 6.06665 2.75 6.06665H6.25V4.75C6.25 4.33579 6.58579 4 7 4ZM5.09251 7.56665C5.41346 9.45521 6.01656 10.898 6.90481 11.9867C6.9118 11.9952 6.9188 12.0038 6.92582 12.0123C6.98573 11.9468 7.04424 11.88 7.10138 11.8121C7.98238 10.7651 8.58205 9.37972 8.90358 7.56665H5.09251ZM14.3629 11.2111C14.9329 9.70241 17.0671 9.7024 17.6371 11.2111L20.9516 19.9849C21.098 20.3724 20.9025 20.8052 20.5151 20.9515C20.1276 21.0979 19.6948 20.9025 19.5484 20.515L18.9119 18.8302C18.8321 18.8592 18.746 18.8749 18.6562 18.8749H13.3438C13.254 18.8749 13.1679 18.8592 13.0881 18.8302L12.4516 20.515C12.3052 20.9025 11.8724 21.0979 11.4849 20.9515C11.0975 20.8052 10.902 20.3724 11.0484 19.9849L14.3629 11.2111ZM13.6378 17.3749H18.3622L16.2339 11.7412C16.1524 11.5257 15.8476 11.5257 15.7661 11.7412L13.6378 17.3749Z\" fill=\"currentColor\"/><path d=\"M19.5655 3.86018L18.9756 2.32667C18.8999 2.12986 18.7109 2 18.5 2C18.2891 2 18.1001 2.12986 18.0244 2.32667L17.4345 3.86018C17.333 4.12427 17.1243 4.33297 16.8602 4.43455L15.3267 5.02436C15.1299 5.10005 15 5.28914 15 5.5C15 5.71086 15.1299 5.89995 15.3267 5.97564L16.8602 6.56545C17.1243 6.66703 17.333 6.87573 17.4345 7.13982L18.0244 8.67333C18.1001 8.87014 18.2891 9 18.5 9C18.7109 9 18.8999 8.87014 18.9756 8.67333L19.5655 7.13982C19.667 6.87573 19.8757 6.66703 20.1398 6.56545L21.6733 5.97564C21.8701 5.89995 22 5.71086 22 5.5C22 5.28914 21.8701 5.10005 21.6733 5.02436L20.1398 4.43455C19.8757 4.33297 19.667 4.12427 19.5655 3.86018Z\" fill=\"currentColor\"/>",
@@ -3836,6 +3850,20 @@
3836
3850
  "packageName": "round-filled-radius-2-stroke-1.5",
3837
3851
  "componentName": "IconBroomSparkle"
3838
3852
  },
3853
+ {
3854
+ "category": "Interface General",
3855
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.25 4C20.7688 4 22 5.23122 22 6.75V17.25C22 18.7688 20.7688 20 19.25 20H4.75C3.23122 20 2 18.7688 2 17.25V6.75C2 5.23122 3.23122 4 4.75 4H19.25ZM5.75 7C5.33579 7 5 7.33579 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5H11.25C11.6642 8.5 12 8.16421 12 7.75C12 7.33579 11.6642 7 11.25 7H5.75ZM13.75 7C13.3358 7 13 7.33579 13 7.75C13 8.16421 13.3358 8.5 13.75 8.5H14.75C15.1642 8.5 15.5 8.16421 15.5 7.75C15.5 7.33579 15.1642 7 14.75 7H13.75ZM17.25 7C16.8358 7 16.5 7.33579 16.5 7.75C16.5 8.16421 16.8358 8.5 17.25 8.5H18.25C18.6642 8.5 19 8.16421 19 7.75C19 7.33579 18.6642 7 18.25 7H17.25Z\" fill=\"currentColor\"/>",
3856
+ "iconName": "browser-tabs, tab-groups",
3857
+ "variant": {
3858
+ "join": "round",
3859
+ "filled": "on",
3860
+ "radius": "2",
3861
+ "stroke": "1.5"
3862
+ },
3863
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
3864
+ "packageName": "round-filled-radius-2-stroke-1.5",
3865
+ "componentName": "IconBrowserTabs"
3866
+ },
3839
3867
  {
3840
3868
  "category": "Edit",
3841
3869
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.6153 8.5555C21.6893 9.62943 21.6893 11.3706 20.6154 12.4446L15.0297 18.0304C14.1844 18.8756 12.814 18.8753 11.9692 18.0297C11.4341 17.4941 10.5661 17.4939 10.0307 18.0293L7.44434 20.6158C6.37054 21.6897 4.62956 21.6899 3.55554 20.6163L3.38394 20.4447C2.30968 19.3708 2.3095 17.6294 3.38352 16.5553L5.97022 13.9685C6.50546 13.4332 6.50522 12.5653 5.96969 12.0303C5.1241 11.1856 5.12373 9.81521 5.96887 8.97002L7.95392 6.98489C7.95879 6.97973 7.96374 6.97464 7.96877 6.96961L11.5546 3.38383C12.5257 2.4127 14.0424 2.31973 15.118 3.10492C15.1576 3.13377 15.1965 3.16382 15.2348 3.19505C15.3068 3.25381 15.3766 3.31677 15.4438 3.38394L18.0295 5.96969C18.1702 6.11035 18.2492 6.30111 18.2492 6.50002V7.74994L19.4991 7.74994C19.6311 7.74994 19.7596 7.78476 19.8722 7.84932C19.908 7.86985 19.9422 7.8934 19.9744 7.91979C19.9935 7.93544 20.0119 7.95208 20.0295 7.9697L20.6153 8.5555ZM15.4387 15.5001L8.49933 8.56082L7.02956 10.0307C6.77039 10.2898 6.7705 10.7101 7.02981 10.9691C8.15162 12.0898 8.15212 13.9078 7.03091 15.0291L4.44421 17.616C3.95602 18.1042 3.95611 18.8957 4.4444 19.3839L4.61601 19.5554C5.1042 20.0434 5.89555 20.0433 6.38364 19.5552L8.97003 16.9686C10.0913 15.8473 11.9095 15.8477 13.0303 16.9695C13.2894 17.2289 13.7098 17.229 13.969 16.9698L15.4387 15.5001Z\" fill=\"currentColor\"/>",
@@ -8976,32 +9004,18 @@
8976
9004
  },
8977
9005
  {
8978
9006
  "category": "Emoji",
8979
- "svg": "<path d=\"M21.25 12C21.25 17.1086 17.1086 21.25 12 21.25C6.89137 21.25 2.75 17.1086 2.75 12C2.75 6.89137 6.89137 2.75 12 2.75\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 1.75V8.25M15.75 5H22.25\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.8287 14.8284C13.2666 16.3905 10.734 16.3905 9.17188 14.8284\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M14.5 9.5H15M15.25 9.5C15.25 9.77614 15.0261 10 14.75 10C14.4739 10 14.25 9.77614 14.25 9.5C14.25 9.22386 14.4739 9 14.75 9C15.0261 9 15.25 9.22386 15.25 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9 9.5H9.5M9.75 9.5C9.75 9.77614 9.52614 10 9.25 10C8.97386 10 8.75 9.77614 8.75 9.5C8.75 9.22386 8.97386 9 9.25 9C9.52614 9 9.75 9.22386 9.75 9.5Z\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>",
8980
- "iconName": "emoji-add-reaction, reaction",
9007
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C13.5909 2 15.0943 2.37316 16.4297 3.03418C15.7552 3.1809 15.25 3.7815 15.25 4.5C15.25 5.32843 15.9216 6 16.75 6H18V7.25C18 8.07843 18.6716 8.75 19.5 8.75C20.2188 8.75 20.8184 8.24424 20.9648 7.56934C21.6262 8.905 22 10.4086 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM7.17383 14.3564C7.25498 14.5445 7.34265 14.7214 7.44434 14.9004C8.33313 16.5191 10.1801 17.5462 12.001 17.5254C13.8243 17.5535 15.6645 16.4674 16.4531 14.8389C16.5443 14.6589 16.6202 14.4815 16.6895 14.2939C16.2298 14.098 15.7702 13.902 15.3105 13.7061C15.2444 13.8354 15.175 13.9544 15.0977 14.0732C14.4188 15.1319 13.2283 15.7305 12.0029 15.7246C10.7747 15.7315 9.59651 15.0724 9.00879 14.0098C8.9411 13.8906 8.88146 13.7717 8.82617 13.6436C8.27526 13.8809 7.72474 14.1191 7.17383 14.3564ZM9.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=\"M19.5 1C19.9142 1 20.25 1.33579 20.25 1.75V3.75H22.25C22.6642 3.75 23 4.08579 23 4.5C23 4.91421 22.6642 5.25 22.25 5.25H20.25V7.25C20.25 7.66421 19.9142 8 19.5 8C19.0858 8 18.75 7.66421 18.75 7.25V5.25H16.75C16.3358 5.25 16 4.91421 16 4.5C16 4.08579 16.3358 3.75 16.75 3.75H18.75V1.75C18.75 1.33579 19.0858 1 19.5 1Z\" fill=\"currentColor\"/>",
9008
+ "iconName": "emoji-add-reaction, emoji-plus",
8981
9009
  "variant": {
8982
9010
  "join": "round",
8983
9011
  "filled": "on",
8984
9012
  "radius": "2",
8985
9013
  "stroke": "1.5"
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-2-stroke-1.5",
8989
9017
  "componentName": "IconEmojiAddReaction"
8990
9018
  },
8991
- {
8992
- "category": "Emoji",
8993
- "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM8.75 10.5C9.44036 10.5 10 9.94036 10 9.25C10 8.55964 9.44036 8 8.75 8C8.05964 8 7.5 8.55964 7.5 9.25C7.5 9.94036 8.05964 10.5 8.75 10.5ZM15 9.25C15 9.94036 14.4404 10.5 13.75 10.5C13.0596 10.5 12.5 9.94036 12.5 9.25C12.5 8.55964 13.0596 8 13.75 8C14.4404 8 15 8.55964 15 9.25ZM18.1915 12.8575C18.2479 12.4471 17.9609 12.0688 17.5505 12.0124C17.1402 11.956 16.7618 12.243 16.7055 12.6534C16.4168 14.7547 14.7511 16.4193 12.6492 16.7061C12.2388 16.7621 11.9515 17.1402 12.0075 17.5506C12.0635 17.961 12.4416 18.2483 12.852 18.1923C15.6209 17.8144 17.8113 15.6257 18.1915 12.8575Z\" fill=\"currentColor\"/>",
8994
- "iconName": "emoji-alt",
8995
- "variant": {
8996
- "join": "round",
8997
- "filled": "on",
8998
- "radius": "2",
8999
- "stroke": "1.5"
9000
- },
9001
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9002
- "packageName": "round-filled-radius-2-stroke-1.5",
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-2-stroke-1.5",
9017
9031
  "componentName": "IconEmojiAstonished"
9018
9032
  },
9019
- {
9020
- "category": "Emoji",
9021
- "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 22ZM9.70221 15.9519C10.9714 14.6827 13.0292 14.6827 14.2984 15.9519C14.5913 16.2448 15.0662 16.2448 15.3591 15.9519C15.6519 15.659 15.6519 15.1841 15.3591 14.8912C13.5041 13.0363 10.4965 13.0363 8.64154 14.8912C8.34865 15.1841 8.34865 15.659 8.64154 15.9519C8.93444 16.2448 9.40931 16.2448 9.70221 15.9519ZM14.75 8.25C14.0596 8.25 13.5 8.80964 13.5 9.5C13.5 10.1904 14.0596 10.75 14.75 10.75C15.4404 10.75 16 10.1904 16 9.5C16 8.80964 15.4404 8.25 14.75 8.25ZM8 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.5Z\" fill=\"currentColor\"/>",
9022
- "iconName": "emoji-sad, unhappy",
9023
- "variant": {
9024
- "join": "round",
9025
- "filled": "on",
9026
- "radius": "2",
9027
- "stroke": "1.5"
9028
- },
9029
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9030
- "packageName": "round-filled-radius-2-stroke-1.5",
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 12ZM13.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.5ZM9.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.25ZM9.70221 14.2981C9.40931 14.0052 8.93444 14.0052 8.64155 14.2981C8.34865 14.591 8.34865 15.0659 8.64154 15.3588C10.4965 17.2138 13.5041 17.2138 15.3591 15.3588C15.6519 15.0659 15.6519 14.591 15.3591 14.2981C15.0662 14.0052 14.5913 14.0052 14.2984 14.2981C13.0292 15.5673 10.9714 15.5673 9.70221 14.2981Z\" 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.4756 14.1523C15.3157 14.1817 15.1731 14.2724 15.0752 14.4004C15.0005 14.4963 14.9238 14.5865 14.8418 14.6738C14.11 15.4577 13.0611 15.8778 12.0039 15.875C10.9465 15.8765 9.89676 15.4549 9.16211 14.6719C9.0799 14.5848 9.00271 14.4951 8.92773 14.3994C8.82964 14.2719 8.68709 14.1814 8.52734 14.1523C8.36741 14.1235 8.20242 14.1579 8.06934 14.248C7.93634 14.3383 7.84384 14.4784 7.81152 14.6377C7.77926 14.7969 7.81039 14.9622 7.89258 15.1006C7.97692 15.2397 8.06643 15.3728 8.16504 15.5029C9.04241 16.6812 10.529 17.3841 12.002 17.375C13.4748 17.3865 14.9654 16.684 15.8408 15.502C15.9391 15.3716 16.0284 15.2389 16.1123 15.0996C16.1941 14.9609 16.2251 14.7949 16.1924 14.6357C16.1596 14.4766 16.0659 14.337 15.9326 14.2471C15.7994 14.1574 15.6353 14.1232 15.4756 14.1523ZM9.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": "2",
9069
9069
  "stroke": "1.5"
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-2-stroke-1.5",
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-2-stroke-1.5",
3
- "version": "1.1.80",
3
+ "version": "1.1.81",
4
4
  "style": "round-filled-radius-2-stroke-1.5",
5
5
  "importExamples": {
6
6
  "individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-2-stroke-1.5/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";