Material Web Team 6368e011e8 chore: move button into the new directory
PiperOrigin-RevId: 462461827
2022-07-21 13:47:51 -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];
}