import { cn } from "@/lib/utils"; export function FigureCaption({ children, index, className, }: { children: React.ReactNode; index?: string; className?: string; }) { return (
{index ? {index} : null} {children}
); }