import './image-anchor.scss';
import { html } from '../../../types/html';
import { url } from '../../../types/url';
export const generate = ({
href,
svg,
title,
shouldDownload,
}: {
href: url;
svg: url;
title: string;
shouldDownload: boolean;
}): html => `
${svg}
${title}
`;