import { type StatisticlLink } from "../types/statistic-link"; export const getLinkProps: ( link: StatisticlLink, ) => React.AnchorHTMLAttributes = (link) => link.openInNewTab ? { rel: "noreferrer", target: "_blank", } : {};