mirror of
https://github.com/djkotowski/personal-website.git
synced 2026-06-20 21:12:48 -05:00
11 lines
345 B
Svelte
11 lines
345 B
Svelte
<script lang="ts">
|
|
import type { HTMLAnchorAttributes } from 'svelte/elements'
|
|
|
|
export let href: string
|
|
export let target: HTMLAnchorAttributes['target']
|
|
export let title: HTMLAnchorAttributes['title'] = undefined
|
|
</script>
|
|
|
|
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title}><slot /></a>
|
|
|