Liz Mitchell ae2c1a4531 chore: clean up TS imports and element definitions
PiperOrigin-RevId: 402875049
2021-10-13 11:05:25 -07:00

21 lines
407 B
TypeScript

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