eventx-design-system
Version:
Design System do EventX
11 lines • 350 B
TypeScript
import React from 'react';
export interface LoadingProps {
size?: 'sm' | 'md' | 'lg' | 'xl';
variant?: 'spinner' | 'dots' | 'pulse';
color?: 'primary' | 'secondary' | 'white';
text?: string;
fullScreen?: boolean;
className?: string;
}
export declare const Loading: React.FC<LoadingProps>;
//# sourceMappingURL=Loading.d.ts.map