@material/web
Version:
Material web components
19 lines (18 loc) • 421 B
TypeScript
/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { PrimaryTab } from './internal/primary-tab.js';
declare global {
interface HTMLElementTagNameMap {
'md-primary-tab': MdPrimaryTab;
}
}
/**
* @summary Tab allow users to display a tab within a Tabs.
*
*/
export declare class MdPrimaryTab extends PrimaryTab {
static styles: import("lit").CSSResult[];
}