// Source badge interface SourceBadgeProps { icon: React.ComponentType<{ size?: number; style?: React.CSSProperties }> label: string } export function SourceBadge({ icon: Icon, label }: SourceBadgeProps) { return ( {label} ) }