@finastra/tab-bar
Version:
TabBar Web Component
18 lines (17 loc) • 527 B
TypeScript
import { TabBarBase } from '@material/mwc-tab-bar/mwc-tab-bar-base';
/**
* @attr [activeIndex=0] - Index of tab that is active.
* @attr [label=''] - Text label to display in tab.
* @attr [icon=''] - Material design icon name to display.
* @attr [seperator='false']- Add dividers between tabs
*/
export declare class TabBar extends TabBarBase {
static styles: import("lit").CSSResult;
seperator: boolean;
constructor();
}
declare global {
interface HTMLElementTagNameMap {
'fds-tab-bar': TabBar;
}
}