Make Link 'title' prop optional
This commit is contained in:
parent
5162b4637c
commit
dddfb15329
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
export let href: string
|
||||
export let target: HTMLAnchorAttributes['target']
|
||||
export let title: HTMLAnchorAttributes['title']
|
||||
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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue