@furystack/shades-common-components
Version:
Common UI components for FuryStack Shades
25 lines • 673 B
TypeScript
interface LoaderProps {
/**
* Style declaration for the loader
*/
style?: Partial<CSSStyleDeclaration>;
/**
* The time to wait before the loader shows up
*/
delay?: number;
/**
* The color of the loader
*/
borderColor?: string;
/**
* The width of the border
*/
borderWidth?: number;
}
export declare const Loader: (props: LoaderProps & Omit<Partial<HTMLElement>, "style"> & {
style?: Partial<CSSStyleDeclaration>;
} & {
ref?: import("@furystack/shades").RefObject<Element>;
}, children?: import("@furystack/shades").ChildrenList) => JSX.Element;
export {};
//# sourceMappingURL=loader.d.ts.map