interface IProps { title?: string; description?: string; } const LoadingView = ({ title, description }: IProps) => { return (
{/* Animated Custom Loader */}
{/* Outer Pulsing Ring */}
{/* Inner Spinning Ring */}
{/* Loading Content */}

{title || "Loading Data"}

{description || "Please wait a moment while we load the data."}

{/* Decorative background glow matching your layout */}
); }; export default LoadingView;