@central-icons-react-native/round-filled-radius-2-stroke-1 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:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H10.5C10.7761 8 11 7.77614 11 7.5C11 7.22386 10.7761 7 10.5 7H5.5ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM16.5 7C16.2239 7 16 7.22386 16 7.5C16 7.77614 16.2239 8 16.5 8H18.5C18.7761 8 19 7.77614 19 7.5C19 7.22386 18.7761 7 18.5 7H16.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=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H10.5C10.7761 8 11 7.77614 11 7.5C11 7.22386 10.7761 7 10.5 7H5.5ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM16.5 7C16.2239 7 16 7.22386 16 7.5C16 7.77614 16.2239 8 16.5 8H18.5C18.7761 8 19 7.77614 19 7.5C19 7.22386 18.7761 7 18.5 7H16.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,6gBACF,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:"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H10.5C10.7761 8 11 7.77614 11 7.5C11 7.22386 10.7761 7 10.5 7H5.5ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM16.5 7C16.2239 7 16 7.22386 16 7.5C16 7.77614 16.2239 8 16.5 8H18.5C18.7761 8 19 7.77614 19 7.5C19 7.22386 18.7761 7 18.5 7H16.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=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H10.5C10.7761 8 11 7.77614 11 7.5C11 7.22386 10.7761 7 10.5 7H5.5ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM16.5 7C16.2239 7 16 7.22386 16 7.5C16 7.77614 16.2239 8 16.5 8H18.5C18.7761 8 19 7.77614 19 7.5C19 7.22386 18.7761 7 18.5 7H16.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,6gBACF,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.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z",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.5687 2 15.0527 2.36206 16.374 3.00586C15.6046 3.06987 15 3.71402 15 4.5C15 5.32843 15.6716 6 16.5 6H18V7.5C18 8.32843 18.6716 9 19.5 9C20.2863 9 20.9296 8.39488 20.9932 7.625C21.6373 8.94665 22 10.4308 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z\"\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,67CACF,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.5687 2 15.0527 2.36206 16.374 3.00586C15.6046 3.06987 15 3.71402 15 4.5C15 5.32843 15.6716 6 16.5 6H18V7.5C18 8.32843 18.6716 9 19.5 9C20.2863 9 20.9296 8.39488 20.9932 7.625C21.6373 8.94665 22 10.4308 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 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,q4CACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,uQACF,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.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z",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.5687 2 15.0527 2.36206 16.374 3.00586C15.6046 3.06987 15 3.71402 15 4.5C15 5.32843 15.6716 6 16.5 6H18V7.5C18 8.32843 18.6716 9 19.5 9C20.2863 9 20.9296 8.39488 20.9932 7.625C21.6373 8.94665 22 10.4308 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 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 fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z\"\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,67CACF,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.5687 2 15.0527 2.36206 16.374 3.00586C15.6046 3.06987 15 3.71402 15 4.5C15 5.32843 15.6716 6 16.5 6H18V7.5C18 8.32843 18.6716 9 19.5 9C20.2863 9 20.9296 8.39488 20.9932 7.625C21.6373 8.94665 22 10.4308 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 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,q4CACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,uQACF,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:"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 22ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5ZM9.52543 14.4749C9.33017 14.2796 9.01358 14.2796 8.81832 14.4749C8.62306 14.6701 8.62306 14.9867 8.81832 15.182C10.5757 16.9393 13.4249 16.9393 15.1823 15.182C15.3775 14.9867 15.3775 14.6701 15.1823 14.4749C14.987 14.2796 14.6704 14.2796 14.4752 14.4749C13.1083 15.8417 10.8923 15.8417 9.52543 14.4749Z",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 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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=\"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 22ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5ZM9.52543 14.4749C9.33017 14.2796 9.01358 14.2796 8.81832 14.4749C8.62306 14.6701 8.62306 14.9867 8.81832 15.182C10.5757 16.9393 13.4249 16.9393 15.1823 15.182C15.3775 14.9867 15.3775 14.6701 15.1823 14.4749C14.987 14.2796 14.6704 14.2796 14.4752 14.4749C13.1083 15.8417 10.8923 15.8417 9.52543 14.4749Z\"\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,kqBACF,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 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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,6sCACF,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:"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 22ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5ZM9.52543 14.4749C9.33017 14.2796 9.01358 14.2796 8.81832 14.4749C8.62306 14.6701 8.62306 14.9867 8.81832 15.182C10.5757 16.9393 13.4249 16.9393 15.1823 15.182C15.3775 14.9867 15.3775 14.6701 15.1823 14.4749C14.987 14.2796 14.6704 14.2796 14.4752 14.4749C13.1083 15.8417 10.8923 15.8417 9.52543 14.4749Z",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 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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=\"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 22ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5ZM9.52543 14.4749C9.33017 14.2796 9.01358 14.2796 8.81832 14.4749C8.62306 14.6701 8.62306 14.9867 8.81832 15.182C10.5757 16.9393 13.4249 16.9393 15.1823 15.182C15.3775 14.9867 15.3775 14.6701 15.1823 14.4749C14.987 14.2796 14.6704 14.2796 14.4752 14.4749C13.1083 15.8417 10.8923 15.8417 9.52543 14.4749Z\"\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,kqBACF,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 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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,6sCACF,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",
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"
306
+ },
307
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
308
+ "packageName": "round-filled-radius-2-stroke-1",
309
+ "componentName": "IconAiTokens"
310
+ },
297
311
  {
298
312
  "category": "AI & Magic",
299
313
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.00011 4C7.27625 4 7.50011 4.22386 7.50011 4.5V6H11.5001C11.7763 6 12.0001 6.22386 12.0001 6.5C12.0001 6.77614 11.7763 7 11.5001 7H10.9683C10.5922 9.43184 9.77268 11.3845 8.41063 12.8783C8.22166 13.0856 8.02301 13.2831 7.81461 13.4713C8.8438 14.1517 10.0993 14.6625 11.6129 15.0129C11.8819 15.0752 12.0495 15.3438 11.9872 15.6128C11.9249 15.8818 11.6564 16.0494 11.3873 15.9871C9.65777 15.5867 8.19793 14.9769 6.99933 14.1248C5.80101 14.9767 4.34171 15.5866 2.61296 15.9871C2.34395 16.0494 2.07534 15.8819 2.01301 15.6129C1.95069 15.3438 2.11824 15.0752 2.38726 15.0129C3.90006 14.6624 5.15509 14.1517 6.18406 13.4713C5.97576 13.2833 5.77721 13.0858 5.58835 12.8786C4.22631 11.3848 3.40723 9.43204 3.03188 7H2.50011C2.22397 7 2.00011 6.77614 2.00011 6.5C2.00011 6.22386 2.22397 6 2.50011 6H6.50011V4.5C6.50011 4.22386 6.72397 4 7.00011 4ZM4.04444 7C4.40833 9.22033 5.15901 10.9235 6.32731 12.2049C6.53653 12.4343 6.76033 12.6516 6.99932 12.8568C7.23842 12.6515 7.46235 12.4341 7.67167 12.2046C8.84003 10.9231 9.59109 9.22004 9.95567 7H4.04444ZM14.6214 11.9477C15.1409 10.7355 16.8593 10.7355 17.3788 11.9477L20.9596 20.303C21.0684 20.5568 20.9508 20.8508 20.697 20.9596C20.4432 21.0683 20.1493 20.9508 20.0405 20.6969L19.3132 19H12.687L11.9597 20.6969C11.8509 20.9508 11.557 21.0683 11.3032 20.9596C11.0493 20.8508 10.9318 20.5568 11.0405 20.303L14.6214 11.9477ZM13.1155 18H18.8846L16.4597 12.3416C16.2865 11.9376 15.7137 11.9376 15.5405 12.3416L13.1155 18Z\" 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",
3837
3851
  "componentName": "IconBroomSparkle"
3838
3852
  },
