mirror of
https://github.com/material-components/material-web.git
synced 2026-01-09 07:21:09 +08:00
Moving decorators from getters -> setters. Wrapping inherited properties with the same decorators as base class.
15 lines
257 B
TypeScript
15 lines
257 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {Tab} from './tab.js';
|
|
|
|
/**
|
|
* A secondary tab component.
|
|
*/
|
|
export class SecondaryTab extends Tab {
|
|
protected override accessor fullWidthIndicator = true;
|
|
}
|