@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.79 → 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.
- package/{IconEmojiAlt → IconAiTokens}/index.d.ts +2 -2
- package/IconAiTokens/index.js +2 -0
- package/IconAiTokens/index.js.map +1 -0
- package/IconAiTokens/index.mjs +2 -0
- package/IconAiTokens/index.mjs.map +1 -0
- package/IconBrowserTabs/index.d.ts +4 -0
- package/IconBrowserTabs/index.js +2 -0
- package/IconBrowserTabs/index.js.map +1 -0
- package/IconBrowserTabs/index.mjs +2 -0
- package/IconBrowserTabs/index.mjs.map +1 -0
- package/IconEmojiAddReaction/index.js +1 -1
- package/IconEmojiAddReaction/index.js.map +1 -1
- package/IconEmojiAddReaction/index.mjs +1 -1
- package/IconEmojiAddReaction/index.mjs.map +1 -1
- package/IconEmojiSmile/index.js +1 -1
- package/IconEmojiSmile/index.js.map +1 -1
- package/IconEmojiSmile/index.mjs +1 -1
- package/IconEmojiSmile/index.mjs.map +1 -1
- package/README.md +13 -11
- package/filtered-icons.json +41 -55
- package/icons/index.d.ts +2 -3
- package/icons-index.json +23 -20
- package/index.d.ts +2 -3
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/tsx-icons.json +18 -25
- package/IconEmojiAlt/index.js +0 -2
- package/IconEmojiAlt/index.js.map +0 -1
- package/IconEmojiAlt/index.mjs +0 -2
- package/IconEmojiAlt/index.mjs.map +0 -1
- package/IconEmojiArc/index.d.ts +0 -4
- package/IconEmojiArc/index.js +0 -2
- package/IconEmojiArc/index.js.map +0 -1
- package/IconEmojiArc/index.mjs +0 -2
- package/IconEmojiArc/index.mjs.map +0 -1
- package/IconEmojiSad/index.d.ts +0 -4
- package/IconEmojiSad/index.js +0 -2
- package/IconEmojiSad/index.js.map +0 -1
- package/IconEmojiSad/index.mjs +0 -2
- package/IconEmojiSad/index.mjs.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
import { type CentralIconBaseProps } from "../CentralIconBase";
|
|
3
|
-
export declare const
|
|
4
|
-
export default
|
|
3
|
+
export declare const IconAiTokens: FC<CentralIconBaseProps>;
|
|
4
|
+
export default IconAiTokens;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var n=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,L=Object.prototype.hasOwnProperty;var P=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0})},s=(r,o,e,a)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of B(o))!L.call(r,t)&&t!==e&&n(r,t,{get:()=>o[t],enumerable:!(a=x(o,t))||a.enumerable});return r};var C=(r,o,e)=>(e=r!=null?u(I(r)):{},s(o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e,r)),g=r=>s(n({},"__esModule",{value:!0}),r);var y={};P(y,{IconAiTokens:()=>i,default:()=>v});module.exports=g(y);var p=C(require("react"));var c=C(require("react")),m=require("react-native-svg"),f=({children:r,size:o=24,...e})=>c.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 l=require("react-native-svg"),i=r=>p.default.createElement(f,{...r},p.default.createElement(l.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),p.default.createElement(l.Path,{d:"M12.5 6.84863H11.5L10.25 10.0986L7 11.3486V12.3486L10.25 13.5986L11.5 16.8486H12.5L13.75 13.5986L17 12.3486V11.3486L13.75 10.0986L12.5 6.84863Z",fill:"currentColor"})),v=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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconAiTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path\n d=\"M12.5 6.84863H11.5L10.25 10.0986L7 11.3486V12.3486L10.25 13.5986L11.5 16.8486H12.5L13.75 13.5986L17 12.3486V11.3486L13.75 10.0986L12.5 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,EAA6B,4BAEhBC,EAA0CC,GAEnD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,kJACF,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 e from"react";import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...n})=>p.createElement(l,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Circle as a,Path as s}from"react-native-svg";var C=o=>e.createElement(t,{...o},e.createElement(a,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.createElement(s,{d:"M12.5 6.84863H11.5L10.25 10.0986L7 11.3486V12.3486L10.25 13.5986L11.5 16.8486H12.5L13.75 13.5986L17 12.3486V11.3486L13.75 10.0986L12.5 6.84863Z",fill:"currentColor"})),P=C;export{C as IconAiTokens,P 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconAiTokens: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path\n d=\"M12.5 6.84863H11.5L10.25 10.0986L7 11.3486V12.3486L10.25 13.5986L11.5 16.8486H12.5L13.75 13.5986L17 12.3486V11.3486L13.75 10.0986L12.5 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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA0CC,GAEnDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDI,EAAA,cAACH,EAAA,CACC,EAAE,kJACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","Path","IconAiTokens","props","React","CentralIconBase","IconAiTokens_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var B=Object.create;var s=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,d=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)s(r,t,{get:o[t],enumerable:!0})},l=(r,o,t,C)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of x(o))!d.call(r,n)&&n!==t&&s(r,n,{get:()=>o[n],enumerable:!(C=I(o,n))||C.enumerable});return r};var a=(r,o,t)=>(t=r!=null?B(P(r)):{},l(o||!r||!r.__esModule?s(t,"default",{value:r,enumerable:!0}):t,r)),i=r=>l(s({},"__esModule",{value:!0}),r);var b={};g(b,{IconBrowserTabs:()=>f,default:()=>v});module.exports=i(b);var e=a(require("react"));var m=a(require("react")),c=require("react-native-svg"),u=({children:r,size:o=24,...t})=>m.default.createElement(c.Svg,{...t,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var p=require("react-native-svg"),f=r=>e.default.createElement(u,{...r},e.default.createElement(p.Path,{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M5 7.5L11 7.5",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M16 7.5L19 7.5",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M12 7.5L15 7.5",stroke:"currentColor"})),v=f;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 d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\" />\n <Path d=\"M5 7.5L11 7.5\" stroke=\"currentColor\" />\n <Path d=\"M16 7.5L19 7.5\" stroke=\"currentColor\" />\n <Path d=\"M12 7.5L15 7.5\" stroke=\"currentColor\" />\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,QAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7D,EAAAA,QAAA,cAAC,QAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9C,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/C,EAAAA,QAAA,cAAC,QAAK,EAAE,iBAAiB,OAAO,eAAe,CACjD,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 o from"react";import s from"react";import{Svg as C}from"react-native-svg";var n=({children:e,size:r=24,...p})=>s.createElement(C,{...p,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e);import{Path as t}from"react-native-svg";var l=e=>o.createElement(n,{...e},o.createElement(t,{d:"M21.5 4.5H2.5V19.5H21.5V4.5Z",stroke:"currentColor"}),o.createElement(t,{d:"M5 7.5L11 7.5",stroke:"currentColor"}),o.createElement(t,{d:"M16 7.5L19 7.5",stroke:"currentColor"}),o.createElement(t,{d:"M12 7.5L15 7.5",stroke:"currentColor"})),d=l;export{l 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 d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\" />\n <Path d=\"M5 7.5L11 7.5\" stroke=\"currentColor\" />\n <Path d=\"M16 7.5L19 7.5\" stroke=\"currentColor\" />\n <Path d=\"M12 7.5L15 7.5\" stroke=\"currentColor\" />\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,CAAK,EAAE,+BAA+B,OAAO,eAAe,EAC7DG,EAAA,cAACH,EAAA,CAAK,EAAE,gBAAgB,OAAO,eAAe,EAC9CG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,EAC/CG,EAAA,cAACH,EAAA,CAAK,EAAE,iBAAiB,OAAO,eAAe,CACjD,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
|
|
1
|
+
"use strict";var i=Object.create;var l=Object.defineProperty;var d=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,x=Object.prototype.hasOwnProperty;var M=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},s=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of B(o))!x.call(r,e)&&e!==C&&l(r,e,{get:()=>o[e],enumerable:!(p=d(o,e))||p.enumerable});return r};var m=(r,o,C)=>(C=r!=null?i(I(r)):{},s(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),P=r=>s(l({},"__esModule",{value:!0}),r);var v={};M(v,{IconEmojiAddReaction:()=>c,default:()=>g});module.exports=P(v);var t=m(require("react"));var f=m(require("react")),u=require("react-native-svg"),a=({children:r,size:o=24,...C})=>f.default.createElement(u.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var n=require("react-native-svg"),c=r=>t.default.createElement(a,{...r},t.default.createElement(n.Path,{d:"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M19.5 1V8M16 4.5H23",stroke:"currentColor"}),t.default.createElement(n.Path,{d:"M16.322 13.8873C16.1073 13.7958 15.8927 13.7042 15.678 13.6127C15.6001 13.7529 15.519 13.8817 15.4292 14.0104C14.6364 15.1597 13.3246 15.7815 12.0023 15.775C10.6799 15.7789 9.36866 15.1557 8.5718 14.0085C8.48154 13.88 8.39996 13.7514 8.32144 13.6115C8.10715 13.7038 7.89285 13.7962 7.67856 13.8885C7.73654 14.0649 7.80159 14.2318 7.88081 14.4016C8.5604 15.936 10.2744 16.9989 12.0012 16.975C13.7278 17.0027 15.4467 15.9394 16.1214 14.4013C16.2001 14.2312 16.2646 14.064 16.322 13.8873Z",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z",fill:"currentColor"}),t.default.createElement(n.Path,{d:"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11",stroke:"currentColor"})),g=c;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 {
|
|
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=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\"\n stroke=\"currentColor\"\n />\n <Path d=\"M19.5 1V8M16 4.5H23\" stroke=\"currentColor\" />\n <Path\n d=\"M16.322 13.8873C16.1073 13.7958 15.8927 13.7042 15.678 13.6127C15.6001 13.7529 15.519 13.8817 15.4292 14.0104C14.6364 15.1597 13.3246 15.7815 12.0023 15.775C10.6799 15.7789 9.36866 15.1557 8.5718 14.0085C8.48154 13.88 8.39996 13.7514 8.32144 13.6115C8.10715 13.7038 7.89285 13.7962 7.67856 13.8885C7.73654 14.0649 7.80159 14.2318 7.88081 14.4016C8.5604 15.936 10.2744 16.9989 12.0012 16.975C13.7278 17.0027 15.4467 15.9394 16.1214 14.4013C16.2001 14.2312 16.2646 14.064 16.322 13.8873Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\"\n stroke=\"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,EAAE,wLACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QAAK,EAAE,sBAAsB,OAAO,eAAe,EACpD,EAAAA,QAAA,cAAC,QACC,EAAE,weACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,yJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,wLACF,OAAO,eACT,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
|
|
1
|
+
import r from"react";import l from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:o=24,...e})=>l.createElement(p,{...e,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},t);import{Path as C}from"react-native-svg";var s=t=>r.createElement(n,{...t},r.createElement(C,{d:"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11",stroke:"currentColor"}),r.createElement(C,{d:"M19.5 1V8M16 4.5H23",stroke:"currentColor"}),r.createElement(C,{d:"M16.322 13.8873C16.1073 13.7958 15.8927 13.7042 15.678 13.6127C15.6001 13.7529 15.519 13.8817 15.4292 14.0104C14.6364 15.1597 13.3246 15.7815 12.0023 15.775C10.6799 15.7789 9.36866 15.1557 8.5718 14.0085C8.48154 13.88 8.39996 13.7514 8.32144 13.6115C8.10715 13.7038 7.89285 13.7962 7.67856 13.8885C7.73654 14.0649 7.80159 14.2318 7.88081 14.4016C8.5604 15.936 10.2744 16.9989 12.0012 16.975C13.7278 17.0027 15.4467 15.9394 16.1214 14.4013C16.2001 14.2312 16.2646 14.064 16.322 13.8873Z",fill:"currentColor"}),r.createElement(C,{d:"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z",fill:"currentColor"}),r.createElement(C,{d:"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z",fill:"currentColor"}),r.createElement(C,{d:"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11",stroke:"currentColor"})),x=s;export{s as IconEmojiAddReaction,x 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 {
|
|
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=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\"\n stroke=\"currentColor\"\n />\n <Path d=\"M19.5 1V8M16 4.5H23\" stroke=\"currentColor\" />\n <Path\n d=\"M16.322 13.8873C16.1073 13.7958 15.8927 13.7042 15.678 13.6127C15.6001 13.7529 15.519 13.8817 15.4292 14.0104C14.6364 15.1597 13.3246 15.7815 12.0023 15.775C10.6799 15.7789 9.36866 15.1557 8.5718 14.0085C8.48154 13.88 8.39996 13.7514 8.32144 13.6115C8.10715 13.7038 7.89285 13.7962 7.67856 13.8885C7.73654 14.0649 7.80159 14.2318 7.88081 14.4016C8.5604 15.936 10.2744 16.9989 12.0012 16.975C13.7278 17.0027 15.4467 15.9394 16.1214 14.4013C16.2001 14.2312 16.2646 14.064 16.322 13.8873Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\"\n stroke=\"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,EAAE,wLACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CAAK,EAAE,sBAAsB,OAAO,eAAe,EACpDG,EAAA,cAACH,EAAA,CACC,EAAE,weACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,yJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,wLACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}
|
package/IconEmojiSmile/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var u=Object.create;var l=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var B=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var C in o)l(r,C,{get:o[C],enumerable:!0})},m=(r,o,C,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of B(o))!P.call(r,n)&&n!==C&&l(r,n,{get:()=>o[n],enumerable:!(p=x(o,n))||p.enumerable});return r};var c=(r,o,C)=>(C=r!=null?u(I(r)):{},m(o||!r||!r.__esModule?l(C,"default",{value:r,enumerable:!0}):C,r)),d=r=>m(l({},"__esModule",{value:!0}),r);var y={};g(y,{IconEmojiSmile:()=>i,default:()=>v});module.exports=d(y);var e=c(require("react"));var s=c(require("react")),a=require("react-native-svg"),f=({children:r,size:o=24,...C})=>s.default.createElement(a.Svg,{...C,width:typeof o=="number"?`${o}px`:o,height:typeof o=="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r);var t=require("react-native-svg"),i=r=>e.default.createElement(f,{...r},e.default.createElement(t.Circle,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),e.default.createElement(t.Path,{d:"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z",fill:"currentColor"}),e.default.createElement(t.Path,{d:"M16.322 14.1373C16.1073 14.0458 15.8927 13.9542 15.678 13.8627C15.6001 14.0029 15.519 14.1317 15.4292 14.2604C14.6364 15.4097 13.3246 16.0315 12.0023 16.025C10.6799 16.0289 9.36866 15.4057 8.5718 14.2585C8.48154 14.13 8.39996 14.0014 8.32144 13.8615C8.10715 13.9538 7.89285 14.0462 7.67856 14.1385C7.73654 14.3149 7.80159 14.4818 7.88081 14.6516C8.5604 16.186 10.2744 17.2489 12.0012 17.225C13.7278 17.2527 15.4467 16.1894 16.1214 14.6513C16.2001 14.4812 16.2646 14.314 16.322 14.1373Z",fill:"currentColor"})),v=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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path\n d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.322 14.1373C16.1073 14.0458 15.8927 13.9542 15.678 13.8627C15.6001 14.0029 15.519 14.1317 15.4292 14.2604C14.6364 15.4097 13.3246 16.0315 12.0023 16.025C10.6799 16.0289 9.36866 15.4057 8.5718 14.2585C8.48154 14.13 8.39996 14.0014 8.32144 13.8615C8.10715 13.9538 7.89285 14.0462 7.67856 14.1385C7.73654 14.3149 7.80159 14.4818 7.88081 14.6516C8.5604 16.186 10.2744 17.2489 12.0012 17.225C13.7278 17.2527 15.4467 16.1894 16.1214 14.6513C16.2001 14.4812 16.2646 14.314 16.322 14.1373Z\"\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,EAA6B,4BAEhBC,EAA4CC,GAErD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtD,EAAAA,QAAA,cAAC,QACC,EAAE,yJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8JACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,weACF,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"]}
|
package/IconEmojiSmile/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import o from"react";import
|
|
1
|
+
import o from"react";import l from"react";import{Svg as p}from"react-native-svg";var t=({children:C,size:r=24,...n})=>l.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C);import{Circle as m,Path as e}from"react-native-svg";var c=C=>o.createElement(t,{...C},o.createElement(m,{cx:"12",cy:"12",r:"9.5",stroke:"currentColor"}),o.createElement(e,{d:"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z",fill:"currentColor"}),o.createElement(e,{d:"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z",fill:"currentColor"}),o.createElement(e,{d:"M16.322 14.1373C16.1073 14.0458 15.8927 13.9542 15.678 13.8627C15.6001 14.0029 15.519 14.1317 15.4292 14.2604C14.6364 15.4097 13.3246 16.0315 12.0023 16.025C10.6799 16.0289 9.36866 15.4057 8.5718 14.2585C8.48154 14.13 8.39996 14.0014 8.32144 13.8615C8.10715 13.9538 7.89285 14.0462 7.67856 14.1385C7.73654 14.3149 7.80159 14.4818 7.88081 14.6516C8.5604 16.186 10.2744 17.2489 12.0012 17.225C13.7278 17.2527 15.4467 16.1894 16.1214 14.6513C16.2001 14.4812 16.2646 14.314 16.322 14.1373Z",fill:"currentColor"})),g=c;export{c as IconEmojiSmile,g 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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"
|
|
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 { Circle, Path } from \"react-native-svg\";\n\nexport const IconEmojiSmile: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" />\n <Path\n d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M16.322 14.1373C16.1073 14.0458 15.8927 13.9542 15.678 13.8627C15.6001 14.0029 15.519 14.1317 15.4292 14.2604C14.6364 15.4097 13.3246 16.0315 12.0023 16.025C10.6799 16.0289 9.36866 15.4057 8.5718 14.2585C8.48154 14.13 8.39996 14.0014 8.32144 13.8615C8.10715 13.9538 7.89285 14.0462 7.67856 14.1385C7.73654 14.3149 7.80159 14.4818 7.88081 14.6516C8.5604 16.186 10.2744 17.2489 12.0012 17.225C13.7278 17.2527 15.4467 16.1894 16.1214 14.6513C16.2001 14.4812 16.2646 14.314 16.322 14.1373Z\"\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,UAAAG,EAAQ,QAAAC,MAAY,mBAEtB,IAAMC,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACJ,EAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,MAAM,OAAO,eAAe,EACtDI,EAAA,cAACH,EAAA,CACC,EAAE,yJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8JACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,weACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Circle","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
|
|
@@ -690,6 +691,17 @@ Below is a complete list of available icons:
|
|
|
690
691
|
- IconWrite2
|
|
691
692
|
- IconWriting
|
|
692
693
|
|
|
694
|
+
### Emoji
|
|
695
|
+
|
|
696
|
+
- IconAlien
|
|
697
|
+
- IconEmojiAddReaction
|
|
698
|
+
- IconEmojiSleep
|
|
699
|
+
- IconEmojiSmile
|
|
700
|
+
- IconEmojiSmiley
|
|
701
|
+
- IconEmojiSmilingFace
|
|
702
|
+
- IconMask
|
|
703
|
+
- IconPoop
|
|
704
|
+
|
|
693
705
|
### Filter & Settings
|
|
694
706
|
|
|
695
707
|
- IconBlockSortAscending
|
|
@@ -945,6 +957,7 @@ Below is a complete list of available icons:
|
|
|
945
957
|
- IconBrokenChainLink2
|
|
946
958
|
- IconBrokenChainLink3
|
|
947
959
|
- IconBrokenHeart
|
|
960
|
+
- IconBrowserTabs
|
|
948
961
|
- IconBucket
|
|
949
962
|
- IconChainLink1
|
|
950
963
|
- IconChainLink2
|
|
@@ -1632,7 +1645,6 @@ Below is a complete list of available icons:
|
|
|
1632
1645
|
|
|
1633
1646
|
### Things
|
|
1634
1647
|
|
|
1635
|
-
- IconAlien
|
|
1636
1648
|
- IconAnvil
|
|
1637
1649
|
- IconBackpack
|
|
1638
1650
|
- IconBag
|
|
@@ -1662,16 +1674,8 @@ Below is a complete list of available icons:
|
|
|
1662
1674
|
- IconDirectorChair
|
|
1663
1675
|
- IconDoorHanger
|
|
1664
1676
|
- IconDumbell
|
|
1665
|
-
- IconEmojiAddReaction
|
|
1666
|
-
- IconEmojiAlt
|
|
1667
|
-
- IconEmojiArc
|
|
1668
1677
|
- IconEmojiAstonished
|
|
1669
|
-
- IconEmojiSad
|
|
1670
1678
|
- IconEmojiSadTear
|
|
1671
|
-
- IconEmojiSleep
|
|
1672
|
-
- IconEmojiSmile
|
|
1673
|
-
- IconEmojiSmiley
|
|
1674
|
-
- IconEmojiSmilingFace
|
|
1675
1679
|
- IconExplosion
|
|
1676
1680
|
- IconFashion
|
|
1677
1681
|
- IconFire1
|
|
@@ -1693,7 +1697,6 @@ Below is a complete list of available icons:
|
|
|
1693
1697
|
- IconLimit
|
|
1694
1698
|
- IconLiveActivity
|
|
1695
1699
|
- IconMakeItPop
|
|
1696
|
-
- IconMask
|
|
1697
1700
|
- IconMedal
|
|
1698
1701
|
- IconMedicinePill
|
|
1699
1702
|
- IconMedicinePill2
|
|
@@ -1714,7 +1717,6 @@ Below is a complete list of available icons:
|
|
|
1714
1717
|
- IconPlugin1
|
|
1715
1718
|
- IconPlugin2
|
|
1716
1719
|
- IconPokeball
|
|
1717
|
-
- IconPoop
|
|
1718
1720
|
- IconPropeller
|
|
1719
1721
|
- IconPushTheButton
|
|
1720
1722
|
- IconPuzzle
|
package/filtered-icons.json
CHANGED
|
@@ -294,6 +294,20 @@
|
|
|
294
294
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
295
295
|
"componentName": "IconAirpods"
|
|
296
296
|
},
|
|
297
|
+
{
|
|
298
|
+
"category": "AI & Magic",
|
|
299
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M12.5 6.84863H11.5L10.25 10.0986L7 11.3486V12.3486L10.25 13.5986L11.5 16.8486H12.5L13.75 13.5986L17 12.3486V11.3486L13.75 10.0986L12.5 6.84863Z\" fill=\"currentColor\"/>",
|
|
300
|
+
"iconName": "ai-tokens, credits",
|
|
301
|
+
"variant": {
|
|
302
|
+
"join": "square",
|
|
303
|
+
"filled": "off",
|
|
304
|
+
"radius": "0",
|
|
305
|
+
"stroke": "1"
|
|
306
|
+
},
|
|
307
|
+
"createdAt": "2025-12-22T12:01:58.743393+00:00",
|
|
308
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
309
|
+
"componentName": "IconAiTokens"
|
|
310
|
+
},
|
|
297
311
|
{
|
|
298
312
|
"category": "AI & Magic",
|
|
299
313
|
"svg": "<path d=\"M2.5 6.5L11.5 6.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M7 6.5V4.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M11.5 15.5C6.6822 14.3846 4.20506 11.6434 3.5 6.75\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M2.5 15.5C7.31602 14.3842 9.79342 11.6429 10.5 6.75\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M11.5 20.5L15.75 11.5H16.25L20.4999 20.5M13 18.5H19\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M17.85 2H17.15L16.275 4.275L14 5.15V5.85L16.275 6.725L17.15 9H17.85L18.725 6.725L21 5.85V5.15L18.725 4.275L17.85 2Z\" fill=\"currentColor\"/>",
|
|
@@ -323,7 +337,7 @@
|
|
|
323
337
|
"componentName": "IconAlbums"
|
|
324
338
|
},
|
|
325
339
|
{
|
|
326
|
-
"category": "
|
|
340
|
+
"category": "Emoji",
|
|
327
341
|
"svg": "<path d=\"M20.5 10.9211C20.5 17.2368 14.125 22.5 12 22.5C9.875 22.5 3.5 17.2368 3.5 10.9211C3.5 6.27023 7.30558 2.5 12 2.5C16.6944 2.5 20.5 6.27023 20.5 10.9211Z\" stroke=\"currentColor\"/><path d=\"M7.66158 11.0391L9.86888 13.0171M9.78248 12.4048L8.3033 11.0793M7.72454 11.6592L9.20372 12.9847M7.01154 10.4343C9.1742 10.1063 10.4656 11.0566 10.4684 13.5705C8.35814 13.7522 6.87311 12.9452 7.01154 10.4343Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M16.3384 11.0391L14.1311 13.0171M14.2175 12.4048L15.6967 11.0793M16.2755 11.6592L14.7963 12.9847M16.9885 10.4343C14.8258 10.1063 13.5344 11.0566 13.5316 13.5705C15.6419 13.7522 17.1269 12.9452 16.9885 10.4343Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
328
342
|
"iconName": "alien",
|
|
329
343
|
"variant": {
|
|
@@ -3836,6 +3850,20 @@
|
|
|
3836
3850
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3837
3851
|
"componentName": "IconBroomSparkle"
|
|
3838
3852
|
},
|
|
3853
|
+
{
|
|
3854
|
+
"category": "Interface General",
|
|
3855
|
+
"svg": "<path d=\"M21.5 4.5H2.5V19.5H21.5V4.5Z\" stroke=\"currentColor\"/><path d=\"M5 7.5L11 7.5\" stroke=\"currentColor\"/><path d=\"M16 7.5L19 7.5\" stroke=\"currentColor\"/><path d=\"M12 7.5L15 7.5\" stroke=\"currentColor\"/>",
|
|
3856
|
+
"iconName": "browser-tabs, tab-groups",
|
|
3857
|
+
"variant": {
|
|
3858
|
+
"join": "square",
|
|
3859
|
+
"filled": "off",
|
|
3860
|
+
"radius": "0",
|
|
3861
|
+
"stroke": "1"
|
|
3862
|
+
},
|
|
3863
|
+
"createdAt": "2025-12-22T12:01:58.743393+00:00",
|
|
3864
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
3865
|
+
"componentName": "IconBrowserTabs"
|
|
3866
|
+
},
|
|
3839
3867
|
{
|
|
3840
3868
|
"category": "Edit",
|
|
3841
3869
|
"svg": "<path d=\"M13.4998 18.5001L13.1223 18.1222C11.9509 16.9497 10.0505 16.9492 8.87858 18.1213L5.50055 21.4995L2.5 18.5001L5.87865 15.1212C7.05058 13.9492 7.05006 12.0489 5.87749 10.8776L5.49982 10.5003L13.4997 2.5L17.4997 6.5L17.4997 8.5H19.4997L21.4997 10.5L13.4998 18.5001Z\" stroke=\"currentColor\"/><path d=\"M16.5 15.5L8.5 7.5\" stroke=\"currentColor\"/>",
|
|
@@ -8975,47 +9003,19 @@
|
|
|
8975
9003
|
"componentName": "IconEmailSettings"
|
|
8976
9004
|
},
|
|
8977
9005
|
{
|
|
8978
|
-
"category": "
|
|
8979
|
-
"svg": "<path d=\"
|
|
8980
|
-
"iconName": "emoji-add-reaction,
|
|
9006
|
+
"category": "Emoji",
|
|
9007
|
+
"svg": "<path d=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\" stroke=\"currentColor\"/><path d=\"M19.5 1V8M16 4.5H23\" stroke=\"currentColor\"/><path d=\"M16.322 13.8873C16.1073 13.7958 15.8927 13.7042 15.678 13.6127C15.6001 13.7529 15.519 13.8817 15.4292 14.0104C14.6364 15.1597 13.3246 15.7815 12.0023 15.775C10.6799 15.7789 9.36866 15.1557 8.5718 14.0085C8.48154 13.88 8.39996 13.7514 8.32144 13.6115C8.10715 13.7038 7.89285 13.7962 7.67856 13.8885C7.73654 14.0649 7.80159 14.2318 7.88081 14.4016C8.5604 15.936 10.2744 16.9989 12.0012 16.975C13.7278 17.0027 15.4467 15.9394 16.1214 14.4013C16.2001 14.2312 16.2646 14.064 16.322 13.8873Z\" fill=\"currentColor\"/><path d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\" fill=\"currentColor\"/><path d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\" fill=\"currentColor\"/><path d=\"M13 2.552C12.6714 2.51762 12.3377 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 11.6623 21.4824 11.3286 21.448 11\" stroke=\"currentColor\"/>",
|
|
9008
|
+
"iconName": "emoji-add-reaction, emoji-plus",
|
|
8981
9009
|
"variant": {
|
|
8982
9010
|
"join": "square",
|
|
8983
9011
|
"filled": "off",
|
|
8984
9012
|
"radius": "0",
|
|
8985
9013
|
"stroke": "1"
|
|
8986
9014
|
},
|
|
8987
|
-
"createdAt": "2025-
|
|
9015
|
+
"createdAt": "2025-12-22T12:01:58.743393+00:00",
|
|
8988
9016
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
8989
9017
|
"componentName": "IconEmojiAddReaction"
|
|
8990
9018
|
},
|
|
8991
|
-
{
|
|
8992
|
-
"category": "Things",
|
|
8993
|
-
"svg": "<path d=\"M9.5 9C9.5 9.27614 9.27614 9.5 9 9.5C8.72386 9.5 8.5 9.27614 8.5 9C8.5 8.72386 8.72386 8.5 9 8.5C9.27614 8.5 9.5 8.72386 9.5 9Z\" stroke=\"currentColor\"/><path d=\"M14.5 9C14.5 9.27614 14.2761 9.5 14 9.5C13.7239 9.5 13.5 9.27614 13.5 9C13.5 8.72386 13.7239 8.5 14 8.5C14.2761 8.5 14.5 8.72386 14.5 9Z\" stroke=\"currentColor\"/><path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/><path d=\"M17.5 12C17.5 15.0376 15.0376 17.5 12 17.5\" stroke=\"currentColor\"/>",
|
|
8994
|
-
"iconName": "emoji-alt",
|
|
8995
|
-
"variant": {
|
|
8996
|
-
"join": "square",
|
|
8997
|
-
"filled": "off",
|
|
8998
|
-
"radius": "0",
|
|
8999
|
-
"stroke": "1"
|
|
9000
|
-
},
|
|
9001
|
-
"createdAt": "2025-02-15T21:11:33.972065+00:00",
|
|
9002
|
-
"packageName": "square-outlined-radius-0-stroke-1",
|
|
9003
|
-
"componentName": "IconEmojiAlt"
|
|
9004
|
-
},
|
|
9005
|
-
{
|
|
9006
|
-
"category": "Things",
|
|
9007
|
-
"svg": "<path d=\"M12 21.5C17.2467 21.5 21.5 17.2467 21.5 12C21.5 6.75329 17.2467 2.5 12 2.5C6.75329 2.5 2.5 6.75329 2.5 12C2.5 17.2467 6.75329 21.5 12 21.5Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M8.5 15.4305C10.5 16.9 13.5 16.9 15.5 15.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M9.5 7.5V11.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M14.5 7.5V11.5\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
9008
|
-
"iconName": "emoji-arc",
|
|
9009
|
-
"variant": {
|
|
9010
|
-
"join": "square",
|
|
9011
|
-
"filled": "off",
|
|
9012
|
-
"radius": "0",
|
|
9013
|
-
"stroke": "1"
|
|
9014
|
-
},
|
|
9015
|
-
"createdAt": "2025-02-15T21:11:33.972065+00:00",
|
|
9016
|
-
"packageName": "square-outlined-radius-0-stroke-1",
|
|
9017
|
-
"componentName": "IconEmojiArc"
|
|
9018
|
-
},
|
|
9019
9019
|
{
|
|
9020
9020
|
"category": "Things",
|
|
9021
9021
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M14 15.5C14 17.2259 13.1046 18 12 18C10.8954 18 10 17.2259 10 15.5C10 13.7741 10.8954 13 12 13C13.1046 13 14 13.7741 14 15.5Z\" fill=\"currentColor\"/><ellipse cx=\"9.25\" cy=\"10.5\" rx=\"1.25\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"14.75\" cy=\"10.5\" rx=\"1.25\" ry=\"1.5\" fill=\"currentColor\"/><path d=\"M9.94604 6.90072C10.2513 7.58265 9.19925 7.67809 8.35448 8.12658C7.4906 8.58521 6.82717 9.3828 6.56041 8.78772C6.00948 7.557 9.39391 5.66907 9.94604 6.90072Z\" fill=\"currentColor\"/><path d=\"M14.054 6.90072C13.7487 7.58265 14.8008 7.67809 15.6455 8.12658C16.5094 8.58521 17.1728 9.3828 17.4396 8.78772C17.9905 7.557 14.6061 5.66907 14.054 6.90072Z\" fill=\"currentColor\"/>",
|
|
@@ -9030,20 +9030,6 @@
|
|
|
9030
9030
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
9031
9031
|
"componentName": "IconEmojiAstonished"
|
|
9032
9032
|
},
|
|
9033
|
-
{
|
|
9034
|
-
"category": "Things",
|
|
9035
|
-
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.17188 16C10.734 14.4379 13.2666 14.4379 14.8287 16\" stroke=\"currentColor\" stroke-linecap=\"square\"/><circle cx=\"9\" cy=\"9.5\" r=\"0.5\" stroke=\"currentColor\"/><circle cx=\"15\" cy=\"9.5\" r=\"0.5\" stroke=\"currentColor\"/>",
|
|
9036
|
-
"iconName": "emoji-sad, unhappy",
|
|
9037
|
-
"variant": {
|
|
9038
|
-
"join": "square",
|
|
9039
|
-
"filled": "off",
|
|
9040
|
-
"radius": "0",
|
|
9041
|
-
"stroke": "1"
|
|
9042
|
-
},
|
|
9043
|
-
"createdAt": "2025-02-15T21:11:33.972065+00:00",
|
|
9044
|
-
"packageName": "square-outlined-radius-0-stroke-1",
|
|
9045
|
-
"componentName": "IconEmojiSad"
|
|
9046
|
-
},
|
|
9047
9033
|
{
|
|
9048
9034
|
"category": "Things",
|
|
9049
9035
|
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M12 14.2295C12.5778 14.2295 13.1089 14.3862 13.5322 14.6113C13.5206 14.7069 13.5121 14.8017 13.5068 14.8955C13.4876 15.2364 13.5096 15.5853 13.5898 15.9189C13.1578 15.8344 12.6038 15.7139 12 15.7139C10.6193 15.7139 9.5 16.3463 9.5 15.7295C9.50041 15.1127 10.6195 14.2295 12 14.2295Z\" fill=\"currentColor\"/><ellipse cx=\"9.25\" cy=\"10\" rx=\"1.25\" ry=\"1.5\" fill=\"currentColor\"/><ellipse cx=\"14.75\" cy=\"10\" rx=\"1.25\" ry=\"1.5\" fill=\"currentColor\"/><path d=\"M15.9999 11.5C13.9322 13.3333 13.4153 17 16.0001 17C18.5849 17 18.0676 13.3333 15.9999 11.5Z\" fill=\"currentColor\"/>",
|
|
@@ -9059,7 +9045,7 @@
|
|
|
9059
9045
|
"componentName": "IconEmojiSadTear"
|
|
9060
9046
|
},
|
|
9061
9047
|
{
|
|
9062
|
-
"category": "
|
|
9048
|
+
"category": "Emoji",
|
|
9063
9049
|
"svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M9.68359 15.9259C11.2887 16.558 12.71 16.558 14.3152 15.9259\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M6.5 10C7.28571 10.8136 9.38095 10.8136 10.1667 10\" stroke=\"currentColor\" stroke-linecap=\"square\"/><path d=\"M13.832 10C14.6177 10.8136 16.713 10.8136 17.4987 10\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
9064
9050
|
"iconName": "emoji-sleep,snooze",
|
|
9065
9051
|
"variant": {
|
|
@@ -9073,8 +9059,8 @@
|
|
|
9073
9059
|
"componentName": "IconEmojiSleep"
|
|
9074
9060
|
},
|
|
9075
9061
|
{
|
|
9076
|
-
"category": "
|
|
9077
|
-
"svg": "<
|
|
9062
|
+
"category": "Emoji",
|
|
9063
|
+
"svg": "<circle cx=\"12\" cy=\"12\" r=\"9.5\" stroke=\"currentColor\"/><path d=\"M10.75 9.9C10.75 11.0046 10.0784 11.75 9.25 11.75C8.42157 11.75 7.75 11.0046 7.75 9.9C7.75 8.79543 8.42157 8 9.25 8C10.0784 8 10.75 8.79543 10.75 9.9Z\" fill=\"currentColor\"/><path d=\"M16.25 9.9C16.25 11.0046 15.5784 11.75 14.75 11.75C13.9216 11.75 13.25 11.0046 13.25 9.9C13.25 8.79543 13.9216 8 14.75 8C15.5784 8 16.25 8.79543 16.25 9.9Z\" fill=\"currentColor\"/><path d=\"M16.322 14.1373C16.1073 14.0458 15.8927 13.9542 15.678 13.8627C15.6001 14.0029 15.519 14.1317 15.4292 14.2604C14.6364 15.4097 13.3246 16.0315 12.0023 16.025C10.6799 16.0289 9.36866 15.4057 8.5718 14.2585C8.48154 14.13 8.39996 14.0014 8.32144 13.8615C8.10715 13.9538 7.89285 14.0462 7.67856 14.1385C7.73654 14.3149 7.80159 14.4818 7.88081 14.6516C8.5604 16.186 10.2744 17.2489 12.0012 17.225C13.7278 17.2527 15.4467 16.1894 16.1214 14.6513C16.2001 14.4812 16.2646 14.314 16.322 14.1373Z\" fill=\"currentColor\"/>",
|
|
9078
9064
|
"iconName": "emoji-smile",
|
|
9079
9065
|
"variant": {
|
|
9080
9066
|
"join": "square",
|
|
@@ -9082,12 +9068,12 @@
|
|
|
9082
9068
|
"radius": "0",
|
|
9083
9069
|
"stroke": "1"
|
|
9084
9070
|
},
|
|
9085
|
-
"createdAt": "2025-
|
|
9071
|
+
"createdAt": "2025-12-22T12:01:58.743393+00:00",
|
|
9086
9072
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
9087
9073
|
"componentName": "IconEmojiSmile"
|
|
9088
9074
|
},
|
|
9089
9075
|
{
|
|
9090
|
-
"category": "
|
|
9076
|
+
"category": "Emoji",
|
|
9091
9077
|
"svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/><path d=\"M17.5 12C17.5 15.0376 15.0376 17.5 12 17.5C8.96243 17.5 6.5 15.0376 6.5 12\" stroke=\"currentColor\"/><path d=\"M10.5 9C10.5 9.55228 10.0523 10 9.5 10C8.94772 10 8.5 9.55228 8.5 9C8.5 8.44772 8.94772 8 9.5 8C10.0523 8 10.5 8.44772 10.5 9Z\" stroke=\"currentColor\"/><path d=\"M9 9H10\" stroke=\"currentColor\"/><path d=\"M15.5 9C15.5 9.55228 15.0523 10 14.5 10C13.9477 10 13.5 9.55228 13.5 9C13.5 8.44772 13.9477 8 14.5 8C15.0523 8 15.5 8.44772 15.5 9Z\" stroke=\"currentColor\"/><path d=\"M14 9H15\" stroke=\"currentColor\"/>",
|
|
9092
9078
|
"iconName": "emoji-smiley, face, smile",
|
|
9093
9079
|
"variant": {
|
|
@@ -9101,7 +9087,7 @@
|
|
|
9101
9087
|
"componentName": "IconEmojiSmiley"
|
|
9102
9088
|
},
|
|
9103
9089
|
{
|
|
9104
|
-
"category": "
|
|
9090
|
+
"category": "Emoji",
|
|
9105
9091
|
"svg": "<path d=\"M21.5 12C21.5 17.2467 17.2467 21.5 12 21.5C6.75329 21.5 2.5 17.2467 2.5 12C2.5 6.75329 6.75329 2.5 12 2.5C17.2467 2.5 21.5 6.75329 21.5 12Z\" stroke=\"currentColor\"/><path d=\"M15.4551 14.55C15.1912 16.2216 13.7448 17.5001 11.999 17.5002C10.2531 17.5002 8.80583 16.2217 8.54199 14.55C10.8566 14.7542 13.1405 14.7541 15.4551 14.55ZM9.71973 8.09293C10.0481 8.10529 10.3582 8.27902 10.543 8.56851C10.8834 9.10226 10.8723 10.2351 9.1416 11.6515C7.03226 10.9124 6.635 9.8503 6.77246 9.23257C6.84713 8.8975 7.0795 8.62894 7.38379 8.50504C7.64669 8.39798 7.96577 8.39788 8.29004 8.56656L8.62988 8.74332L8.88965 8.46109C9.13665 8.19173 9.43609 8.08225 9.71973 8.09293ZM14.2822 8.09293C14.5658 8.08227 14.8653 8.19176 15.1123 8.46109L15.3721 8.74332L15.7119 8.56656C16.0362 8.39788 16.3553 8.39798 16.6182 8.50504C16.9224 8.62894 17.1548 8.89754 17.2295 9.23257C17.367 9.85038 16.9694 10.9124 14.8594 11.6515C13.1291 10.2353 13.1186 9.10217 13.459 8.56851C13.6437 8.27902 13.9538 8.10529 14.2822 8.09293Z\" fill=\"currentColor\" stroke=\"currentColor\"/>",
|
|
9106
9092
|
"iconName": "emoji-smiling-face, heart-eyes",
|
|
9107
9093
|
"variant": {
|
|
@@ -13819,7 +13805,7 @@
|
|
|
13819
13805
|
"componentName": "IconMarkup"
|
|
13820
13806
|
},
|
|
13821
13807
|
{
|
|
13822
|
-
"category": "
|
|
13808
|
+
"category": "Emoji",
|
|
13823
13809
|
"svg": "<path d=\"M3.5 12.5V3C9.27992 4.12307 14.7201 4.12307 20.5 3V12.5C20.5 17.1944 16.6944 21 12 21C7.30558 21 3.5 17.1944 3.5 12.5Z\" stroke=\"currentColor\"/><path d=\"M8 13C11 14.1667 13 14.1667 16 13C13.5 17.6667 10.5 17.6667 8 13Z\" fill=\"currentColor\"/><path d=\"M9.25 9.5C9.89156 9.5 10.3687 9.91118 10.4766 10.3975C10.192 10.2845 9.72726 10.1055 9.25 10.1055C8.77227 10.1055 8.30697 10.2845 8.02246 10.3975C8.13027 9.91109 8.60835 9.5 9.25 9.5Z\" fill=\"currentColor\" stroke=\"currentColor\"/><path d=\"M16.5 10.6058C16.5 11.1421 16.2135 11.0298 15.7732 10.8572C15.4855 10.7444 15.132 10.6058 14.75 10.6058C14.368 10.6058 14.0145 10.7444 13.7268 10.8572C13.2865 11.0298 13 11.1421 13 10.6058C13 9.71896 13.7835 9 14.75 9C15.7165 9 16.5 9.71896 16.5 10.6058Z\" fill=\"currentColor\"/>",
|
|
13824
13810
|
"iconName": "mask, theatre",
|
|
13825
13811
|
"variant": {
|
|
@@ -16563,7 +16549,7 @@
|
|
|
16563
16549
|
"componentName": "IconPokeball"
|
|
16564
16550
|
},
|
|
16565
16551
|
{
|
|
16566
|
-
"category": "
|
|
16552
|
+
"category": "Emoji",
|
|
16567
16553
|
"svg": "<path d=\"M9.5 9.5H7.5C7.42315 9.5 7.34698 9.50289 7.27159 9.50857C5.72144 9.62527 4.5 10.92 4.5 12.5C4.5 13.1515 4.70767 13.7545 5.06043 14.2464M13.5 9.5H16.5C18.1569 9.5 19.5 10.8431 19.5 12.5C19.5 13.1515 19.2923 13.7545 18.9396 14.2464M16.5 14.5H18.5C20.1569 14.5 21.5 15.8431 21.5 17.5C21.5 19.1569 20.1569 20.5 18.5 20.5H5.5C3.84315 20.5 2.5 19.1569 2.5 17.5C2.5 15.8431 3.84315 14.5 5.5 14.5H12.5M16.4058 9.24891C17.084 8.53219 17.5 7.56467 17.5 6.5C17.5 4.29086 15.7091 2.5 13.5 2.5L13.5 4.5H9.5C7.84315 4.5 6.5 5.84315 6.5 7.5C6.5 8.15261 6.70838 8.75655 7.06224 9.24891\" stroke=\"currentColor\" stroke-linecap=\"square\"/>",
|
|
16568
16554
|
"iconName": "poop, spam",
|
|
16569
16555
|
"variant": {
|
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,10 +643,7 @@ export type CentralIconName =
|
|
|
641
643
|
| "IconEmailPlus"
|
|
642
644
|
| "IconEmailSettings"
|
|
643
645
|
| "IconEmojiAddReaction"
|
|
644
|
-
| "IconEmojiAlt"
|
|
645
|
-
| "IconEmojiArc"
|
|
646
646
|
| "IconEmojiAstonished"
|
|
647
|
-
| "IconEmojiSad"
|
|
648
647
|
| "IconEmojiSadTear"
|
|
649
648
|
| "IconEmojiSleep"
|
|
650
649
|
| "IconEmojiSmile"
|