@smitch/fluid
Version:
A Next/React ui-component libray.
12 lines (11 loc) • 446 B
TypeScript
/// <reference types="react" />
export interface LoadingProps {
className?: string;
caption?: string;
spinner?: string;
customSpinner?: React.ReactNode;
customAnimate?: 'spin' | 'pulse' | 'bounce' | 'ping';
size?: 'sm' | 'md' | 'lg' | 'xl';
layout?: 'col' | 'col_reverse' | 'row' | 'row_reverse';
loadingColor?: 'dark' | 'light' | 'info' | 'success' | 'warning' | 'danger' | 'primary' | 'secondary' | 'current';
}