mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
17 lines
308 B
Svelte
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>
|