3853
+ {
3854
+ "category": "Interface General",
3855
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.5 4C21.3284 4 22 4.67157 22 5.5V18.5C22 19.3284 21.3284 20 20.5 20H3.5C2.67157 20 2 19.3284 2 18.5V5.5C2 4.67157 2.67157 4 3.5 4H20.5ZM5.5 7C5.22386 7 5 7.22386 5 7.5C5 7.77614 5.22386 8 5.5 8H10.5C10.7761 8 11 7.77614 11 7.5C11 7.22386 10.7761 7 10.5 7H5.5ZM12.5 7C12.2239 7 12 7.22386 12 7.5C12 7.77614 12.2239 8 12.5 8H14.5C14.7761 8 15 7.77614 15 7.5C15 7.22386 14.7761 7 14.5 7H12.5ZM16.5 7C16.2239 7 16 7.22386 16 7.5C16 7.77614 16.2239 8 16.5 8H18.5C18.7761 8 19 7.77614 19 7.5C19 7.22386 18.7761 7 18.5 7H16.5Z\" fill=\"currentColor\"/>",
3856
+ "iconName": "browser-tabs, tab-groups",
3857
+ "variant": {
3858
+ "join": "round",
3859
+ "filled": "on",
3860
+ "radius": "2",
3861
+ "stroke": "1"
3862
+ },
3863
+ "createdAt": "2025-12-22T12:01:58.743393+00:00",
3864
+ "packageName": "round-filled-radius-2-stroke-1",
3865
+ "componentName": "IconBrowserTabs"
3866
+ },
3839
3867
  {
3840
3868
  "category": "Edit",
3841
3869
  "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.56068 20.2678C2.58409 19.2916 2.58392 17.7085 3.5603 16.732L6.147 14.1452C6.7799 13.5122 6.77962 12.486 6.14638 11.8534C5.3985 11.1063 5.39817 9.89426 6.14565 9.14674L8.1353 7.15701C8.13866 7.15345 8.14207 7.14993 8.14554 7.14646L11.7313 3.56067C12.1861 3.10587 12.7726 2.86293 13.368 2.83186C14.0508 2.79618 14.7455 3.03911 15.267 3.56066L17.8528 6.14642C17.9465 6.24018 17.9992 6.36736 17.9992 6.49997L17.9992 7.99997L19.4992 7.99997C19.6318 7.99997 19.759 8.05265 19.8528 8.14642L20.4386 8.73222C21.4149 9.70852 21.4149 11.2914 20.4386 12.2677L14.8529 17.8536C14.1053 18.6011 12.8932 18.6009 12.146 17.8529C11.5133 17.2196 10.4869 17.2194 9.85395 17.8524L7.26755 20.439C6.29138 21.4152 4.70867 21.4154 3.73228 20.4394L3.56068 20.2678ZM8.49926 8.20728L15.7921 15.5001L14.1458 17.1465C13.7889 17.5034 13.2102 17.5032 12.8535 17.1462C11.8303 16.122 10.1705 16.1217 9.14681 17.1454L6.56042 19.7319C5.97472 20.3177 5.02509 20.3178 4.43926 19.7322L4.26766 19.5606C3.6817 18.9749 3.6816 18.025 4.26743 17.4391L6.85413 14.8523C7.87767 13.8286 7.87722 12.169 6.85312 11.1459C6.4961 10.7893 6.49595 10.2107 6.85278 9.85383L8.49926 8.20728Z\" 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.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z\" fill=\"currentColor\"/>",
8980
- "iconName": "emoji-add-reaction, reaction",
9007
+ "svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 2C13.5687 2 15.0527 2.36206 16.374 3.00586C15.6046 3.06987 15 3.71402 15 4.5C15 5.32843 15.6716 6 16.5 6H18V7.5C18 8.32843 18.6716 9 19.5 9C20.2863 9 20.9296 8.39488 20.9932 7.625C21.6373 8.94665 22 10.4308 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 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"
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",
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 9C8 8.44772 8.44772 8 9 8C9.55228 8 10 8.44772 10 9C10 9.55228 9.55228 10 9 10C8.44772 10 8 9.55228 8 9ZM13 9C13 8.44772 13.4477 8 14 8C14.5523 8 15 8.44772 15 9C15 9.55228 14.5523 10 14 10C13.4477 10 13 9.55228 13 9ZM17.5225 12.002C17.7975 12.0268 18.0003 12.2698 17.9756 12.5449C17.7161 15.4241 15.4241 17.7161 12.5449 17.9756C12.2698 18.0003 12.0268 17.7975 12.002 17.5225C11.9772 17.2474 12.1801 17.0044 12.4551 16.9796C14.853 16.7635 16.7635 14.853 16.9796 12.4551C17.0044 12.1801 17.2474 11.9772 17.5225 12.002Z\" fill=\"currentColor\"/>",
8994
- "iconName": "emoji-alt",
8995
- "variant": {
8996
- "join": "round",
8997
- "filled": "on",
8998
- "radius": "2",
8999
- "stroke": "1"
9000
- },
9001
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9002
- "packageName": "round-filled-radius-2-stroke-1",
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",
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.52543 16.3535C10.8923 14.9867 13.1083 14.9867 14.4752 16.3535C14.6704 16.5488 14.987 16.5488 15.1823 16.3535C15.3775 16.1582 15.3775 15.8417 15.1823 15.6464C13.4249 13.889 10.5757 13.889 8.81832 15.6464C8.62306 15.8417 8.62306 16.1582 8.81832 16.3535C9.01358 16.5488 9.33017 16.5488 9.52543 16.3535ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5Z\" fill=\"currentColor\"/>",
9022
- "iconName": "emoji-sad, unhappy",
9023
- "variant": {
9024
- "join": "round",
9025
- "filled": "on",
9026
- "radius": "2",
9027
- "stroke": "1"
9028
- },
9029
- "createdAt": "2025-02-15T21:11:33.972065+00:00",
9030
- "packageName": "round-filled-radius-2-stroke-1",
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=\"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 22ZM8 9.5C8 8.94771 8.44771 8.5 9 8.5C9.55228 8.5 10 8.94771 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44771 10.5 8 10.0523 8 9.5ZM15 8.5C14.4477 8.5 14 8.94771 14 9.5C14 10.0523 14.4477 10.5 15 10.5C15.5523 10.5 16 10.0523 16 9.5C16 8.94771 15.5523 8.5 15 8.5ZM9.52543 14.4749C9.33017 14.2796 9.01358 14.2796 8.81832 14.4749C8.62306 14.6701 8.62306 14.9867 8.81832 15.182C10.5757 16.9393 13.4249 16.9393 15.1823 15.182C15.3775 14.9867 15.3775 14.6701 15.1823 14.4749C14.987 14.2796 14.6704 14.2796 14.4752 14.4749C13.1083 15.8417 10.8923 15.8417 9.52543 14.4749Z\" 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 2ZM16.1309 13.6934C16.0496 13.6587 15.9571 13.6574 15.873 13.6895C15.789 13.7215 15.7205 13.7846 15.6777 13.8623C15.5998 14.0025 15.5185 14.132 15.4287 14.2607C14.6359 15.4098 13.3241 16.0319 12.002 16.0254C10.6798 16.0292 9.36907 15.4056 8.57227 14.2588C8.48201 14.1303 8.39981 14.0012 8.32129 13.8613C8.27831 13.7838 8.20999 13.7212 8.12598 13.6895C8.04181 13.6577 7.94933 13.6594 7.86816 13.6943C7.78706 13.7293 7.7222 13.795 7.6875 13.8779C7.65278 13.9609 7.65182 14.0541 7.67871 14.1387C7.73666 14.315 7.80172 14.4817 7.88086 14.6514C8.56042 16.1856 10.2742 17.2484 12.001 17.2246C13.7275 17.2523 15.4463 16.1893 16.1211 14.6514C16.1998 14.4814 16.2649 14.3143 16.3223 14.1377C16.3488 14.053 16.3466 13.9598 16.3115 13.877C16.2765 13.7941 16.2121 13.728 16.1309 13.6934ZM9.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"
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",
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"