Andrew Jakubowicz 0432e6d9ce fix(elevation)!: rename "lib" directory to "internal"
BREAKING CHANGE: Rename `@material/web/elevation/lib` to `@material/web/elevation/internal`. Prefer not using internal files.

PiperOrigin-RevId: 550038448
2023-07-21 13:42:40 -07:00

27 lines
606 B
TypeScript

/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {customElement} from 'lit/decorators.js';
import {Elevation} from './internal/elevation.js';
import {styles} from './internal/elevation-styles.css.js';
declare global {
interface HTMLElementTagNameMap {
'md-elevation': MdElevation;
}
}
/**
* The `<md-elevation>` custom element with default styles.
*
* Elevation is the relative distance between two surfaces along the z-axis.
*/
@customElement('md-elevation')
export class MdElevation extends Elevation {
static override styles = [styles];
}