"use client";
import { DecisionType } from "@/lib/types";
import { Check, X, AlertCircle } from "lucide-react";
interface StatusBadgeProps {
decision: DecisionType;
}
export function StatusBadge({ decision }: StatusBadgeProps) {
const config = {
YES: {
bg: "bg-green-950/40 border-green-700/50",
text: "text-green-400",
icon: