import React from 'react'; import './LoadingOverlay.css'; export default function LoadingOverlay({ visible = false, text = '', inline = false, dark = false }) { if (!visible) return null; return (
{text ?
{text}
: null}
); }