UNPKG

@oxyhq/services

Version:

Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀

15 lines • 376 B
import type React from 'react'; interface QuickAction { id: string; icon: string; iconColor: string; title: string; onPress: () => void; } interface QuickActionsProps { actions: QuickAction[]; theme: 'light' | 'dark'; } declare const QuickActions: React.FC<QuickActionsProps>; export default QuickActions; //# sourceMappingURL=QuickActions.d.ts.map