@synergy-design-system/components
Version:
20 lines (19 loc) • 781 B
TypeScript
import SynergyElement from '../../internal/synergy-element.js';
import type { CSSResultGroup } from 'lit';
/**
* @summary Spinners are used to show the progress of an indeterminate operation.
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-spinner--docs
* @status stable
* @since 1.22.0
*
* @csspart base - The component's base wrapper.
*
* @cssproperty --track-width - The width 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 SynSpinner extends SynergyElement {
static styles: CSSResultGroup;
private readonly localize;
render(): import("lit").TemplateResult<1>;
}