Spaces:
Sleeping
Sleeping
File size: 262 Bytes
b8dc493 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <script>
export let href = "";
export let title = "";
export let text = "";
</script>
<a target="_blank" rel="noreferrer" {href} {title}>{text}</a>
<style>
a {
color: #007bff;
text-decoration: none;
}
</style>
|