function MobileQuickActions({ branchUser, onActionSelect }) { const quickActions = branchUser ? [ { id: 'product-sales', label: 'New Sale', icon: '🛒', color: 'var(--success)' }, { id: 'seconds-sales', label: 'Quick Sale', icon: '⚡', color: 'var(--warning)' }, { id: 'instock', label: 'Check Stock', icon: '📦', color: 'var(--info)' }, { id: 'branch-expense', label: 'Add Expense', icon: '💸', color: 'var(--danger)' } ] : [ { id: 'branch', label: 'Branches', icon: '🏪', color: 'var(--primary)' }, { id: 'instock', label: 'Inventory', icon: '📦', color: 'var(--info)' }, { id: 'supplier', label: 'Suppliers', icon: '🏢', color: 'var(--secondary)' }, { id: 'sales-track', label: 'Analytics', icon: '📈', color: 'var(--success)' } ]; return (
Tap to get started