Files
housesof/src/atoms/LinkTranslate.svelte
Félix Péault 6fe4df4189
All checks were successful
continuous-integration/drone/push Build is passing
Add Newsletter Component and Page
- Newsletter form on Subscribe page and at the end of the photos
2020-04-29 12:04:37 +02:00

15 lines
391 B
Svelte

<script>
export let href = '/'
export let text = ''
export let target = null
export let rel = null
export let active = false
export let noScroll = undefined
</script>
<a {href} {target} {rel} class="link-translate" class:is-active={!!active} sapper-noscroll={noScroll}>
<slot />
<div class="text" data-text={text}>
<span>{text}</span>
</div>
</a>