fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
11 lines (10 loc) • 608 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../Element/constants';
export interface SpinnerCustomProps {
size?: "tiny" | "small" | "medium" | "large" | "huge";
loadingText?: string;
}
export type SpinnerElementType = HTMLDivElement;
export type SpinnerProps = Omit<CommonAndHTMLProps<SpinnerElementType>, keyof SpinnerCustomProps> & SpinnerCustomProps;
export declare const Spinner: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLDivElement>, keyof SpinnerCustomProps> & SpinnerCustomProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Spinner.d.ts.map