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