sudovanilla-website/public/@shoelace-style/shoelace/cdn/react/spinner/index.d.ts
2024-05-13 23:34:06 -04:00

16 lines
699 B
TypeScript

import Component from '../../components/spinner/spinner.component.js';
/**
* @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.
*/
declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
export default reactWrapper;