import {html} from 'htm/preact'; import {Queue} from '../../types.d'; type LinkProps = { class: string; text: string; url: string; }; /** * Creates a new element with target="_blank" and rel="noopener". * @param props The Link properties. */ export function Link(props: LinkProps): Queue.Component { return html` ${props.text} `; }