import type { ReactNode } from "react"; import { Link } from "react-router-dom"; export interface HubReportNavCardProps { to: string; icon: ReactNode; title: string; description: string; } export default function HubReportNavCard({ to, icon, title, description }: HubReportNavCardProps) { return (
{description}
); }