carbon-components-svelte/src/UIShell/SkipToContent.svelte
2020-11-04 06:04:25 -08:00

17 lines
308 B
Svelte

<script>
/** Specify the `href` attribute */
export let href = "#main-content";
/** Specify the tabindex */
export let tabindex = "0";
</script>
<a
href="{href}"
tabindex="{tabindex}"
class:bx--skip-to-content="{true}"
{...$$restProps}
on:click
>
<slot>Skip to main content</slot>
</a>