Andrew Jakubowicz a22dd4908c I ran codemod, then addressed TypeScript errors in the most naive way.
Moving decorators from getters -> setters.
Wrapping inherited properties with the same decorators as base class.
2023-09-06 10:25:56 -07:00

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;
}