UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

20 lines 538 B
/** * @license * Copyright 2026 Kai-Orion & Sandlada * SPDX-License-Identifier: MIT */ import type { LitElement } from 'lit'; export type TabVariant = 'primary' | 'secondary' | 'floating'; export declare const TabVariant: { readonly Primary: 'primary'; readonly Secondary: 'secondary'; readonly Floating: 'floating'; }; export interface ITab extends LitElement { active: boolean; selected: boolean; variant: TabVariant; hasIcon: boolean; iconOnly: boolean; } //# sourceMappingURL=tab.interface.d.ts.map