// frontend/src/components/admin/AIActionPlan.jsx import React from "react"; import { CheckCircle2, Clock, Circle, Target } from "lucide-react"; const statusIcons = { completed: CheckCircle2, in_progress: Clock, pending: Circle, }; const statusColors = { completed: "text-green-600 bg-green-50", in_progress: "text-blue-600 bg-blue-50", pending: "text-amber-600 bg-amber-50", }; const categoryColors = { Retention: "bg-red-100 text-red-700", Engagement: "bg-blue-100 text-blue-700", Progress: "bg-green-100 text-green-700", Events: "bg-purple-100 text-purple-700", Operations: "bg-amber-100 text-amber-700", }; export default function AIActionPlan({ actions }) { return (
{action.description}