carbon-components-svelte/src/UIShell/SkipToContent.svelte
2024-11-11 21:35:48 -08:00

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>