material-web/tabs/internal/secondary-tab.ts
Elizabeth Mitchell 0467c4845d fix(tabs): incorrect layout and primary indicator width
PiperOrigin-RevId: 561091366
2023-08-29 11:33:46 -07:00

15 lines
248 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 fullWidthIndicator = true;
}