@central-icons-react-native/square-outlined-radius-0-stroke-2 1.1.259 → 1.1.260
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/IconExtendImage/index.d.ts +4 -0
- package/IconExtendImage/index.js +3 -0
- package/IconExtendImage/index.js.map +11 -0
- package/IconExtendImage/index.mjs +3 -0
- package/IconExtendImage/index.mjs.map +11 -0
- package/IconReframe/index.d.ts +4 -0
- package/IconReframe/index.js +3 -0
- package/IconReframe/index.js.map +11 -0
- package/IconReframe/index.mjs +3 -0
- package/IconReframe/index.mjs.map +11 -0
- package/README.md +2 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.mjs +2 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +3 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:L,defineProperty:d,getOwnPropertyNames:u,getOwnPropertyDescriptor:M}=Object,m=Object.prototype.hasOwnProperty;function c(r){return this[r]}var P,v,f=(r,o,t)=>{var s=r!=null&&typeof r==="object";if(s){var k=o?P??=new WeakMap:v??=new WeakMap,i=k.get(r);if(i)return i}t=r!=null?B(L(r)):{};let p=o||!r||!r.__esModule?d(t,"default",{value:r,enumerable:!0}):t;for(let C of u(r))if(!m.call(p,C))d(p,C,{get:c.bind(r,C),enumerable:!0});if(s)k.set(r,p);return p},x=(r)=>{var o=(h??=new WeakMap).get(r),t;if(o)return o;if(o=d({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var s of u(r))if(!m.call(o,s))d(o,s,{get:c.bind(r,s),enumerable:!(t=M(r,s))||t.enumerable})}return h.set(r,o),o},h;var y=(r)=>r;function F(r,o){this[r]=y.bind(null,o)}var I=(r,o)=>{for(var t in o)d(r,t,{get:o[t],enumerable:!0,configurable:!0,set:F.bind(o,t)})};var S={};I(S,{CentralIconBase:()=>l});module.exports=x(S);var W=f(require("react")),a=require("react-native-svg"),l=({children:r,size:o=24,...t})=>{return W.default.createElement(a.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 b={};I(b,{default:()=>w,IconExtendImage:()=>g});module.exports=x(b);var e=f(require("react"));var n=require("react-native-svg"),g=(r)=>{return e.default.createElement(l,{...r},e.default.createElement(n.Path,{d:"M8 3L3 8",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M8 16L3 21",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M21 3L16 8",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M14 3L10 7",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M7 10L3 14",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M21 10L17 14",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M14 17L10 21",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Path,{d:"M21 16L16 21",stroke:"currentColor",strokeWidth:"2"}),e.default.createElement(n.Rect,{x:"7",y:"7",width:"10",height:"10",stroke:"currentColor",strokeWidth:"2"}))},w=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=F0B02549AB83537164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path, Rect } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 3L3 8\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 16L3 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 3L16 8\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14 3L10 7\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 10L3 14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 10L17 14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14 17L10 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 16L16 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Rect x=\"7\" y=\"7\" width=\"10\" height=\"10\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,2ECvBoB,IAA1B,sBAE2B,IAA3B,8BAEa,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAAklB,EAAllB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,eAAe,YAAY,IAAG,CAAI,GAG5kB",
|
|
9
|
+
"debugId": "F0B02549AB83537164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import d from"react";import{Svg as p}from"react-native-svg";var n=({children:e,size:t=24,...s})=>{return d.createElement(p,{...s,width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none"},e)};import r from"react";import{Path as o,Rect as C}from"react-native-svg";var l=(e)=>{return r.createElement(n,{...e},r.createElement(o,{d:"M8 3L3 8",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M8 16L3 21",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M21 3L16 8",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M14 3L10 7",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M7 10L3 14",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M21 10L17 14",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M14 17L10 21",stroke:"currentColor",strokeWidth:"2"}),r.createElement(o,{d:"M21 16L16 21",stroke:"currentColor",strokeWidth:"2"}),r.createElement(C,{x:"7",y:"7",width:"10",height:"10",stroke:"currentColor",strokeWidth:"2"}))},a=l;export{a as default,l as IconExtendImage};
|
|
2
|
+
|
|
3
|
+
//# debugId=B36096084058596264756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path, Rect } from \"react-native-svg\";\n\nexport const IconExtendImage: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M8 3L3 8\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M8 16L3 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 3L16 8\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14 3L10 7\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M7 10L3 14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 10L17 14\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M14 17L10 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Path d=\"M21 16L16 21\" stroke=\"currentColor\" strokeWidth=\"2\"/><Rect x=\"7\" y=\"7\" width=\"10\" height=\"10\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,UAAM,yBAER,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAklB,EAAllB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,WAAW,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,aAAa,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,OAAO,eAAe,YAAY,IAAG,CAAI,GAG5kB",
|
|
9
|
+
"debugId": "B36096084058596264756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:M,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:k}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var v,y,I=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var l=o?v??=new WeakMap:y??=new WeakMap,c=l.get(r);if(c)return c}e=r!=null?h(M(r)):{};let p=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let a of i(r))if(!u.call(p,a))n(p,a,{get:B.bind(r,a),enumerable:!0});if(t)l.set(r,p);return p},L=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of i(r))if(!u.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(e=k(r,t))||e.enumerable})}return f.set(r,o),o},f;var F=(r)=>r;function S(r,o){this[r]=F.bind(null,o)}var x=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:S.bind(o,e)})};var b={};x(b,{CentralIconBase:()=>m});module.exports=L(b);var P=I(require("react")),d=require("react-native-svg"),m=({children:r,size:o=24,...e})=>{return P.default.createElement(d.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 w={};x(w,{default:()=>V,IconReframe:()=>g});module.exports=L(w);var s=I(require("react"));var C=require("react-native-svg"),g=(r)=>{return s.default.createElement(m,{...r},s.default.createElement(C.Path,{d:"M7.5 4.20562L12 1.60754L16.5 4.20562M21 11.9999V17.196L16.5 19.7941M7.5 19.7941L3 17.196V11.9999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),s.default.createElement(C.Path,{d:"M12 2L12 12M12 12L3.5 16.9072M12 12L20.5 16.9072",stroke:"currentColor",strokeWidth:"2"}))},V=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=C597BD9EC37CB46864756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconReframe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.5 4.20562L12 1.60754L16.5 4.20562M21 11.9999V17.196L16.5 19.7941M7.5 19.7941L3 17.196V11.9999\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M12 2L12 12M12 12L3.5 16.9072M12 12L20.5 16.9072\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAyS,EAAzS,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,wBAAC,OAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnS",
|
|
9
|
+
"debugId": "C597BD9EC37CB46864756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";import{Svg as a}from"react-native-svg";var t=({children:o,size:r=24,...p})=>{return s.createElement(a,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as n}from"react-native-svg";var m=(o)=>{return e.createElement(t,{...o},e.createElement(n,{d:"M7.5 4.20562L12 1.60754L16.5 4.20562M21 11.9999V17.196L16.5 19.7941M7.5 19.7941L3 17.196V11.9999",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square"}),e.createElement(n,{d:"M12 2L12 12M12 12L3.5 16.9072M12 12L20.5 16.9072",stroke:"currentColor",strokeWidth:"2"}))},P=m;export{P as default,m as IconReframe};
|
|
2
|
+
|
|
3
|
+
//# debugId=A56A5819FAEAA2D764756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/index.tsx"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"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<\n CentralIconBaseProps\n> = ({\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",
|
|
6
|
+
"import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconReframe: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M7.5 4.20562L12 1.60754L16.5 4.20562M21 11.9999V17.196L16.5 19.7941M7.5 19.7941L3 17.196V11.9999\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\"/><Path d=\"M12 2L12 12M12 12L3.5 16.9072M12 12L20.5 16.9072\" stroke=\"currentColor\" strokeWidth=\"2\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\n"
|
|
7
|
+
],
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAyS,EAAzS,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,YAAY,IAAI,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,mDAAmD,OAAO,eAAe,YAAY,IAAG,CAAI,GAGnS",
|
|
9
|
+
"debugId": "A56A5819FAEAA2D764756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/README.md
CHANGED
|
@@ -412,6 +412,7 @@ Below is a complete list of available icons:
|
|
|
412
412
|
- IconQm3
|
|
413
413
|
- Icon3dBoxTop
|
|
414
414
|
- Icon3dBoxBottom
|
|
415
|
+
- IconReframe
|
|
415
416
|
|
|
416
417
|
### Building
|
|
417
418
|
|
|
@@ -781,6 +782,7 @@ Below is a complete list of available icons:
|
|
|
781
782
|
- IconWrite3
|
|
782
783
|
- IconColorPalette2
|
|
783
784
|
- IconEyedropper
|
|
785
|
+
- IconExtendImage
|
|
784
786
|
|
|
785
787
|
### Emoji
|
|
786
788
|
|