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

28 lines
602 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators';
import {styles as sharedStyles} from './lib/shared-styles.css';
import {TextButton} from './lib/text-button';
import {styles as textStyles} from './lib/text-styles.css';
declare global {
interface HTMLElementTagNameMap {
'md-text-button': MdTextButton;
}
}
/**
* @soyCompatible
* @final
* @suppress {visibility}
*/
@customElement('md-text-button')
export class MdTextButton extends TextButton {
static override styles = [sharedStyles, textStyles];
}