import type Link from "./Link.js"; import Icon from "./Icon.js"; export default function LinkTemplate(this: Link) { return ( {this.icon && } { this.hasLinkType && {this.linkTypeText} } {this.endIcon && } ); }