@@ -6,19 +6,22 @@ import {
6
6
AppleIcon ,
7
7
ClockIcon ,
8
8
CompassIcon ,
9
- DeleteIcon ,
10
9
FlagIcon ,
11
10
LeafIcon ,
12
11
LightbulbIcon ,
13
12
MusicIcon ,
14
13
SearchIcon ,
15
14
SmileIcon ,
16
15
StarIcon ,
16
+ XIcon ,
17
17
} from 'lucide-react' ;
18
18
19
19
export const emojiCategoryIcons : Record <
20
20
EmojiCategoryList ,
21
- { outline : React . ReactElement ; solid : React . ReactElement }
21
+ {
22
+ outline : React . ReactElement ;
23
+ solid : React . ReactElement ; // Needed to add another solid variant - outline will be used for now
24
+ }
22
25
> = {
23
26
activity : {
24
27
outline : (
@@ -38,7 +41,6 @@ export const emojiCategoryIcons: Record<
38
41
< path d = "M21.9 10.6a10.1 10.1 0 0 0-11.3 11.3" />
39
42
</ svg >
40
43
) ,
41
- // Needed to add another solid variant - outline will be used for now
42
44
solid : (
43
45
< svg
44
46
className = "size-full"
@@ -60,61 +62,51 @@ export const emojiCategoryIcons: Record<
60
62
61
63
custom : {
62
64
outline : < StarIcon className = "size-full" /> ,
63
- // Needed to add another solid variant - outline will be used for now
64
65
solid : < StarIcon className = "size-full" /> ,
65
66
} ,
66
67
67
68
flags : {
68
69
outline : < FlagIcon className = "size-full" /> ,
69
- // Needed to add another solid variant - outline will be used for now
70
70
solid : < FlagIcon className = "size-full" /> ,
71
71
} ,
72
72
73
73
foods : {
74
74
outline : < AppleIcon className = "size-full" /> ,
75
- // Needed to add another solid variant - outline will be used for now
76
75
solid : < AppleIcon className = "size-full" /> ,
77
76
} ,
78
77
79
78
frequent : {
80
79
outline : < ClockIcon className = "size-full" /> ,
81
- // Needed to add another solid variant - outline will be used for now
82
80
solid : < ClockIcon className = "size-full" /> ,
83
81
} ,
84
82
85
83
nature : {
86
84
outline : < LeafIcon className = "size-full" /> ,
87
- // Needed to add another solid variant - outline will be used for now
88
85
solid : < LeafIcon className = "size-full" /> ,
89
86
} ,
90
87
91
88
objects : {
92
89
outline : < LightbulbIcon className = "size-full" /> ,
93
- // Needed to add another solid variant - outline will be used for now
94
90
solid : < LightbulbIcon className = "size-full" /> ,
95
91
} ,
96
92
97
93
people : {
98
94
outline : < SmileIcon className = "size-full" /> ,
99
- // Needed to add another solid variant - outline will be used for now
100
95
solid : < SmileIcon className = "size-full" /> ,
101
96
} ,
102
97
103
98
places : {
104
99
outline : < CompassIcon className = "size-full" /> ,
105
- // Needed to add another solid variant - outline will be used for now
106
100
solid : < CompassIcon className = "size-full" /> ,
107
101
} ,
108
102
109
103
symbols : {
110
104
outline : < MusicIcon className = "size-full" /> ,
111
- // Needed to add another solid variant - outline will be used for now
112
105
solid : < MusicIcon className = "size-full" /> ,
113
106
} ,
114
107
} ;
115
108
116
109
export const emojiSearchIcons = {
117
- delete : < DeleteIcon className = "size-4" /> ,
118
-
119
- loupe : < SearchIcon className = "size-4" /> ,
110
+ delete : < XIcon className = "size-4 text-current" /> ,
111
+ loupe : < SearchIcon className = "size-4 text-current" /> ,
120
112
} ;
0 commit comments