1
Fork 0
href-plus/source/ts/components/external-anchor.ts

23 lines
401 B
TypeScript

import {html, Component} from 'htm/preact';
type Props = {
class?: string;
text: string;
url: string;
};
export default class ExternalAnchor extends Component<Props> {
render() {
return html`
<a
class="${this.props.class}"
href="${this.props.url}"
rel="noopener noreferrer"
target="_blank"
>
${this.props.text}
</a>
`;
}
}