import { SvgDiagonalLineArrowUpperRight } from '@chainlink/blocks-icons' import { Typography } from '../../components/Typography' export type SourceLinkItem = { label: string href: string } export type SourceLinksProps = { links: SourceLinkItem[] } export const SourceLinks = ({ links }: SourceLinksProps) => { if (!links || links.length === 0) { return null } return (
{links.map((link) => ( {link.label} ))}
) }