sterling-svelte  2.0.3
A modern, accessible, lightweight UI component library for Svelte.

Tab

An item in a tab list that, when selected, typically shows associated content.

Code
<script lang="ts">
  import { Tab } from '@geoffcox/sterling-svelte';
</script>

<Tab text="sterling-svelte" value="tab" />

Members

Property NameTypeDefaultComment
disabledboolean | null | undefinedfalseWhen true, the tab is disabled.
selectedboolean | null | undefinedfalseWhen true, the tab is selected.
valuestringThe value uniquely identifying this tab within the tab list.

Considerations

  • Includes HTMLButtonElement props, events, and methods.

Anatomy

<button class="sterling-tab">
  <div class="content">
    {@render children()}
  </div>
  <div class="indicator"></div>
</button>