mirror of
https://github.com/material-components/material-web.git
synced 2024-11-09 16:19:39 +03:00
6368e011e8
PiperOrigin-RevId: 462461827
28 lines
642 B
TypeScript
28 lines
642 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2021 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {customElement} from 'lit/decorators';
|
|
|
|
import {OutlinedButton} from './lib/outlined-button';
|
|
import {styles as outlinedStyles} from './lib/outlined-styles.css';
|
|
import {styles as sharedStyles} from './lib/shared-styles.css';
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'md-outlined-button': MdOutlinedButton;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @soyCompatible
|
|
* @final
|
|
* @suppress {visibility}
|
|
*/
|
|
@customElement('md-outlined-button')
|
|
export class MdOutlinedButton extends OutlinedButton {
|
|
static override styles = [sharedStyles, outlinedStyles];
|
|
}
|