feat(web): font awesome icon animations

This commit is contained in:
Luke
2023-11-15 15:28:21 +01:00
parent a50f7a2052
commit 882e372895
24 changed files with 124 additions and 47 deletions

View File

@@ -1,5 +1,7 @@
import { IconName, IconPrefix } from '@fortawesome/fontawesome-common-types';
type IconAnimation = 'spin' | 'spinPulse' | 'spinReverse' | 'pulse' | 'beat' | 'fade' | 'beatFade' | 'bounce' | 'shake';
interface ContextMenuItem {
menu?: string;
title?: string;
@@ -8,6 +10,7 @@ interface ContextMenuItem {
image?: string;
icon?: IconName | [IconPrefix, IconName] | string;
iconColor?: string;
iconAnimation?: IconAnimation;
progress?: number;
colorScheme?: string;
onSelect?: (args: any) => void;