@@ -441,17 +441,17 @@ const toggleProject = (projectId: string) => {
441
441
const getLogIcon = (type : Log [' type' ]) => {
442
442
switch (type ) {
443
443
case ' error' :
444
- return ' i-hugeicons-outline-exclamation-circle '
444
+ return ' i-hugeicons-alert-02 '
445
445
case ' info' :
446
- return ' i-hugeicons-outline- information-circle'
446
+ return ' i-hugeicons-information-circle'
447
447
case ' success' :
448
- return ' i-hugeicons-outline-check- circle'
448
+ return ' i-hugeicons-checkmark- circle-02 '
449
449
case ' warning' :
450
- return ' i-hugeicons-outline-warning-triangle '
450
+ return ' i-hugeicons-alert-02 '
451
451
case ' mail' :
452
- return ' i-hugeicons-outline- mail'
452
+ return ' i-hugeicons-mail-01 '
453
453
default :
454
- return ' i-hugeicons-outline -terminal'
454
+ return ' i-hugeicons-computer -terminal-01 '
455
455
}
456
456
}
457
457
@@ -729,7 +729,7 @@ watch(timeRange, async () => {
729
729
class =" flex items-center gap-2 px-4 py-2 rounded-lg bg-gray-100 text-gray-700 hover:bg-gray-200"
730
730
@click =" resetFilters"
731
731
>
732
- <i class =" i-hugeicons-outline-x h-4 w-4" aria-hidden =" true" />
732
+ <i class =" i-hugeicons-cancel-01 h-4 w-4" aria-hidden =" true" />
733
733
Reset Filters
734
734
</button >
735
735
</div >
@@ -807,7 +807,7 @@ watch(timeRange, async () => {
807
807
<td class =" px-6 py-4 whitespace-nowrap text-right" >
808
808
<div class =" text-sm text-gray-900" >
809
809
<i
810
- class =" i-hugeicons-outline- clock h-4 w-4 mr-2 text-gray-400"
810
+ class =" i-hugeicons-clock-01 h-4 w-4 mr-2 text-gray-400"
811
811
aria-hidden =" true"
812
812
/>
813
813
{{ new Date(log.timestamp).toLocaleTimeString() }}
@@ -851,7 +851,7 @@ watch(timeRange, async () => {
851
851
class =" px-2 py-1 text-sm border rounded-md"
852
852
:class =" currentPage === 1 ? 'opacity-50 cursor-not-allowed' : 'hover:bg-gray-100'"
853
853
>
854
- <i class =" i-hugeicons-outline- arrow-left h-4 w-4" aria-hidden =" true" />
854
+ <i class =" i-hugeicons-arrow-left-01 h-4 w-4" aria-hidden =" true" />
855
855
</button >
856
856
857
857
<button
@@ -881,7 +881,7 @@ watch(timeRange, async () => {
881
881
class =" px-2 py-1 text-sm border rounded-md"
882
882
:class =" currentPage === totalPages || totalPages === 0 ? 'opacity-50 cursor-not-allowed' : 'hover:bg-gray-100'"
883
883
>
884
- <i class =" i-hugeicons-outline- arrow-right h-4 w-4" aria-hidden =" true" />
884
+ <i class =" i-hugeicons-arrow-right-01 h-4 w-4" aria-hidden =" true" />
885
885
</button >
886
886
</div >
887
887
</div >
@@ -901,7 +901,7 @@ watch(timeRange, async () => {
901
901
class =" text-gray-500 hover:text-gray-700"
902
902
>
903
903
<i
904
- class =" i-hugeicons-outline-x h-5 w-5"
904
+ class =" i-hugeicons-cancel-01 h-5 w-5"
905
905
aria-hidden =" true"
906
906
/>
907
907
</button >
@@ -983,7 +983,7 @@ watch(timeRange, async () => {
983
983
:key =" index"
984
984
class =" inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-gray-100 text-gray-800"
985
985
>
986
- <i class =" i-hugeicons-outline-paperclip h-4 w-4 mr-1" aria-hidden =" true" />
986
+ <i class =" i-hugeicons-attachment-01 h-4 w-4 mr-1" aria-hidden =" true" />
987
987
{{ attachment.name }} ({{ attachment.size }})
988
988
</div >
989
989
</div >
@@ -1041,7 +1041,7 @@ watch(timeRange, async () => {
1041
1041
<div class =" flex items-center" >
1042
1042
<i
1043
1043
:class =" [
1044
- selectedLog.email.userInteraction.opened ? 'i-hugeicons-outline-check- circle text-green-500' : 'i-hugeicons-outline-x -circle text-red-500',
1044
+ selectedLog.email.userInteraction.opened ? 'i-hugeicons-checkmark- circle-02 text-green-500' : 'i-hugeicons-cancel -circle text-red-500',
1045
1045
'h-5 w-5 mr-2'
1046
1046
]"
1047
1047
aria-hidden =" true"
@@ -1057,7 +1057,7 @@ watch(timeRange, async () => {
1057
1057
<div class =" flex items-center" >
1058
1058
<i
1059
1059
:class =" [
1060
- selectedLog.email.userInteraction.clicked ? 'i-hugeicons-outline-check- circle text-green-500' : 'i-hugeicons-outline-x -circle text-red-500',
1060
+ selectedLog.email.userInteraction.clicked ? 'i-hugeicons-checkmark- circle-02 text-green-500' : 'i-hugeicons-cancel-01 -circle text-red-500',
1061
1061
'h-5 w-5 mr-2'
1062
1062
]"
1063
1063
aria-hidden =" true"
0 commit comments