material-web/packages/circular-progress/mwc-circular-progress.ts
Peter Burns 6278ee5df9 chore: just import 'lit', it's cleaner
Fixes #2742

PiperOrigin-RevId: 399238961
2021-09-27 11:28:08 -07:00

26 lines
626 B
TypeScript

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
// Style preference for leading underscores.
// tslint:disable:strip-private-property-underscore
import {customElement} from 'lit/decorators.js';
import {CircularProgressBase} from './mwc-circular-progress-base';
import {styles} from './mwc-circular-progress.css';
declare global {
interface HTMLElementTagNameMap {
'mwc-circular-progress': CircularProgress;
}
}
/** @soyCompatible */
@customElement('mwc-circular-progress')
export class CircularProgress extends CircularProgressBase {
static override styles = [styles];
}