import { FileText } from "lucide-react"; import { cn } from "@/lib/utils"; import type { Source } from "@/lib/api"; export function SourceCard({ source, onClick, active, }: { source: Source; onClick?: () => void; active?: boolean; }) { return ( ); }