mfg-ui-components
Version:
React UI library with reusable components
14 lines (13 loc) • 471 B
TypeScript
import React from "react";
import "./Loader.scss";
export type Overlay = "lightOverlay" | "darkOverlay" | "darkerOverlay";
export interface Props {
loaderClass?: string;
loaderId?: any;
ariaLabel?: any;
loaderBackground?: Overlay;
children: any;
style?: React.CSSProperties;
}
declare const Loader: ({ loaderClass, loaderId, children, ariaLabel, loaderBackground, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Loader;