Elizabeth Mitchell db8ee4d1df chore: use private instead of protected
PiperOrigin-RevId: 527010546
2023-04-25 10:40:48 -07:00

20 lines
338 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {Button} from './button.js';
/**
* A text button component.
*/
export class TextButton extends Button {
protected override getRenderClasses() {
return {
...super.getRenderClasses(),
'md3-button--text': true,
};
}
}