import { ExternalLink } from "lucide-react"; import { FmConfidence } from "./badges"; import type { ExternalSource } from "@/lib/fm-types"; export function FmExternalSources({ sources }: { sources?: ExternalSource[] }) { if (!sources || sources.length === 0) return null; return ( ); }