-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
210 lines (206 loc) ยท 5.49 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
export type EmojiItem = {
icon: string;
bg: string;
name: string;
details: string;
};
export const fruits: EmojiItem[] = [
{
icon: "๐",
bg: "#FF0000",
name: "Red Apple",
details: "A round, red fruit with a crisp, juicy texture.",
},
{
icon: "๐",
bg: "#C0C0C0",
name: "Pear",
details: "A pear-shaped fruit with a sweet, juicy flesh.",
},
{
icon: "๐",
bg: "#FFA500",
name: "Tangerine",
details: "A small, orange citrus fruit with a sweet, tangy flavor.",
},
{
icon: "๐",
bg: "#FFFF00",
name: "Lemon",
details: "A yellow citrus fruit with a sour, acidic taste.",
},
{
icon: "๐",
bg: "#FFFF00",
name: "Banana",
details: "A long, curved fruit with a yellow peel and a soft, sweet flesh.",
},
{
icon: "๐",
bg: "#FF0000",
name: "Watermelon",
details: "A large, oblong fruit with a green rind and a red, juicy flesh.",
},
{
icon: "๐",
bg: "#800080",
name: "Grapes",
details:
"Small, round fruits that grow in clusters on vines. They can be red, green, or purple.",
},
{
icon: "๐",
bg: "#FF0000",
name: "Strawberry",
details: "A small, red berry with a sweet, juicy flavor.",
},
{
icon: "๐",
bg: "#FF0000",
name: "Cherries",
details:
"Small, round fruits with a pit in the center. They can be red, black, or yellow.",
},
{
icon: "๐ฅ",
bg: "#8FBC8F",
name: "Kiwi Fruit",
details:
"A fuzzy brown fruit with a bright green flesh and small, black seeds.",
},
];
export const animals: EmojiItem[] = [
{
icon: "๐ถ",
bg: "#F0E68C",
name: "Dog",
details:
"A common domesticated animal often kept as a pet. It has four legs, a tail, and barks.",
},
{
icon: "๐ฑ",
bg: "#FFA500",
name: "Cat",
details:
"A domesticated feline animal often kept as a pet. It has four legs, a tail, and meows.",
},
{
icon: "๐ผ",
bg: "#000000",
name: "Panda",
details:
"A large black and white bear native to China. It has a round body and a distinctive black and white pattern.",
},
{
icon: "๐ฆ",
bg: "#FF8C00",
name: "Fox",
details:
"A small, reddish-brown mammal with a bushy tail. It is known for its cunning and intelligence.",
},
{
icon: "๐ป",
bg: "#8B4513",
name: "Bear",
details:
"A large mammal with thick fur and powerful claws. It is often found in forests and mountainous regions.",
},
{
icon: "๐ฆ",
bg: "#FFA500",
name: "Lion",
details:
"A large feline with a golden mane. It is a social animal that lives in prides.",
},
{
icon: "๐ฏ",
bg: "#FF8C00",
name: "Tiger",
details:
"A large feline with orange and black stripes. It is a solitary animal that hunts alone.",
},
{
icon: "๐บ",
bg: "#8B4513",
name: "Wolf",
details:
"A large canine that lives in packs. It is a skilled hunter and often howls at the moon.",
},
{
icon: "๐ด",
bg: "#F0E68C",
name: "Horse",
details:
"A large domesticated mammal often used for riding and transportation. It has four legs, a long tail, and neighs.",
},
{
icon: "๐ฎ",
bg: "#8B4513",
name: "Cow",
details:
"A large domesticated mammal often raised for its milk and meat. It has four legs, horns, and moos.",
},
];
export const countries: EmojiItem[] = [
{
"icon": "๐บ๐ธ",
"bg": "#D3D3D3",
"name": "United States",
"details": "A country located in North America. Its flag has 13 red and white stripes and 50 white stars on a blue field."
},
{
"icon": "๐ฌ๐ง",
"bg": "#00008B",
"name": "United Kingdom",
"details": "A country located in Western Europe. Its flag has a red cross on a white background, with a blue field in the upper left corner."
},
{
"icon": "๐ซ๐ท",
"bg": "#0000FF",
"name": "France",
"details": "A country located in Western Europe. Its flag has three vertical bands of blue, white, and red."
},
{
"icon": "๐ฉ๐ช",
"bg": "#000000",
"name": "Germany",
"details": "A country located in Central Europe. Its flag has three horizontal bands of black, red, and gold."
},
{
"icon": "๐ฎ๐น",
"bg": "#008000",
"name": "Italy",
"details": "A country located in Southern Europe. Its flag has three vertical bands of green, white, and red."
},
{
"icon": "๐ช๐ธ",
"bg": "#FF0000",
"name": "Spain",
"details": "A country located in Southwestern Europe. Its flag has three horizontal bands of red, yellow, and red, with the national emblem in the center."
},
{
"icon": "๐ฏ๐ต",
"bg": "#FFFFFF",
"name": "Japan",
"details": "A country located in East Asia. Its flag has a red circle on a white background."
},
{
"icon": "๐จ๐ณ",
"bg": "#FF0000",
"name": "China",
"details": "A country located in East Asia. Its flag has five yellow stars on a red background."
},
{
"icon": "๐ฎ๐ณ",
"bg": "#FFA500",
"name": "India",
"details": "A country located in South Asia. Its flag has three horizontal bands of saffron, white, and green, with a blue wheel in the center."
},
{
"icon": "๐ง๐ท",
"bg": "#008000",
"name": "Brazil",
"details": "A country located in South America. Its flag has a green field with a yellow diamond in the center, and a blue circle with white stars."
}
];
export const emojis: EmojiItem[] = [...fruits, ...animals, ...countries];