Elizabeth Mitchell 96481566ae refactor(button): move background content outside of inner button
Part of a series of changes to support text wrapping and host aria for button.

PiperOrigin-RevId: 581319862
2023-11-10 11:29:54 -08:00

21 lines
378 B
TypeScript

/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import '../../elevation/elevation.js';
import {html} from 'lit';
import {Button} from './button.js';
/**
* A filled button component.
*/
export class FilledButton extends Button {
protected override renderElevationOrOutline() {
return html`<md-elevation></md-elevation>`;
}
}