@kimo-emoji/react 1.0.0
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/dist/index.d.mts +476 -0
- package/dist/index.d.ts +476 -0
- package/dist/index.js +1447 -0
- package/dist/index.mjs +1339 -0
- package/package.json +40 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Generated by scripts/generate.ts - DO NOT EDIT MANUALLY
|
|
5
|
+
* Source of truth: packages/assets/svg & metadata/emojis.json
|
|
6
|
+
*/
|
|
7
|
+
type EmojiName = 'angel' | 'angry' | 'applause' | 'avocado' | 'balloon' | 'bear' | 'boba' | 'bunny' | 'cake' | 'cat-cry' | 'cat-happy' | 'cat-love' | 'celebrate' | 'cherry-blossom' | 'clown' | 'coffee' | 'confused' | 'cool' | 'cry' | 'cute-poop' | 'devil' | 'diamond' | 'dizzy' | 'dog-puppy' | 'drool' | 'duck' | 'excited' | 'fingers-crossed' | 'fire' | 'fist-bump' | 'frog-coffee' | 'frog-cry' | 'frog-dance' | 'frog-happy' | 'frog-love' | 'ghost' | 'gift' | 'handshake' | 'happy' | 'heart-hands' | 'heart' | 'hundred' | 'ice-cream' | 'laugh' | 'love' | 'mind-blown' | 'money-face' | 'moon' | 'music-note' | 'panda' | 'party' | 'peace' | 'piggy' | 'pizza' | 'pleading' | 'pointing-right' | 'pray' | 'puke' | 'rainbow' | 'ramen' | 'rocket' | 'rolling-eyes' | 'sad' | 'scream' | 'shy' | 'skull' | 'sleepy' | 'smug' | 'sparkles' | 'starry' | 'sun' | 'surprised' | 'sweat-smile' | 'thinking' | 'thumbs-down' | 'thumbs-up' | 'wave' | 'wink' | 'yawn';
|
|
8
|
+
type EmojiCategory = 'faces' | 'emotions' | 'reactions' | 'people' | 'gestures' | 'love' | 'fun' | 'objects' | 'animals' | 'food' | 'symbols' | 'miscellaneous';
|
|
9
|
+
|
|
10
|
+
interface EmojiProps extends Omit<React.SVGProps<SVGSVGElement>, 'name'> {
|
|
11
|
+
/**
|
|
12
|
+
* Name of the emoji (e.g. 'happy', 'love', 'angry', 'frog-happy').
|
|
13
|
+
* Fully typed for VS Code intellisense and autocomplete.
|
|
14
|
+
*/
|
|
15
|
+
name: EmojiName | (string & {});
|
|
16
|
+
/**
|
|
17
|
+
* Size in pixels. Sets both width and height equally.
|
|
18
|
+
* Convenient predefined sizes: 16, 20, 24, 32, 40, 48, 64, 80, 96, 128 (or any number/string).
|
|
19
|
+
*/
|
|
20
|
+
size?: number | string;
|
|
21
|
+
/**
|
|
22
|
+
* Explicit width (overrides size if specified).
|
|
23
|
+
*/
|
|
24
|
+
width?: number | string;
|
|
25
|
+
/**
|
|
26
|
+
* Explicit height (overrides size if specified).
|
|
27
|
+
*/
|
|
28
|
+
height?: number | string;
|
|
29
|
+
/**
|
|
30
|
+
* Accessible description for assistive technology. Defaults to emoji label.
|
|
31
|
+
*/
|
|
32
|
+
'aria-label'?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Hides the emoji from assistive technology if used purely decoratively.
|
|
35
|
+
*/
|
|
36
|
+
'aria-hidden'?: boolean | 'true' | 'false';
|
|
37
|
+
/**
|
|
38
|
+
* Tooltip title element content.
|
|
39
|
+
*/
|
|
40
|
+
title?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Optional custom fallback component when an invalid emoji name is provided.
|
|
43
|
+
*/
|
|
44
|
+
fallback?: React.ReactNode;
|
|
45
|
+
/**
|
|
46
|
+
* Future animation flag for CSS micro-animations.
|
|
47
|
+
*/
|
|
48
|
+
animated?: boolean;
|
|
49
|
+
}
|
|
50
|
+
type IndividualEmojiProps = Omit<EmojiProps, 'name'>;
|
|
51
|
+
interface EmojiContextValue {
|
|
52
|
+
/** Global default size for all child <Emoji /> components */
|
|
53
|
+
defaultSize?: number | string;
|
|
54
|
+
/** Global default class applied to all child emojis */
|
|
55
|
+
defaultClassName?: string;
|
|
56
|
+
/** Global custom fallback element */
|
|
57
|
+
fallback?: React.ReactNode;
|
|
58
|
+
/** Global decorative flag default */
|
|
59
|
+
defaultAriaHidden?: boolean;
|
|
60
|
+
}
|
|
61
|
+
interface EmojiProviderProps {
|
|
62
|
+
children: React.ReactNode;
|
|
63
|
+
value?: EmojiContextValue;
|
|
64
|
+
defaultSize?: number | string;
|
|
65
|
+
defaultClassName?: string;
|
|
66
|
+
fallback?: React.ReactNode;
|
|
67
|
+
defaultAriaHidden?: boolean;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare function useEmojiContext(): EmojiContextValue;
|
|
71
|
+
declare function EmojiProvider({ children, value, defaultSize, defaultClassName, fallback, defaultAriaHidden, }: EmojiProviderProps): React.JSX.Element;
|
|
72
|
+
|
|
73
|
+
declare const Emoji: React.ForwardRefExoticComponent<Omit<EmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Generated by scripts/generate.ts - DO NOT EDIT MANUALLY
|
|
77
|
+
* Individual tree-shakeable React emoji components
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Innocent Angel Emoji Component
|
|
82
|
+
* Category: faces
|
|
83
|
+
*/
|
|
84
|
+
declare const Angel: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
85
|
+
/**
|
|
86
|
+
* Angry Steam Emoji Component
|
|
87
|
+
* Category: emotions
|
|
88
|
+
*/
|
|
89
|
+
declare const Angry: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
90
|
+
/**
|
|
91
|
+
* Clapping Applause Emoji Component
|
|
92
|
+
* Category: gestures
|
|
93
|
+
*/
|
|
94
|
+
declare const Applause: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
95
|
+
/**
|
|
96
|
+
* Cute Avocado Emoji Component
|
|
97
|
+
* Category: food
|
|
98
|
+
*/
|
|
99
|
+
declare const Avocado: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
100
|
+
/**
|
|
101
|
+
* Party Balloon Emoji Component
|
|
102
|
+
* Category: fun
|
|
103
|
+
*/
|
|
104
|
+
declare const Balloon: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
105
|
+
/**
|
|
106
|
+
* Teddy Bear Emoji Component
|
|
107
|
+
* Category: animals
|
|
108
|
+
*/
|
|
109
|
+
declare const Bear: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
110
|
+
/**
|
|
111
|
+
* Boba Bubble Tea Emoji Component
|
|
112
|
+
* Category: food
|
|
113
|
+
*/
|
|
114
|
+
declare const Boba: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
115
|
+
/**
|
|
116
|
+
* Cute Bunny Emoji Component
|
|
117
|
+
* Category: animals
|
|
118
|
+
*/
|
|
119
|
+
declare const Bunny: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
120
|
+
/**
|
|
121
|
+
* Birthday Cake Emoji Component
|
|
122
|
+
* Category: food
|
|
123
|
+
*/
|
|
124
|
+
declare const Cake: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
125
|
+
/**
|
|
126
|
+
* Crying Cat Emoji Component
|
|
127
|
+
* Category: animals
|
|
128
|
+
*/
|
|
129
|
+
declare const CatCry: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
130
|
+
/**
|
|
131
|
+
* Happy Cat Emoji Component
|
|
132
|
+
* Category: animals
|
|
133
|
+
*/
|
|
134
|
+
declare const CatHappy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
135
|
+
/**
|
|
136
|
+
* Love Cat Emoji Component
|
|
137
|
+
* Category: animals
|
|
138
|
+
*/
|
|
139
|
+
declare const CatLove: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
140
|
+
/**
|
|
141
|
+
* Party Popper Emoji Component
|
|
142
|
+
* Category: fun
|
|
143
|
+
*/
|
|
144
|
+
declare const Celebrate: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
145
|
+
/**
|
|
146
|
+
* Cherry Blossom Sakura Emoji Component
|
|
147
|
+
* Category: symbols
|
|
148
|
+
*/
|
|
149
|
+
declare const CherryBlossom: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
150
|
+
/**
|
|
151
|
+
* Clown Face Emoji Component
|
|
152
|
+
* Category: fun
|
|
153
|
+
*/
|
|
154
|
+
declare const Clown: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
155
|
+
/**
|
|
156
|
+
* Hot Coffee Emoji Component
|
|
157
|
+
* Category: food
|
|
158
|
+
*/
|
|
159
|
+
declare const Coffee: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
160
|
+
/**
|
|
161
|
+
* Confused Emoji Component
|
|
162
|
+
* Category: emotions
|
|
163
|
+
*/
|
|
164
|
+
declare const Confused: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
165
|
+
/**
|
|
166
|
+
* Cool Sunglasses Emoji Component
|
|
167
|
+
* Category: faces
|
|
168
|
+
*/
|
|
169
|
+
declare const Cool: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
170
|
+
/**
|
|
171
|
+
* Crying Waterfall Emoji Component
|
|
172
|
+
* Category: emotions
|
|
173
|
+
*/
|
|
174
|
+
declare const Cry: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
175
|
+
/**
|
|
176
|
+
* Cute Poop Emoji Component
|
|
177
|
+
* Category: fun
|
|
178
|
+
*/
|
|
179
|
+
declare const CutePoop: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
180
|
+
/**
|
|
181
|
+
* Mischievous Devil Emoji Component
|
|
182
|
+
* Category: faces
|
|
183
|
+
*/
|
|
184
|
+
declare const Devil: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
185
|
+
/**
|
|
186
|
+
* Sparkling Diamond Emoji Component
|
|
187
|
+
* Category: objects
|
|
188
|
+
*/
|
|
189
|
+
declare const Diamond: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
190
|
+
/**
|
|
191
|
+
* Spiral Dizzy Emoji Component
|
|
192
|
+
* Category: reactions
|
|
193
|
+
*/
|
|
194
|
+
declare const Dizzy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
195
|
+
/**
|
|
196
|
+
* Happy Puppy Emoji Component
|
|
197
|
+
* Category: animals
|
|
198
|
+
*/
|
|
199
|
+
declare const DogPuppy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
200
|
+
/**
|
|
201
|
+
* Drooling / Yummy Emoji Component
|
|
202
|
+
* Category: faces
|
|
203
|
+
*/
|
|
204
|
+
declare const Drool: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
205
|
+
/**
|
|
206
|
+
* Rubber Duckling Emoji Component
|
|
207
|
+
* Category: animals
|
|
208
|
+
*/
|
|
209
|
+
declare const Duck: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
210
|
+
/**
|
|
211
|
+
* Starry Excited Emoji Component
|
|
212
|
+
* Category: emotions
|
|
213
|
+
*/
|
|
214
|
+
declare const Excited: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
215
|
+
/**
|
|
216
|
+
* Fingers Crossed Emoji Component
|
|
217
|
+
* Category: gestures
|
|
218
|
+
*/
|
|
219
|
+
declare const FingersCrossed: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
220
|
+
/**
|
|
221
|
+
* Lit Fire Emoji Component
|
|
222
|
+
* Category: symbols
|
|
223
|
+
*/
|
|
224
|
+
declare const Fire: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
225
|
+
/**
|
|
226
|
+
* Fist Bump Emoji Component
|
|
227
|
+
* Category: gestures
|
|
228
|
+
*/
|
|
229
|
+
declare const FistBump: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
230
|
+
/**
|
|
231
|
+
* Frog Sipping Coffee Emoji Component
|
|
232
|
+
* Category: animals
|
|
233
|
+
*/
|
|
234
|
+
declare const FrogCoffee: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
235
|
+
/**
|
|
236
|
+
* Weeping Frog Emoji Component
|
|
237
|
+
* Category: animals
|
|
238
|
+
*/
|
|
239
|
+
declare const FrogCry: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
240
|
+
/**
|
|
241
|
+
* Dancing Frog Emoji Component
|
|
242
|
+
* Category: animals
|
|
243
|
+
*/
|
|
244
|
+
declare const FrogDance: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
245
|
+
/**
|
|
246
|
+
* Happy Frog Emoji Component
|
|
247
|
+
* Category: animals
|
|
248
|
+
*/
|
|
249
|
+
declare const FrogHappy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
250
|
+
/**
|
|
251
|
+
* Frog in Love Emoji Component
|
|
252
|
+
* Category: animals
|
|
253
|
+
*/
|
|
254
|
+
declare const FrogLove: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
255
|
+
/**
|
|
256
|
+
* Friendly Ghost Emoji Component
|
|
257
|
+
* Category: fun
|
|
258
|
+
*/
|
|
259
|
+
declare const Ghost: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
260
|
+
/**
|
|
261
|
+
* Gift Box Emoji Component
|
|
262
|
+
* Category: objects
|
|
263
|
+
*/
|
|
264
|
+
declare const Gift: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
265
|
+
/**
|
|
266
|
+
* Handshake Deal Emoji Component
|
|
267
|
+
* Category: gestures
|
|
268
|
+
*/
|
|
269
|
+
declare const Handshake: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
270
|
+
/**
|
|
271
|
+
* Happy Emoji Component
|
|
272
|
+
* Category: faces
|
|
273
|
+
*/
|
|
274
|
+
declare const Happy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
275
|
+
/**
|
|
276
|
+
* Heart Hands Emoji Component
|
|
277
|
+
* Category: gestures
|
|
278
|
+
*/
|
|
279
|
+
declare const HeartHands: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
280
|
+
/**
|
|
281
|
+
* Sparkling Heart Emoji Component
|
|
282
|
+
* Category: love
|
|
283
|
+
*/
|
|
284
|
+
declare const Heart: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
285
|
+
/**
|
|
286
|
+
* 100 Points Emoji Component
|
|
287
|
+
* Category: symbols
|
|
288
|
+
*/
|
|
289
|
+
declare const Hundred: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
290
|
+
/**
|
|
291
|
+
* Soft Serve Ice Cream Emoji Component
|
|
292
|
+
* Category: food
|
|
293
|
+
*/
|
|
294
|
+
declare const IceCream: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
295
|
+
/**
|
|
296
|
+
* Laughing Emoji Component
|
|
297
|
+
* Category: faces
|
|
298
|
+
*/
|
|
299
|
+
declare const Laugh: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
300
|
+
/**
|
|
301
|
+
* Heart Eyes Emoji Component
|
|
302
|
+
* Category: love
|
|
303
|
+
*/
|
|
304
|
+
declare const Love: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
305
|
+
/**
|
|
306
|
+
* Mind Blown Emoji Component
|
|
307
|
+
* Category: reactions
|
|
308
|
+
*/
|
|
309
|
+
declare const MindBlown: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
310
|
+
/**
|
|
311
|
+
* Money Face Emoji Component
|
|
312
|
+
* Category: faces
|
|
313
|
+
*/
|
|
314
|
+
declare const MoneyFace: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
315
|
+
/**
|
|
316
|
+
* Crescent Moon Emoji Component
|
|
317
|
+
* Category: symbols
|
|
318
|
+
*/
|
|
319
|
+
declare const Moon: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
320
|
+
/**
|
|
321
|
+
* Musical Notes Emoji Component
|
|
322
|
+
* Category: symbols
|
|
323
|
+
*/
|
|
324
|
+
declare const MusicNote: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
325
|
+
/**
|
|
326
|
+
* Cute Panda Emoji Component
|
|
327
|
+
* Category: animals
|
|
328
|
+
*/
|
|
329
|
+
declare const Panda: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
330
|
+
/**
|
|
331
|
+
* Party Mascot Emoji Component
|
|
332
|
+
* Category: fun
|
|
333
|
+
*/
|
|
334
|
+
declare const Party: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
335
|
+
/**
|
|
336
|
+
* Peace / Victory Sign Emoji Component
|
|
337
|
+
* Category: gestures
|
|
338
|
+
*/
|
|
339
|
+
declare const Peace: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
340
|
+
/**
|
|
341
|
+
* Cute Piggy Emoji Component
|
|
342
|
+
* Category: animals
|
|
343
|
+
*/
|
|
344
|
+
declare const Piggy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
345
|
+
/**
|
|
346
|
+
* Pizza Slice Emoji Component
|
|
347
|
+
* Category: food
|
|
348
|
+
*/
|
|
349
|
+
declare const Pizza: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
350
|
+
/**
|
|
351
|
+
* Pleading Puppy Eyes Emoji Component
|
|
352
|
+
* Category: emotions
|
|
353
|
+
*/
|
|
354
|
+
declare const Pleading: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
355
|
+
/**
|
|
356
|
+
* Pointing Right Emoji Component
|
|
357
|
+
* Category: gestures
|
|
358
|
+
*/
|
|
359
|
+
declare const PointingRight: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
360
|
+
/**
|
|
361
|
+
* Praying / Folded Hands Emoji Component
|
|
362
|
+
* Category: gestures
|
|
363
|
+
*/
|
|
364
|
+
declare const Pray: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
365
|
+
/**
|
|
366
|
+
* Sick / Puking Emoji Component
|
|
367
|
+
* Category: emotions
|
|
368
|
+
*/
|
|
369
|
+
declare const Puke: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
370
|
+
/**
|
|
371
|
+
* Rainbow & Cloud Emoji Component
|
|
372
|
+
* Category: symbols
|
|
373
|
+
*/
|
|
374
|
+
declare const Rainbow: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
375
|
+
/**
|
|
376
|
+
* Ramen Bowl Emoji Component
|
|
377
|
+
* Category: food
|
|
378
|
+
*/
|
|
379
|
+
declare const Ramen: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
380
|
+
/**
|
|
381
|
+
* Launching Rocket Emoji Component
|
|
382
|
+
* Category: objects
|
|
383
|
+
*/
|
|
384
|
+
declare const Rocket: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
385
|
+
/**
|
|
386
|
+
* Rolling Eyes Emoji Component
|
|
387
|
+
* Category: reactions
|
|
388
|
+
*/
|
|
389
|
+
declare const RollingEyes: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
390
|
+
/**
|
|
391
|
+
* Sad Pout Emoji Component
|
|
392
|
+
* Category: emotions
|
|
393
|
+
*/
|
|
394
|
+
declare const Sad: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
395
|
+
/**
|
|
396
|
+
* Screaming Shock Emoji Component
|
|
397
|
+
* Category: reactions
|
|
398
|
+
*/
|
|
399
|
+
declare const Scream: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
400
|
+
/**
|
|
401
|
+
* Shy Blush Emoji Component
|
|
402
|
+
* Category: emotions
|
|
403
|
+
*/
|
|
404
|
+
declare const Shy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
405
|
+
/**
|
|
406
|
+
* Cute Skull Emoji Component
|
|
407
|
+
* Category: symbols
|
|
408
|
+
*/
|
|
409
|
+
declare const Skull: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
410
|
+
/**
|
|
411
|
+
* Sleepy / Zzz Emoji Component
|
|
412
|
+
* Category: faces
|
|
413
|
+
*/
|
|
414
|
+
declare const Sleepy: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
415
|
+
/**
|
|
416
|
+
* Smug / Heh Emoji Component
|
|
417
|
+
* Category: faces
|
|
418
|
+
*/
|
|
419
|
+
declare const Smug: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
420
|
+
/**
|
|
421
|
+
* Magic Sparkles Emoji Component
|
|
422
|
+
* Category: symbols
|
|
423
|
+
*/
|
|
424
|
+
declare const Sparkles: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
425
|
+
/**
|
|
426
|
+
* Golden Star Emoji Component
|
|
427
|
+
* Category: symbols
|
|
428
|
+
*/
|
|
429
|
+
declare const Starry: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
430
|
+
/**
|
|
431
|
+
* Smiling Sun Emoji Component
|
|
432
|
+
* Category: symbols
|
|
433
|
+
*/
|
|
434
|
+
declare const Sun: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
435
|
+
/**
|
|
436
|
+
* Surprised Emoji Component
|
|
437
|
+
* Category: reactions
|
|
438
|
+
*/
|
|
439
|
+
declare const Surprised: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
440
|
+
/**
|
|
441
|
+
* Nervous Sweat Smile Emoji Component
|
|
442
|
+
* Category: faces
|
|
443
|
+
*/
|
|
444
|
+
declare const SweatSmile: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
445
|
+
/**
|
|
446
|
+
* Thinking Emoji Component
|
|
447
|
+
* Category: emotions
|
|
448
|
+
*/
|
|
449
|
+
declare const Thinking: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
450
|
+
/**
|
|
451
|
+
* Thumbs Down Emoji Component
|
|
452
|
+
* Category: gestures
|
|
453
|
+
*/
|
|
454
|
+
declare const ThumbsDown: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
455
|
+
/**
|
|
456
|
+
* Thumbs Up Emoji Component
|
|
457
|
+
* Category: gestures
|
|
458
|
+
*/
|
|
459
|
+
declare const ThumbsUp: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
460
|
+
/**
|
|
461
|
+
* Waving Hand Emoji Component
|
|
462
|
+
* Category: gestures
|
|
463
|
+
*/
|
|
464
|
+
declare const Wave: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
465
|
+
/**
|
|
466
|
+
* Winking Emoji Component
|
|
467
|
+
* Category: faces
|
|
468
|
+
*/
|
|
469
|
+
declare const Wink: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
470
|
+
/**
|
|
471
|
+
* Yawning / Tired Emoji Component
|
|
472
|
+
* Category: faces
|
|
473
|
+
*/
|
|
474
|
+
declare const Yawn: React.ForwardRefExoticComponent<Omit<IndividualEmojiProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
475
|
+
|
|
476
|
+
export { Angel, Angry, Applause, Avocado, Balloon, Bear, Boba, Bunny, Cake, CatCry, CatHappy, CatLove, Celebrate, CherryBlossom, Clown, Coffee, Confused, Cool, Cry, CutePoop, Devil, Diamond, Dizzy, DogPuppy, Drool, Duck, Emoji, type EmojiCategory, type EmojiContextValue, type EmojiName, type EmojiProps, EmojiProvider, type EmojiProviderProps, Excited, FingersCrossed, Fire, FistBump, FrogCoffee, FrogCry, FrogDance, FrogHappy, FrogLove, Ghost, Gift, Handshake, Happy, Heart, HeartHands, Hundred, IceCream, type IndividualEmojiProps, Laugh, Love, MindBlown, MoneyFace, Moon, MusicNote, Panda, Party, Peace, Piggy, Pizza, Pleading, PointingRight, Pray, Puke, Rainbow, Ramen, Rocket, RollingEyes, Sad, Scream, Shy, Skull, Sleepy, Smug, Sparkles, Starry, Sun, Surprised, SweatSmile, Thinking, ThumbsDown, ThumbsUp, Wave, Wink, Yawn, useEmojiContext };
|