@react-to-styled/loader
Version:
17 lines (16 loc) • 384 B
TypeScript
import { FunctionComponent } from 'react';
/**
* Loader props.
*/
interface LoaderProps {
/**
* This can set minHeight of the wrapper and loader will be in the center.
*/
wrapperHeight?: number | string;
/**
* Sets the loader radius.
*/
loaderSize?: number;
}
declare const Loader: FunctionComponent<LoaderProps>;
export { LoaderProps, Loader };