Elizabeth Mitchell acfdbb4f92 fix(button)!: merge standard and link buttons
PiperOrigin-RevId: 520365410
2023-03-29 09:57:53 -07:00

22 lines
405 B
TypeScript

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