1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-19 12:32:47 -05:00

Make Link 'title' prop optional

This commit is contained in:
2024-07-01 15:49:36 -05:00
parent 5162b4637c
commit dddfb15329
+1 -1
View File
@@ -3,7 +3,7 @@
export let href: string export let href: string
export let target: HTMLAnchorAttributes['target'] export let target: HTMLAnchorAttributes['target']
export let title: HTMLAnchorAttributes['title'] export let title: HTMLAnchorAttributes['title'] = undefined
</script> </script>
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title}><slot /></a> <a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target} {title}><slot /></a>