import React from 'react' import { SourceAttribution } from '@/lib/bots/bing/types' export interface LearnMoreProps { sourceAttributions?: SourceAttribution[] } export function LearnMore({ sourceAttributions }: LearnMoreProps) { if (!sourceAttributions?.length) { return null } return (