UNPKG

quarkd

Version:

Mobile UI Components built on Web Components.

21 lines (20 loc) 519 B
import { QuarkElement } from "quarkc"; export interface Props { type?: "circular" | "spinner"; color?: string; size?: string | number; vertical?: boolean; } declare class QuarkLoading extends QuarkElement { type: "spinner" | "circular" | "pullrefresh"; vertical: boolean; color?: string; size: string; rotate: number; getFontSize(): string; iconRotate(): void; renderLoadingSvg: () => any; componentDidMount(): void; render(): any; } export default QuarkLoading;