Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/public/@shoelace-style/shoelace/cdn/components/spinner/spinner.component.d.ts
2024-01-30 10:59:28 -05:00

20 lines
802 B
TypeScript

import ShoelaceElement from '../../internal/shoelace-element.js';
import type { CSSResultGroup } from 'lit';
/**
* @summary Spinners are used to show the progress of an indeterminate operation.
* @documentation https://shoelace.style/components/spinner
* @status stable
* @since 2.0
*
* @csspart base - The component's base wrapper.
*
* @cssproperty --track-width - The width of the track.
* @cssproperty --track-color - The color of the track.
* @cssproperty --indicator-color - The color of the spinner's indicator.
* @cssproperty --speed - The time it takes for the spinner to complete one animation cycle.
*/
export default class SlSpinner extends ShoelaceElement {
static styles: CSSResultGroup;
private readonly localize;
render(): import("lit-html").TemplateResult<1>;
}