import { CheckCircle, XCircle } from 'lucide-react';

export const statusOptions = [
    {
        value: 'ACTIVE',
        label: 'Active',
        icon: CheckCircle,
        bgColor: 'bg-blue-100',
        textColor: 'text-blue-700',
        borderColor: 'border-blue-700',
    },
    {
        value: 'INACTIVE',
        label: 'Inactive',
        icon: XCircle,
        bgColor: 'bg-red-100',
        textColor: 'text-red-800',
        borderColor: 'border-red-500',
    },
];
