import { CheckCircleIcon } from "lucide-react";
import { useState } from "react";
import { useUITranslation } from "@vertesia/ui/i18n";
/**
* Props for the UploadResultCategory component
*/
export interface UploadResultCategoryProps {
/** Category title */
title: string;
/** Number of items in this category */
count: number;
/** Icon to display next to the title */
icon?: React.ReactNode;
/** List of items to display */
items: string[];
}
/**
* Displays a collapsible category of upload results
*
* @example
*