geist-ui-svelte
Version:
<img src="./src/lib/assets/demo-page.png">
24 lines (23 loc) • 756 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
class?: string;
size?: "xs" | "sm" | "md" | "lg" | "xl";
type?: "success" | "secondary" | "warning" | "error";
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type LoadingProps = typeof __propDef.props;
export type LoadingEvents = typeof __propDef.events;
export type LoadingSlots = typeof __propDef.slots;
/**
* A component to indicate a loading state.
*
* [See Docs](https://geist-ui-svelte.dev/components/loading) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
*/
export default class Loading extends SvelteComponent<LoadingProps, LoadingEvents, LoadingSlots> {
}
export {};