import { CalendarClock, ClipboardList, Mail, NotebookPen, Phone } from 'lucide-react';

export const activityConfig = [
    {
        icon: ClipboardList,
        label: 'Task',
        name: 'task',
        iconBg: 'bg-blue-500',
        iconColor: 'text-blue-500',
        accentColor: 'text-blue-600',
        borderColor: 'border-blue-500',
    },
    {
        icon: NotebookPen,
        label: 'Note',
        name: 'note',
        iconBg: 'bg-yellow-500',
        iconColor: 'text-yellow-500',
        accentColor: 'text-yellow-600',
        borderColor: 'border-yellow-500',
    },
    {
        icon: CalendarClock,
        label: 'Reminder',
        name: 'reminder',
        iconBg: 'bg-orange-500',
        iconColor: 'text-orange-500',
        accentColor: 'text-orange-600',
        borderColor: 'border-orange-500',
    },
    {
        icon: Mail,
        label: 'Email',
        name: 'email',
        iconBg: 'bg-emerald-500',
        iconColor: 'text-emerald-500',
        accentColor: 'text-emerald-600',
        borderColor: 'border-emerald-500',
    },
    {
        icon: Phone,
        label: 'Call',
        name: 'call',
        iconBg: 'bg-cyan-500',
        iconColor: 'text-cyan-500',
        accentColor: 'text-cyan-600',
        borderColor: 'border-cyan-500',
    },
];
