@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
23 lines • 610 B
TypeScript
import { BaseTab } from './internal/base-tab';
declare global {
interface HTMLElementTagNameMap {
'mdc-tab': Tab;
}
}
/**
* @element mdc-tab
*
* A tab cell. Selection state is owned by the parent `mdc-tabs` bar; render a
* tab on its own only for standalone / demo purposes.
*
* @slot icon — Optional leading icon.
* @slot — The tab label text.
*
* @cssproperty --mdc-tab-container-height
* @cssproperty --mdc-tab-enabled-active-indicator-color
* ...
*/
export declare class Tab extends BaseTab {
static styles: import("lit").CSSResult[];
}
//# sourceMappingURL=tab.d.ts.map