13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import type { FunctionalComponent } from 'vue';
|
|
/**
|
|
* Loading icon
|
|
*
|
|
* 加载图标
|
|
*/
|
|
export declare const LoadingIcon: FunctionalComponent<{
|
|
size?: number;
|
|
stroke?: number;
|
|
wrapper?: boolean;
|
|
height?: number | string;
|
|
}>;
|