mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 02:41:05 +00:00
11 lines
277 B
Svelte
11 lines
277 B
Svelte
<script>
|
|
/** Specify the `href` attribute */
|
|
export let href = "#main-content";
|
|
|
|
/** Specify the tabindex */
|
|
export let tabindex = "0";
|
|
</script>
|
|
|
|
<a {href} {tabindex} class:bx--skip-to-content={true} {...$$restProps} on:click>
|
|
<slot>Skip to main content</slot>
|
|
</a>
|